@font-face {
  font-family: 'Urbanist';
  src: url('../fonts/Urbanist/Urbanist/static/Urbanist-Regular.ttf'),
}

@font-face {
  font-family: 'UrbanistBold';
  src: url('../fonts/Urbanist/Urbanist/static/Urbanist-SemiBold.ttf'),
}

@font-face {
  font-family: 'ExtraUrbanistBold';
  src: url('../fonts/Urbanist/Urbanist/static/Urbanist-Bold.ttf'),
}

@font-face {
  font-family: 'UrbanistItalic';
  src: url('../fonts/Urbanist/Urbanist/static/Urbanist-BlackItalic.ttf'),
}

@font-face {
  font-family: 'UrbanistRegItalic';
  src: url('../fonts/Urbanist/Urbanist/static/Urbanist-LightItalic.ttf'),
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sparkle {

  0%,
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }

  50% {
    opacity: 0.7;
    transform: scale(1.2) rotate(180deg);
  }
}

@keyframes cloudFloat {

  0%,
  100% {
    transform: translateX(0px) translateY(0px);
  }

  33% {
    transform: translateX(10px) translateY(-5px);
  }

  66% {
    transform: translateX(-5px) translateY(5px);
  }
}





body {
  font-family: 'Urbanist', Arial, sans-serif;
  background: #FFFFEE;
}

.float-animation {
  animation: float 3s ease-in-out infinite;
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

.nav-underline {
  position: relative;
}

.nav-underline::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #374151;
}

.nav-underline:hover::after {
  background-color: #f97316;
  transition: background-color 0.3s ease;
}

/* Custom responsive font sizes */
.hero-text-offline {
  text-align: center;
  font-family: 'UrbanistBold';
  font-size: clamp(27rem, 34vw, 34rem);
  line-height: 0.9;
}

.theBigO {
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
}

.theBigO::after {
  content: '';
  position: absolute;
  left: 40px;
  bottom: 25%;
  width: clamp(80px, 18vw, 180px);
  height: clamp(80px, 18vw, 180px);
  /* Optional: control both width and height */
  background-image: url('../img/O-property.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease;
  z-index: -1;
}


.theBigO:hover::after {
  bottom: 30%;
}

@media(min-width: 1480px) {
  .theBigO::after {
    left: 50px;
    bottom: 25%;
  }
}

@media(min-width: 1550px) {
  .theBigO::after {
    left: 60px;
    bottom: 27%;
  }
}

@media(max-width: 1040px) {
  .hero-text-offline {
    font-size: clamp(17rem, 24vw, 24rem);
  }

  .theBigO::after {
    width: clamp(100px, 18vw, 100px);
    height: clamp(100px, 18vw, 100px);
    left: 28px;
    bottom: 24%;
  }
}

@media(max-width: 663px) {
  .hero-text-offline {
    font-size: clamp(9rem, 17vw, 17rem);
  }

  .theBigO::after {
    width: clamp(50px, 18vw, 50px);
    height: clamp(50px, 18vw, 50px);
    left: 16px;
    bottom: 26%;
  }
}

.numberssss {
  color: white;
  font-size: clamp(6rem, 10vw, 10rem);
  font-family: 'UrbanistBold'
}

.fontBold {
  font-family: 'ExtraUrbanistBold';
}

.the0 {
  font-family: 'UrbanistBold';
}

.hero-text-by-nature {
  font-family: 'UrbanistBold';
  font-size: clamp(7rem, 13vw, 13rem);
  line-height: 0.9;
}

.raccoon-on-o {
  position: absolute;
  top: -30px;
  left: 20%;
  transform: translateX(-50%);
  font-size: clamp(2rem, 4vw, 4rem);
}

.raccoon-on-o img {
  max-width: clamp(80px, 18vw, 180px);

}

.raccoon-in-nature {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(3rem, 6vw, 6rem);
  height: clamp(3rem, 6vw, 6rem);
  background-color: #f97316;
  border-radius: 50%;
  font-size: clamp(1.5rem, 3vw, 3rem);
  margin: 0 0.2em;
}

/* Mobile menu styles */
.mobile-menu {
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
}

.mobile-menu.open {
  transform: translateY(0);
}

.float-animation {
  animation: float 3s ease-in-out infinite;
}

.sparkle-animation {
  animation: sparkle 2s ease-in-out infinite;
}

.cloud-float {
  animation: cloudFloat 8s ease-in-out infinite;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Custom cloud shapes */
.cloud {
  background: white;
  border-radius: 50px;
  position: relative;
}

.cloud:before,
.cloud:after {
  content: '';
  position: absolute;
  background: white;
  border-radius: 50px;
}

.cloud-1:before {
  width: 50px;
  height: 50px;
  top: -25px;
  left: 10px;
}

.cloud-1:after {
  width: 60px;
  height: 60px;
  top: -35px;
  right: 15px;
}

/* Gradient backgrounds */
.purple-gradient {
  /* background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%); */
}

.purple-starry {
  /* background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%); */
}

/* Responsive text sizing */
.section-title {
  font-size: clamp(1.5rem, 4vw, 3rem);
}

.large-title {
  font-size: clamp(1.8rem, 6vw, 2.6rem);
  font-family: 'UrbanistBold';
}

.closeMom {
  font-family: 'UrbanistBold';
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}