body {
  font-family: 'Karla', sans-serif;
  background-image: url("../images/bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: linear-gradient(135deg, #f6e27a, #f2c94c, #c7961c, #b17c00);
  padding-bottom: 75px;
}

@media (min-width: 768px) {
  body {
    padding-bottom: 110px;
  }
}

.navbar-brand {
  margin-right: 0;
}

.navbar-brand img {
  height: 21px;
}

.navbar-dark {
  padding-top: 35px;
  padding-bottom: 35px;
}

.navbar-dark .navbar-text {
  color: #ffffff;
  opacity: 1;
  padding: 0 20px;
  border-right: 1px solid #dfa300;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

.navbar-dark .navbar-text:last-child {
  border-right: 0;
}

@media (max-width: 767px) {
  .navbar-dark {
    padding-bottom: 0;
  }
}

.page-title {
  font-size: 80px;
  font-weight: bold;
  margin-bottom: 6px;
}

@media (max-width: 767px) {
  .page-title {
    font-size: 35px;
    margin-bottom: 14px;
  }
}

.page-description {
  max-width: 465px;
  font-size: 18px;
  margin-bottom: 59px;
}

@media (max-width: 767px) {
  .page-description {
    font-size: 14px;
  }
}

p {
  font-size: 14px;
  margin-bottom: 21px;
}

.footer-social-links .social-link {
  display: inline-block;
  text-align: center;
  line-height: 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f6e27a, #f2c94c, #c7961c, #b17c00);
  color: #000000;
  margin-right: 16px;
  transition: all 0.3s ease-in-out;
}

.footer-social-links .social-link:last-child {
  margin-right: 0;
}

.footer-social-links .social-link:hover {
  text-decoration: none;
  background: #000000;
  color: #ffffff;
}

.logo-img {
  height: 50px;
  width: auto;
  /* maintains aspect ratio */
  max-width: 150px;
}


/*# sourceMappingURL=bd-coming-soon.css.map */

.gold-text {
  background: linear-gradient(90deg, #c9960d, #f2d16b, #dfa300, #f9d423);
  background-size: 200% auto;
  font-weight: bold;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.perfume-display {
  display: none;
}

@media (max-width: 767px) {
  nav.navbar {
    justify-content: center;
  }
  
  .perfume-display {
    display: flex;
  }

  main.my-auto {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
    text-align: center;
  }

}

/* Perfume container remains unchanged */
.perfume-display {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  justify-content: center;
  align-items: flex-end;
  z-index: 1000;
  pointer-events: none;
}

/* Larger, tighter spotlight under fixed-size bottle */
.bottle-overlay {
  position: absolute;
  bottom: 0;
  width: 220px;
  height: 100px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.7) 35%, transparent 80%);
  border-radius: 50%;
  z-index: -1;
  filter: blur(6px);
}

/* Fixed-size bottle with stronger shadow */
.perfume-bottle {
  height: 250px;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 45px rgba(0, 0, 0, 0.75));
}

/* Float animation */
@keyframes float {

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

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