*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green: #2b4a30;
  --green-dark: #1a3a2a;
  --green-btn: #2b4d35;
  --white: #ffffff;
  --text-dark: #1a2e1a;
}

@font-face {
  font-family: 'Nuosu SIL';
  src: url('../fonts/NuosuSIL-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  font-family: 'Nuosu SIL', sans-serif;
  min-height: 100%;
  background-color: #fdfdfd;
  color: var(--text-dark);
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
}

/* NAVBAR */
.navbar {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8em;
  text-transform: uppercase;
  font-weight: 600;
  position: fixed;
  top: 19px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 60px);
  max-width: 1280px;
  background: rgba(255,255,255,0.98);
  border-radius: 17px;
  box-shadow: 0 2px 24px rgba(0,0,0,0.10);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  z-index: 1000;
  padding: 0 1px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: 0.3in;
}

.logo-video{
  width: 80px;
  height: auto;

  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  display: inline-block;
  color: #2e3f2f;
  transition: transform 0.3s ease, color 0.3s ease;
}

.nav-links a:hover {
  color: var(--green-btn);
  transform: scale(1.12);
}

.nav-links a.active {
  color: #013813;              /* dark green */
  transform: scale(1.12);      /* same as hover */
}

.mobile-book {
  display: none;
}

.btn-book {
  padding: 7px 15px;
  background: var(--green-btn);
  color: var(--white);
  font-family:'Poppins', sans-serif;
  font-size: 0.88em;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1.5px solid var(--green-btn);
  cursor: pointer;
  border-radius: 12px;
  white-space: nowrap;
  transition: all 0.25s ease;
  margin-right: 0.3in;
}

.btn-book:hover {
  background: transparent;
  color: #000;
  border-color: var(--green-dark);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--green-dark);
}

.floating-contact {
  position: fixed;
  right: 0;
  top: 180px;

  display: flex;
  flex-direction: column;
  overflow: hidden;

  border-radius: 12px 0 0 12px;
  z-index: 9999;

  opacity: 1;              /* 🔥 always visible */
  pointer-events: auto;    /* 🔥 clickable */
}

/* show after hero */
.floating-contact.show {
  opacity: 1;
  pointer-events: auto;
}

/* buttons */
.floating-contact a {
  width: 60px;
  height: 60px;
  background: #0f3b22;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;
}

/* make both icons same size */
.floating-contact a i {
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* reduce whatsapp size */
.fa-whatsapp {
  transform: scale(1.2);
}

/* divider */
.floating-contact a + a {
  border-top: 1px solid rgba(255,255,255,0.2);
}
/* HERO */
.location-hero {
  text-align: center;
  padding: 150px 20px 40px;
}

.section-label {
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #102E16;
  margin-bottom: 20px;
}

.section-label .line {
  width: 8px;
  height: 22px;
  background: #6e7f72;
  display: inline-block;
}

.location-hero h1 {
  font-family: 'Nuosu SIL', sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 500;
  color: var(--green-dark);
  line-height: 1.3;
  text-align: center;
}

.location-hero p {
  font-family: 'Nuosu SIL', sans-serif;
  font-size: 16px;
  text-align: center;
  max-width: 620px;
  margin: 0 auto 50px;
  line-height: 1.75;
  color: #6b7a6b;
}

/* LOCATION CARDS */
.location-cards-section {
  width: 100%;
  padding: 20px 40px 70px;
  /* background: #f3f3f3; */
}

.location-row {
  max-width: 1220px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 355px 1fr;
  gap: 28px;
  align-items: stretch;
}

.location-info-card {
  background: linear-gradient(90deg, #013715, #032f14);
  color: #fff;
  min-height: 485px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 20px;
}

.location-info-top {
   padding: 26px 28px 24px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);

  display: flex;
  flex-direction: column;
  align-items: flex-start !important;
  text-align: left !important;
}

.location-info-top h3 {
  font-family: 'Nuosu SIL', sans-serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 4px;
 text-align: left !important;
}

.location-sub {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 34px;
}

.location-address {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.location-info-bottom {
  padding: 34px 28px 30px;
}

.location-contact-line {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
}

.location-contact-line i {
  font-size: 24px;
  width: 26px;
  color: #dfe5dd;
  flex-shrink: 0;
}

.location-map-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 295px;
  height: 36px;
  margin-top: 54px;
  background: #ffffff;
  color: #546756;
  border-radius: 13px;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.location-map-card {
  min-height: 485px;
  border: 3px solid #9ba696;
  overflow: hidden;
  background: #ddd;
  /* width:100%; */
  margin-left: 50px;
}

.location-map-card iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* CARD POSITION FIX */
.location-info-card {
  position: relative;
  overflow: hidden;
}

/* NEW RIBBON */
.new-tag {
  position: absolute;
  top: 0;
  left: 0;

  background: #e6c06a;
  color: #123923;

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;

  padding: 10px 18px;

  clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
}
/* MYSORE */
.opening-soon-card {
  justify-content: flex-start;
}

.location-opening-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.location-opening-wrap h4 {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
}

.blurred-map iframe {
  filter: blur(4px);
  pointer-events: none;
}


/* BANNER */
.hero-section {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 34px;
}

.location-banner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  min-width: 220px;
  background: #0c4b25;
  color: #ffffff;
  border: 2px solid #7a8b7c;
  border-radius: 18px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

/* 2nd card hover */
.hero-section.featured .location-banner-btn:hover,
.hero-section.active .location-banner-btn:hover {
  background: #ffffff;
  color: #163723;
}

/* FORCE CENTER ONLY FOR THESE 2 CARDS */

/* EAGLETON */
.eagleton-card .location-info-top {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
}

/* MYSORE (opening card) */
.opening-soon-card .location-info-top {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
}

/* TEXT FORCE CENTER */
.eagleton-card h3,
.eagleton-card .location-sub,
.opening-soon-card h3,
.opening-soon-card .location-sub {
  text-align: center !important;
}

/* NEWSLETTER */

.newsletter-section {
  width: 100%;
  padding: 80px 44px 150px;
  /* background: #f3f3f3; */
  border-bottom: 2px solid #0b3d1d;
}

.newsletter-row {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  flex-wrap: nowrap;
}

.newsletter-title {
  font-family:'Nuosu SIL', sans-serif; 
  font-size: 26px;
  font-weight: 500;
  color: #173923;
  line-height: 1.15;
  margin: 0;
  white-space: nowrap;
  flex-shrink: 0;
}

.newsletter-form {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 0;
  flex: 1;
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  height: 44px;
  border: 2px solid #8ea08e;
  border-radius: 12px;
  outline: none;
  background: transparent;
  padding: 0 18px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  color: #18361f;
}

.newsletter-form input::placeholder {
  color: #a7afa7;
}

.newsletter-form button {
  min-width: 120px;
  height: 44px;
  border: none;
  border-radius: 12px;
  background: #063d17;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
  padding: 0 22px;
}


/* ===== FOOTER ===== */
.site-footer {
  background: #102E16;
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

/* Grid */
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 0.95fr 0.95fr 1.15fr;
  border-left: 1px solid rgba(255, 255, 255, 0.10);
  border-right: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-brand,
.footer-col {
  min-height: 380px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  /*box-sizing: border-box;*/
}

.footer-col:last-child {
  border-right: none;
}

/* Brand */
/*.footer-brand {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
*/

.footer-brand-top {
  padding: 28px;
}


.footer-logo {
  font-size: 60px;
  font-family: 'Nuosu SIL', sans-serif;
  /* margin: 0; */
  
  text-align: center;
  /* align-items: center; */
}


.footer-logo-sub {
  font-size: 20px;
  letter-spacing: 10px;
  margin-left: 15px;
  text-align: center;
  font-family: 'Nuosu SIL', sans-serif;
  /* align-items: center; */
  /* margin-top: 50px; */
}

/*.footer-col h3 {
  font-size: 18px;
  margin: 0 0 18px;
  color: #ffffff;
  font-weight: 400;
  font-family: 'Nuosu SIL', sans-serif;
  letter-spacing: 0.5px;
}*/

.footer-desc {
font-size: 17px;
  color:#ffff;
  /* max-width: 265px; */
  text-align: justify;
  margin-top: 20px;
  align-items: center;
}

/* Social area */
.footer-social-wrap {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 28px;
}

.footer-social-title {
  margin-bottom: 16px;
  color: #ffffff;
  font-family: 'Nuosu SIL', sans-serif;
  text-align:center;
  margin-bottom: 35px;
}

.footer-socials {
 display: flex;
  gap: 30px;
  margin-left: 40px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border: 1px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff; /* 🔥 important */
  font-size: 18px;
}

.footer-socials a:hover {
  background: #ffffff;
  color: #173923;
}

/* Columns */
.footer-col {
    padding: 28px;
  align-items: center;
}

.footer-col h3 {
  font-family: 'Nuosu SIL', sans-serif;
  margin-bottom: 18px;
   margin-left: 20px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
   margin-bottom: 10px;
   font-family: 'Poppins', sans-serif;
   margin-left: 20px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-col a:hover {
  color: #ffffff;
}

/* Contact */
.footer-contact ul {
  margin-top: 0;
}

.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.82);
  font-family: 'Poppins', sans-serif;
  
}

.footer-contact i {
  color: #ffffff;
  font-size: 13px;
  margin-top: 4px;
  min-width: 14px;
}

.smdate{
  font-size: 15px;
}

/* Bottom */
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.80);
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
}

.footer-bottom-links {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
  transition: color 0.25s ease;
}

.footer-bottom a:hover {
  color: #ffffff;
}

.location-map-card{
  position: relative;
  overflow: hidden;
}

.location-map-card iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.location-map-link{
  position: absolute;
  inset: 0;
  z-index: 5;
}



