/* ===============================
   THENI LANDING PAGE STYLES
================================ */

/* HERO */
.inner-hero.theni-hero {
  background: linear-gradient(
      rgba(0,0,0,0.55),
      rgba(0,0,0,0.55)
    ),
    url("/images/theni-spa-bg1.webp") center/cover no-repeat;
  padding: 140px 20px 100px;
  text-align: center;
}

.inner-hero h1 {
  color: #e6b86a;
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.inner-hero p {
  max-width: 720px;
  margin: 0 auto 25px;
  color: #f5f5f5;
  font-size: 1.05rem;
}

.inner-hero .hero-btn {
  background: linear-gradient(135deg,#e6b86a,#cfa14a);
  color: #2b1a14;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  display: inline-block;
}



/* =====================================
   NEW PREMIUM CONTENT SECTION (CSS ONLY)
===================================== */

.content-section {
  position: relative;
  background: radial-gradient(
    circle at top,
    #1a1a1a,
    #0d0d0d 70%
  );
  padding: 110px 20px;
  overflow: hidden;
}

/* CENTER CONTENT */
.content-section > * {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* HEADINGS */
.content-section h2 {
  font-size: 2.6rem;
  color: #e6b86a;
  margin-bottom: 30px;
  letter-spacing: .5px;
}

.content-section h3 {
  font-size: 1.6rem;
  color: #f0c77a;
  margin-top: 40px;
  margin-bottom: 14px;
}

/* PARAGRAPH */
.content-section p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #d9d9d9;
  max-width: 720px;
}

/* IMAGE – CONTROLLED SIZE */
.content-section img {
  display: block;
  width: 100%;
  max-width: 780px;
  margin: 60px auto;
  border-radius: 20px;
  object-fit: cover;
  box-shadow:
    0 40px 80px rgba(0,0,0,.6),
    inset 0 0 0 1px rgba(255,255,255,.05);
}

/* SUBTLE SEPARATOR LINE */
.content-section::after {
  content: "";
  display: block;
  width: 120px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #e6b86a,
    transparent
  );
  margin: 90px auto 0;
}

/* REMOVE LAST LINE */
.content-section:last-of-type::after {
  display: none;
}

/* =====================================
   DESKTOP REFINEMENT
===================================== */
@media (min-width: 1024px) {

  .content-section {
    padding: 140px 20px;
  }

  .content-section h2 {
    font-size: 3rem;
  }

  .content-section p {
    font-size: 1.08rem;
  }
}

/* =====================================
   MOBILE VIEW – CLEAN & RESPONSIVE
===================================== */
@media (max-width: 768px) {

  .content-section {
    padding: 20px 18px;
  }

  .content-section h2 {
    font-size: 1.7rem;
  }

  .content-section h3 {
    font-size: 1.25rem;
  }

  .content-section p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .content-section img {
    margin: 35px auto;
    max-width: 100%;
    border-radius: 14px;
  }

  .content-section::after {
    margin-top: 50px;
  }
}

/* MOBILE IMAGE HEIGHT FIX */
@media (max-width: 768px) {
  .content-section img {
    max-height: 260px;      /* adjust pannalaam */
    object-fit: cover;     /* image distort aagathu */
  }
}




/* SERVICES */
.services-section {
  background: #1c1b1a;
  padding: 10px 20px;
  text-align: center;
}

.services-section h2 {
  color: #e6b86a;
  margin-bottom: 40px;
}

.service-block {
  max-width: 900px;
  margin: 0 auto 40px;
}

.service-block h3 {
  color: #f0c77a;
}

.service-block p {
  color: #e0e0e0;
}


/* MOBILE */
@media (max-width:768px) {
  .inner-hero h1 {
    font-size: 1.8rem;
  }
}

/* FIX lazy images visibility for Theni page */
.content-section img {
  opacity: 1 !important;
}

/* Desktop */
.theni-hero {
  background:
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
    url("/images/galleryimg1.webp") center/cover no-repeat;
  min-height: 90vh;
  position: relative;
}

/* Mobile image hidden on desktop */
.hero-img-mobile {
  display: none;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .theni-hero {
    background: #000; /* remove bg image */
    padding-top: 0;
  }

  .hero-img-mobile {
    display: block;
    width: 100%;
    height: auto;
  }

  .hero-content {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 20px;
  }
}

@media (max-width:768px) {
  .inner-hero::before {
    background: rgba(0,0,0,0.35);
  }
}
@media (max-width:768px) {
  .hero-content {
    justify-content: flex-start;
    padding-top: 22vh;
  }
}
@media (max-width:768px) {
  .hero-btn {
    padding: 16px 34px;
    font-size: 1rem;
  }
}


.theni-contact {
  background: radial-gradient(circle at top, #1a120d, #000);
  padding: 20px 20px;
  text-align: center;
}

.theni-contact .contact-title {
  color: #e6b86a;
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.theni-contact .contact-subtext {
  color: #d6d6d6;
  margin-bottom: 40px;
}

.single-branch {
  max-width: 850px;
  margin: 0 auto;
  background: rgba(255,255,255,0.05);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.single-branch h3 {
  color: #f0c77a;
  margin-bottom: 15px;
}

.single-branch p {
  color: #f1f1f1;
  margin: 10px 0;
}

.map-container {
  margin: 25px 0;
  border-radius: 15px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: 0;
}

@media (max-width:768px) {
  .single-branch {
    padding: 30px 20px;
  }

  .map-container iframe {
    height: 240px;
  }
}


/* ===============================
   LUXURY CTA – BRAND NEW DESIGN
================================ */

.lux-cta {
  position: relative;
  padding: 140px 20px;
  background:
    radial-gradient(circle at 30% 20%, rgba(230,184,106,0.18), transparent 45%),
    linear-gradient(180deg, #0b0a09, #000);
  overflow: hidden;
}

/* soft glow layer */
.lux-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 80%, rgba(230,184,106,0.12), transparent 50%);
  pointer-events: none;
}

.lux-cta-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* ===============================
   TEXT
================================ */

.lux-cta h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: #e6b86a;
  margin-bottom: 24px;
  line-height: 1.2;
  letter-spacing: 0.4px;
}

.lux-cta p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #e3e3e3;
  max-width: 720px;
  margin: 0 auto 50px;
}

/* ===============================
   BUTTON
================================ */

.lux-cta-btn {
  display: inline-block;
  padding: 18px 46px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  color: #2b1a14;
  background: linear-gradient(135deg, #e6b86a, #cfa14a);
  box-shadow:
    0 15px 40px rgba(230,184,106,0.35),
    inset 0 0 0 1px rgba(255,255,255,0.2);
  transition: all 0.35s ease;
}

.lux-cta-btn:hover {
  transform: translateY(-4px);
  box-shadow:
    0 25px 60px rgba(230,184,106,0.55);
}

/* ===============================
   MOBILE RESPONSIVE
================================ */

@media (max-width: 768px) {
  .lux-cta {
    padding: 90px 18px;
  }

  .lux-cta h2 {
    font-size: 1.7rem;
    margin-bottom: 18px;
  }

  .lux-cta p {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 36px;
  }

  .lux-cta-btn {
    padding: 15px 34px;
    font-size: 0.95rem;
  }
}


.hero-btn {
  position: relative;
  display: inline-block;
  padding: 14px 34px;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 40px;
  background: linear-gradient(135deg, #f4c86a, #a77d45);
  color: #59413d;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  animation: bounceBtn 1s infinite ease-in-out; /* ðŸ”¥ bounce added */
}

.hero-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg, 
    transparent, 
    rgba(255,255,255,0.7), 
    transparent
  );
  transform: skewX(-20deg);
  animation: shimmer 1.0s infinite;
}

/* shimmer line */
@keyframes shimmer {
  0% { left: -150%; }
  100% { left: 150%; }
}

/* bounce effect */
@keyframes bounceBtn {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}


/* HERO CTA */
.hero-btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 40px;
  background: linear-gradient(135deg, #f4c86a, #a77d45);
  color: #111;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(244, 200, 106, 0.4);
}

/* ===============================
   CTA LINK – PREMIUM INLINE DESIGN
================================ */

.cta-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-top: 18px;
  padding: 12px 26px;

  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3px;

  color: #e6b86a;
  text-decoration: none;

  border-radius: 30px;
  border: 1px solid rgba(230,184,106,0.45);

  background: linear-gradient(
    135deg,
    rgba(230,184,106,0.15),
    rgba(0,0,0,0)
  );

  transition: all 0.35s ease;
  overflow: hidden;
}

/* arrow icon (CSS only) */
.cta-link::after {
  content: "→";
  font-size: 1.1rem;
  transition: transform 0.35s ease;
}

/* hover animation */
.cta-link:hover {
  color: #2b1a14;
  background: linear-gradient(135deg, #e6b86a, #cfa14a);
  box-shadow: 0 10px 30px rgba(230,184,106,0.35);
  transform: translateY(-2px);
}

/* arrow slide */
.cta-link:hover::after {
  transform: translateX(6px);
}

/* ===============================
   MOBILE RESPONSIVE
================================ */

@media (max-width: 768px) {
  .cta-link {
    font-size: 0.9rem;
    padding: 11px 22px;
  }
}


.menu-book-btn {
  display: none; /* default hidden */
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(230,184,106,.6); }
  70% { box-shadow: 0 0 0 18px rgba(230,184,106,0); }
  100% { box-shadow: 0 0 0 0 rgba(230,184,106,0); }
}




/* ===============================
   DESKTOP – PREMIUM HEADER CALL CTA
================================ */

.header-call-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 10px 18px;
  border-radius: 999px;

  background: rgba(0,0,0,0.35); /* subtle dark glass */
  backdrop-filter: blur(6px);

  border: 1px solid rgba(230,184,106,0.55);

  color: #e6b86a;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-decoration: none;

  transition: all 0.35s ease;
}

.header-call-cta:hover {
  background: rgba(230,184,106,0.12);
  border-color: #e6b86a;
  transform: translateY(-2px);
}

/* icon */
.header-call-cta .call-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* text */
.header-call-cta .call-text {
  white-space: nowrap;
}

/* MOBILE – HIDE (menu CTA already exists) */
@media (max-width: 768px) {
  .header-call-cta {
    display: none !important;
  }
}



@media (max-width: 768px) {


  /* show ONLY when menu open */
  .navbar.active .menu-book-btn {
    display: inline-flex;

    margin-top: 28px;

    padding: 10px 18px;
    border-radius: 999px;

    background: rgba(0,0,0,0.35);
    border: 1px solid rgb(117 78 13);
    color: #825e20;

     font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-decoration: none;

    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    
     backdrop-filter: blur(6px);
    transition: all 0.35s ease;
    
  }
}
.menu-book-btn:hover {
  background: rgba(230,184,106,0.12);
  border-color: #825e20;
  transform: translateY(-2px);
}



/* ===============================
   PREMIUM FOOTER
================================ */

.premium-footer {
  background: linear-gradient(180deg, #120c0a, #1f1410);
  color: #f0eadc;
  padding-top: 70px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px 60px;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

/* BRAND */
.footer-logo {
  width: 70px;
  margin-bottom: 15px;
}

.footer-tagline {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e7d8b6;
}

/* TITLES */
.premium-footer h4 {
  color: #f4c86a;
  margin-bottom: 18px;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

/* NAV */
.footer-nav a {
  display: block;
  margin-bottom: 10px;
  color: #f0eadc;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-nav a:hover {
  color: #f4c86a;
  transform: translateX(4px);
}

/* LOCATION */
.footer-location p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* SOCIAL */
.social-icons {
  display: flex;
  gap: 16px;
}

.social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
}

.social-icons svg {
  width: 20px;
  fill: #f4c86a;
}

.social-icons a:hover {
  background: linear-gradient(135deg, #f4c86a, #a77d45);
  transform: translateY(-4px);
}

.social-icons a:hover svg {
  fill: #3a2a22;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(244,200,106,0.2);
  text-align: center;
  padding: 18px;
  font-size: 0.9rem;
  color: #d9cba5;
}

/* RESPONSIVE */
@media(max-width: 768px) {
  .footer-container {
    text-align: left;
  }

  .social-icons {
    justify-content: center;
  }
}

.jd-ico svg {
  display: block;
  width: 20px;
  height: 20px;
}
/* ===============================
   DESKTOP CTA CENTER FIX (THENI)
   Mobile untouched
================================ */

@media (min-width: 769px) {
  .content-section .cta-link {
    display: inline-flex;
    margin-left: auto;
    margin-right: auto;
  }

  .content-section {
    text-align: center;
  }
}/* ===============================
   DESKTOP NAVBAR – RIGHT ADJUST
   (Mobile untouched)
================================ */
@media (min-width: 769px) {
  .navbar {
    padding-left: 500px;   /* 👈 value increase/decrease pannalaam */
  }
}

