/* ===========================
   HONEY & LIME STYLE SHEET
   =========================== */
 

:root {
  --bg-color: #1b1b1b;
  --text-color: #f2efe6;
  --accent-gold: #d4a253;
  --accent-green: #6fa16f;
  --font-heading: 'DM Serif Display', serif;
  --font-body: 'Quicksand', sans-serif;
}

body {
  margin: 0;
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-body);
  overflow-x: hidden;
}

/* ---------- HERO SECTION ---------- */
 .hero {
  height: 100vh;
  background: radial-gradient(circle at top left, #1f1a14, #0e0f0e 70%);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 8%;
  color: #f1efe6;
}

.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.2rem;
  margin-left: 5rem;
}

.hero-content {
  display: flex;
  align-items: center; /* aligns both sides vertically */
  justify-content: flex-start;
}


.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.main-logo {
  width: 340px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 12px rgba(212, 162, 83, 0.35)); /* soft golden glow */
  transition: filter 1s ease-in-out;
}

.main-logo:hover {
  filter: drop-shadow(0 0 22px rgba(212, 162, 83, 0.6)); /* glow intensifies slightly on hover */
}



.hero-left h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 3.5rem;
  margin: 0;
  color: #fff;
}

.hero-services {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.hero-services li {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.4rem;
}

.hero-services li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #d9b45a;
  font-size: 2rem;
  line-height: 1;
}


/* Animated golden glow ring around logo */
 /* Animated golden glow ring around logo */
.logo-wrapper {
  position: relative;
  display: inline-block;
  overflow: visible;
  z-index: 3; /* ensures logo + glow sit above other layers */
}


.logo-wrapper::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    rgba(212,162,83,0.45),
    rgba(212,162,83,0.1),
    rgba(212,162,83,0.45)
  );
  filter: blur(12px);
  animation: spinGlow 4s linear infinite;
  pointer-events: none;
  z-index: 2; /* changed from -1 to 2 so it's above hero background */
  opacity: 0.8; /* optional softening */
}


.logo-wrapper img {
  position: relative;
  z-index: 1;
}

@keyframes spinGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Responsive adjustment */
 


/* BUTTON */
.btn-primary {
  background: #d9b45a;
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 40px;
  padding: 0.8rem 2rem;
  font-size: 1.2rem;
  margin-top: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-primary:hover {
  background: #c5a04f;
}

 

/* ---------- SERVICES ---------- */
.services {
  text-align: center;
  padding: 80px 10%;
}

.services h2 {
  color: var(--accent-gold);
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 40px;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.service {
  background: #222;
  border-radius: 16px;
  padding: 30px;
  width: 280px;
  box-shadow: 0 0 20px rgba(212,162,83,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(212,162,83,0.25);
}

.service h3 {
  color: var(--accent-gold);
  font-family: var(--font-heading);
  margin-top: 15px;
}

.icon {
  width: 60px;
  height: 60px;
}

/* Animations */
.bee {
  animation: floatBee 4s ease-in-out infinite;
}

@keyframes floatBee {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.martini {
  animation: shimmerMartini 6s ease-in-out infinite;
}

@keyframes shimmerMartini  {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-5px) rotate(-2deg);
  }
  50% {
    transform: translateY(3px) rotate(1deg);
  }
  75% {
    transform: translateY(-4px) rotate(0deg);
  }
}


.lime {
  animation: rotateLime 12s linear infinite;
}

@keyframes rotateLime {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ---------- BOOKING FORM ---------- */
.booking {
  padding: 80px 10%;
  background: #111;
  text-align: center;
}

.booking h2 {
  color: var(--accent-gold);
  font-family: var(--font-heading);
  margin-bottom: 30px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 400px;
  margin: 0 auto;
}

input, select, textarea {
  background: #1f1f1f;
  border: 1px solid #444;
  color: var(--text-color);
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 1rem;
  font-family: var(--font-body);
}

/* ---------- BASE PRIMARY BUTTON ---------- */
.btn-primary {
  background: #d9b45a;
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 40px;
  padding: 0.8rem 2rem;
  font-size: 1.2rem;
  margin-top: 1rem;
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.4s ease, transform 0.3s ease;
}

/* ---------- GLOW ENHANCEMENT ---------- */
.btn-primary.glow {
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 16px 4px rgba(212,162,83,0.35);
  animation: honeyPulse 3s ease-in-out infinite;
}

.btn-primary.glow:hover {
  transform: translateY(-2px);
  background: #c5a04f;
  box-shadow: 0 0 26px 8px rgba(212,162,83,0.55);
}

/* Soft golden pulse animation */
@keyframes honeyPulse {
  0%, 100% { box-shadow: 0 0 14px 4px rgba(212,162,83,0.35); }
  50%      { box-shadow: 0 0 22px 6px rgba(242,207,128,0.6); }
}


#form-status {
  margin-top: 15px;
  font-size: 0.9rem;
  color: var(--accent-green);
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  padding: 80px 10%;
  text-align: center;
  background: radial-gradient(circle at top, rgba(212,162,83,0.15), transparent 70%);
}

.testimonials h2 {
  color: var(--accent-gold);
  font-family: var(--font-heading);
  margin-bottom: 30px;
}

.testimonial {
  background: #222;
  padding: 25px;
  border-radius: 12px;
  margin: 20px auto;
  max-width: 500px;
  box-shadow: 0 0 25px rgba(212,162,83,0.1);
}

.testimonial span {
  color: var(--accent-green);
  font-weight: 500;
}

/* ---------- FOOTER ---------- */
.footer {
  background: #0f0f0f;
  text-align: center;
  padding: 40px 10%;
  border-top: 1px solid #333;
}

.footer-logo {
  width: 80px;
  margin-bottom: 15px;
}

.footer a {
  color: var(--accent-gold);
  margin: 0 10px;
  text-decoration: none;
  font-weight: 500;
}

.footer a:hover {
  color: var(--accent-green);
}

.footer p {
  color: #888;
  margin-top: 15px;
  font-size: 0.9rem;
}

.social-icon svg {
  transition: transform 0.3s ease, fill 0.3s ease;
}

.social-icon:hover svg {
  transform: scale(1.1);
  fill: var(--accent-green);
}


/* ---------- FAQ SECTION ---------- */
.faq {
  padding: 80px 10%;
  background: #111;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.faq::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212,162,83,0.25), transparent 70%);
  filter: blur(90px);
  z-index: 0;
}

.faq h2 {
  color: var(--accent-gold);
  font-family: var(--font-heading);
  font-size: 2rem;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

/* Each Q&A block */
.faq-item {
  margin-bottom: 22px;
  border-radius: 8px;
  background: #1b1b1b;
  box-shadow: 0 0 20px rgba(212,162,83,0.12);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  color: var(--accent-gold);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  padding: 18px 20px 18px 60px;
  border: none;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}

.faq-question::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%) skewX(-25deg);
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, #d4a253, #f2cf80);
  box-shadow: 0 0 10px rgba(212,162,83,0.6);
  border-radius: 2px;
}

.faq-question:hover {
  color: #f2cf80;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #141414;
  color: #ddd;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  padding: 0 20px;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 20px;
}

.faq-item.active .faq-question {
  color: #f2cf80;
}

.faq-item.active .faq-question::before {
  transform: translateY(-50%) rotate(90deg) skewX(-25deg);
  box-shadow: 0 0 15px rgba(212,162,83,0.9);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .faq {
    padding: 60px 6%;
  }
  .faq-question {
    font-size: 1.1rem;
    padding-left: 55px;
  }
}


/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .hero-left, .hero-right {
    align-items: center;
  }

  .main-logo {
    width: 220px;
  }
    /* Mobile glow enhancement */
  .service, 
  .testimonial {
    box-shadow: 0 0 28px 6px rgba(212,162,83,0.35); /* stronger yellow glow */
  }

  .main-logo {
    filter: drop-shadow(0 0 22px rgba(212,162,83,0.6)); /* brighter always-on glow */
  }}

 