/* ===================================================
   KONIG HOTEL & RESTAURANT — STYLESHEET
   Colors: Maroon #7B1F1F · Green #2D6A32 · Cream #FAF5EF
=================================================== */

/* ===== ROOT ===== */
:root {
  --maroon:       #7B1F1F;
  --maroon-dark:  #5C1717;
  --maroon-light: #9B2F2F;
  --green:        #2D6A32;
  --green-light:  #3D8B45;
  --cream:        #FAF5EF;
  --cream-dark:   #F0E8DC;
  --stone:        #A07850;
  --charcoal:     #1C1C1C;
  --muted:        #7A6A5A;
  --white:        #FFFFFF;
  --shadow:       0 4px 24px rgba(0,0,0,0.07);
  --shadow-lg:    0 10px 48px rgba(0,0,0,0.13);
  --radius:       12px;
  --ease:         all 0.3s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 90px 0; }

/* ===== SECTION LABELS & TITLES ===== */
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--green);
  margin-bottom: 10px;
}
.section-label.light { color: rgba(255,255,255,0.65); }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-title.light { color: var(--white); }

.section-subtitle {
  font-size: 1rem;
  color: var(--muted);
  max-width: 580px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .section-subtitle { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 32px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.93rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--ease);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--maroon);
  color: var(--white);
  border-color: var(--maroon);
}
.btn-primary:hover {
  background: var(--maroon-dark);
  border-color: var(--maroon-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(123,31,31,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-cta-white {
  background: var(--white);
  color: var(--maroon);
  border-color: var(--white);
  font-size: 0.95rem;
}
.btn-cta-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--ease);
  background: transparent;
}
.navbar.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 10px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo img {
  height: 72px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.35));
  transition: var(--ease);
}
.navbar.scrolled .nav-logo img {
  height: 58px;
  filter: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  position: relative;
  transition: var(--ease);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--maroon);
  transition: width 0.3s ease;
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.navbar.scrolled .nav-link { color: var(--charcoal); }
.navbar.scrolled .nav-link:hover { color: var(--maroon); }

.btn-call {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--maroon);
  color: var(--white);
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--ease);
  flex-shrink: 0;
}
.btn-call:hover {
  background: var(--maroon-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(123,31,31,0.35);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--ease);
}
.navbar.scrolled .hamburger span { background: var(--charcoal); }

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(20,6,6,0.82) 0%,
    rgba(40,16,16,0.68) 55%,
    rgba(18,36,18,0.58) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 130px 24px 90px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.93);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 28px;
  letter-spacing: 0.3px;
}
.badge-star { color: #FFD700; font-size: 1rem; }

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 22px;
}
.hero-title em {
  font-style: italic;
  color: #E8B490;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.78);
  margin-bottom: 40px;
  line-height: 1.85;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-scroll-hint {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-mouse {
  width: 26px; height: 40px;
  border: 2px solid rgba(255,255,255,0.45);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}
.scroll-dot {
  width: 4px; height: 8px;
  background: rgba(255,255,255,0.75);
  border-radius: 4px;
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* ===== STATS BAR ===== */
.stats-bar { background: var(--maroon); padding: 28px 0; }

.stats-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 14px 20px;
}
.stat-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-unit {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
}
.stat-label {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
  font-weight: 500;
}
.stat-divider {
  width: 1px; height: 44px;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
}

/* ===== ABOUT ===== */
.about { background: var(--cream); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-img-main img {
  width: 100%;
  height: 370px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.about-img-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: stretch;
  margin-top: 14px;
}
.about-img-row img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: center 30%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-eco-badge {
  background: var(--green);
  color: var(--white);
  padding: 18px 14px;
  border-radius: var(--radius);
  text-align: center;
  min-width: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.about-eco-badge span { font-size: 1.75rem; }
.about-eco-badge p {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.4;
}

.about-text .section-title { margin-bottom: 18px; }

.about-text p {
  color: var(--muted);
  margin-bottom: 14px;
  font-size: 0.97rem;
  line-height: 1.8;
}
.about-text p strong { color: var(--charcoal); }
.about-text p em { color: var(--green); font-style: normal; font-weight: 500; }

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--cream-dark);
}
.highlight-item { display: flex; align-items: flex-start; gap: 14px; }
.highlight-icon { font-size: 1.35rem; flex-shrink: 0; margin-top: 1px; }
.highlight-item strong { display: block; font-size: 0.93rem; color: var(--charcoal); margin-bottom: 2px; }
.highlight-item span  { font-size: 0.82rem; color: var(--muted); }

/* ===== CELEBRITY FEATURE ===== */
.celeb-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.celeb-img-side {
  position: relative;
  overflow: hidden;
}
.celeb-img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 6s ease;
}
.celeb-img-side:hover img {
  transform: scale(1.04);
}

.celeb-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--maroon);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.celeb-text-side {
  background: var(--charcoal);
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.celeb-text-side::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(123,31,31,0.25) 0%, transparent 70%);
  border-radius: 50%;
}

.celeb-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 7rem;
  color: var(--maroon);
  line-height: 0.6;
  margin-bottom: 20px;
  opacity: 0.8;
}

.celeb-text-side h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 14px;
}
.celeb-text-side h2 em {
  font-style: italic;
  color: #E8B490;
}

.celeb-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
  font-weight: 500;
  line-height: 1.6;
}

.celeb-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-bottom: 28px;
}

.celeb-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.celeb-tags span {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* ===== RESTAURANT ===== */
.restaurant { background: var(--cream-dark); }

.restaurant-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.rest-img-big img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  margin-bottom: 14px;
}
.rest-img-small-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.rest-img-small-grid img {
  width: 100%;
  height: 155px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.cuisine-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.cbadge {
  padding: 6px 15px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}
.cbadge-green {
  background: rgba(45,106,50,0.1);
  color: var(--green);
  border: 1px solid rgba(45,106,50,0.2);
}
.cbadge-maroon {
  background: rgba(123,31,31,0.1);
  color: var(--maroon);
  border: 1px solid rgba(123,31,31,0.2);
}

.dishes-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--charcoal);
  margin-bottom: 18px;
}

.dishes-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 26px; }
.dish-item { display: flex; align-items: flex-start; gap: 13px; }
.dish-dot {
  width: 8px; height: 8px;
  background: var(--maroon);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}
.dish-item strong { display: block; font-size: 0.93rem; color: var(--charcoal); margin-bottom: 2px; }
.dish-item p { font-size: 0.82rem; color: var(--muted); margin: 0; }

.rest-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.rest-feature {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.86rem;
  color: var(--muted);
  font-weight: 500;
}

/* ===== ACCOMMODATION ===== */
.accommodation { background: var(--cream); }

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 44px;
}

.room-card {
  background: var(--white);
  padding: 30px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--ease);
  border: 1px solid transparent;
}
.room-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(123,31,31,0.2);
}
.room-icon { font-size: 2.2rem; margin-bottom: 14px; }
.room-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.room-card p { font-size: 0.86rem; color: var(--muted); line-height: 1.6; }

.accommodation-cta {
  background: var(--maroon);
  padding: 40px 32px;
  border-radius: var(--radius);
  text-align: center;
  color: var(--white);
}
.accommodation-cta p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

/* ===== SERVICES ===== */
.services { background: var(--cream-dark); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--ease);
  border-top: 4px solid var(--maroon);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-icon-wrap {
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-light) 100%);
  padding: 28px 24px 20px;
}
.service-icon {
  font-size: 2.8rem;
  display: block;
}

.service-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.service-body > p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 18px;
}

.service-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 22px;
  flex: 1;
}
.service-highlights li {
  font-size: 0.85rem;
  color: var(--charcoal);
  font-weight: 500;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--maroon);
  border: 2px solid var(--maroon);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--ease);
  align-self: flex-start;
}
.service-cta:hover {
  background: var(--maroon);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(123,31,31,0.3);
}

.services-note {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--maroon);
  color: rgba(255,255,255,0.85);
  padding: 18px 28px;
  border-radius: var(--radius);
  font-size: 0.9rem;
}
.services-note span { font-size: 1.4rem; flex-shrink: 0; }
.services-note a {
  color: var(--white);
  font-weight: 600;
  text-decoration: underline;
}

/* ===== WHY KONIG ===== */
.why-konig {
  position: relative;
  padding: 90px 0;
}
.why-konig-bg {
  position: absolute;
  inset: 0;
  background: url("pics/WhatsApp Image 2026-01-16 at 12.17.57.jpeg") center/cover no-repeat;
}
.why-konig-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(92,23,23,0.93) 0%,
    rgba(123,31,31,0.90) 50%,
    rgba(60,20,20,0.93) 100%
  );
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.why-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 30px 22px;
  border-radius: var(--radius);
  text-align: center;
  transition: var(--ease);
}
.why-card:hover {
  background: rgba(255,255,255,0.13);
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.22);
}
.why-icon { font-size: 2.2rem; margin-bottom: 14px; }
.why-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 8px;
}
.why-card p { font-size: 0.86rem; color: rgba(255,255,255,0.65); line-height: 1.65; }

/* ===== GREAT INDIAN BUSTARD ===== */
.gib-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #0d0a06 0%, #1a1206 40%, #2a1a08 70%, #0d1a0a 100%);
}

.endangered-bar {
  position: relative;
  z-index: 10;
  background: linear-gradient(90deg, transparent, rgba(180,30,30,0.18), transparent);
  border-top: 1px solid rgba(200,60,60,0.25);
  border-bottom: 1px solid rgba(200,60,60,0.25);
  padding: 13px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  gap: 80px;
  white-space: nowrap;
  animation: gib-ticker 22s linear infinite;
  width: max-content;
}
@keyframes gib-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255,120,120,0.85);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.ticker-item::before {
  content: '●';
  color: rgba(255,80,80,0.7);
  font-size: 0.5rem;
}

.gib-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.gib-star {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  animation: gib-twinkle var(--d) ease-in-out infinite alternate;
}
@keyframes gib-twinkle {
  from { opacity: 0.3; transform: scale(1); }
  to   { opacity: 1;   transform: scale(1.5); }
}

.gib-dune {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 38%;
  pointer-events: none;
  z-index: 2;
}

.gib-inner {
  position: relative;
  z-index: 10;
  padding-top: 64px;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.gib-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,180,40,0.12);
  border: 1px solid rgba(255,180,40,0.3);
  color: #f5c842;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 20px;
}
.gib-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #f5c842;
  animation: gib-pulse 1.6s ease-in-out infinite;
}
@keyframes gib-pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.7); opacity: 0.4; }
}

.gib-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 8px;
}
.gib-title em { font-style: italic; color: #f5c842; }

.gib-subtitle {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}

.gib-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.85;
  margin-bottom: 32px;
}
.gib-desc strong { color: #f5c842; font-weight: 600; }

.gib-stats {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.gib-stat {
  text-align: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 14px 18px;
}
.gib-stat .num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #f5c842;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}
.gib-stat .lbl {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gib-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #c8960a, #f5c842);
  color: #1a1206;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 13px 26px;
  border-radius: 40px;
  text-decoration: none;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 24px rgba(245,200,66,0.3);
  transition: transform 0.25s, box-shadow 0.25s;
}
.gib-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245,200,66,0.45);
}

/* Visual side */
.gib-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.gib-bird-stage {
  position: relative;
  width: 380px;
  height: 380px;
}

.gib-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(245,200,66,0.35);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: gib-ring-pulse 4s ease-in-out infinite;
}
.gib-ring:nth-child(1) { width: 310px; height: 310px; animation-delay: 0s; }
.gib-ring:nth-child(2) { width: 355px; height: 355px; animation-delay: 0.8s; }
.gib-ring:nth-child(3) { width: 390px; height: 390px; animation-delay: 1.6s; }
@keyframes gib-ring-pulse {
  0%,100% { opacity: 0.25; }
  50%      { opacity: 0.7; }
}

.gib-ground-glow {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  width: 180px; height: 24px;
  background: radial-gradient(ellipse, rgba(245,200,66,0.22), transparent 70%);
  animation: gib-glow 6s ease-in-out infinite;
}
@keyframes gib-glow {
  0%,100% { opacity: 0.6; width: 160px; }
  50%      { opacity: 1;   width: 200px; }
}

.gib-bird-wrap {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: gib-float 6s ease-in-out infinite;
}
@keyframes gib-float {
  0%,100% { transform: translate(-50%, -50%); }
  50%      { transform: translate(-50%, -56%); }
}

.gib-bird-photo {
  width: 290px;
  height: 290px;
  min-width: 290px;
  min-height: 290px;
  max-width: 290px;
  max-height: 290px;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  border: 3px solid rgba(245,200,66,0.5);
  box-shadow: 0 0 60px rgba(245,200,66,0.4), 0 0 120px rgba(245,200,66,0.15);
  display: block;
}

.gib-photo2-wrap {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  height: 150px;
  position: relative;
}
.gib-photo2-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.gib-photo2-cap {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.55), transparent);
  display: flex;
  align-items: center;
  padding: 20px;
  color: #f5c842;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.gib-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
}
.fact-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.fact-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.fact-text strong {
  display: block;
  font-size: 0.75rem;
  color: #f5c842;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}
.fact-text span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .gib-inner { gap: 48px; }
  .gib-bird-stage { width: 300px; height: 300px; }
  .gib-ring:nth-child(1) { width: 240px; height: 240px; }
  .gib-ring:nth-child(2) { width: 275px; height: 275px; }
  .gib-ring:nth-child(3) { width: 300px; height: 300px; }
  .gib-bird-photo { width: 230px; height: 230px; }
}

@media (max-width: 768px) {
  .gib-inner { grid-template-columns: 1fr; gap: 40px; }
  .gib-stats { justify-content: center; }
  .gib-bird-stage { width: 260px; height: 260px; }
  .gib-ring:nth-child(1) { width: 210px; height: 210px; }
  .gib-ring:nth-child(2) { width: 240px; height: 240px; }
  .gib-ring:nth-child(3) { width: 260px; height: 260px; }
  .gib-bird-photo { width: 200px; height: 200px; }
}

/* ===== GALLERY ===== */
.gallery { background: var(--cream-dark); }

/* ===== BENTO GALLERY ===== */
.bento-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 220px 220px 220px;
  gap: 12px;
}

.bento-item {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.42s ease;
}

.bento-item:hover img {
  transform: scale(1.06);
}

/* Hover caption overlay */
.bento-cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 14px 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.62), transparent);
  color: var(--white);
  font-size: 0.83rem;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bento-item:hover .bento-cap {
  opacity: 1;
}

/* Featured: spans 2 cols × 2 rows */
.bento-feat {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.bento-feat::after {
  content: '★  Signature View';
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(123,31,31,0.88);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  padding: 5px 12px;
  border-radius: 20px;
}

/* Wide: spans 2 cols */
.bento-wide {
  grid-column: span 2;
}

/* Responsive */
@media (max-width: 1024px) {
  .bento-gallery {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 240px 200px 200px 200px 200px;
  }
  .bento-feat { grid-column: 1 / 3; grid-row: 1 / 3; }
  .bento-wide { grid-column: span 2; }
}

@media (max-width: 768px) {
  .bento-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .bento-item { height: 180px; }
  .bento-feat { grid-column: 1 / 3; grid-row: span 1; height: 220px; }
  .bento-wide { grid-column: 1 / 3; }
}

@media (max-width: 480px) {
  .bento-gallery { grid-template-columns: 1fr; }
  .bento-item { height: 200px; }
  .bento-feat { grid-column: 1; height: 220px; }
  .bento-wide { grid-column: 1; }
  .bento-cap { opacity: 1; }
}

/* ===== VIDEO TOUR ===== */
.video-tour {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.video-tour-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--charcoal);
  text-align: center;
  margin-bottom: 28px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.video-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--ease);
}
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.video-card video {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  background: #000;
}

.video-card p {
  padding: 12px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  text-align: center;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }

.lightbox img {
  max-width: 88vw;
  max-height: 84vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  user-select: none;
}

.lb-close {
  position: absolute;
  top: 18px; right: 22px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 1.1rem;
  width: 42px; height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--ease);
}
.lb-close:hover { background: rgba(255,255,255,0.2); }

.lb-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 2rem;
  width: 50px; height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--ease);
  line-height: 1;
}
.lb-nav:hover { background: rgba(255,255,255,0.2); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }

/* ===== REVIEWS ===== */
.reviews { background: var(--cream); }

.rating-summary {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  padding: 18px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-top: 20px;
}
.rating-big {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--maroon);
  line-height: 1;
}
.stars-row {
  color: #FFD700;
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 4px;
}
.rating-detail p { font-size: 0.8rem; color: var(--muted); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review-card {
  background: var(--white);
  padding: 26px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--ease);
  border-left: 3px solid var(--maroon);
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.review-stars {
  color: #FFD700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.review-text {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 18px;
  font-style: italic;
}
.reviewer { display: flex; align-items: center; gap: 11px; }
.reviewer-avatar {
  width: 38px; height: 38px;
  background: var(--maroon);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.reviewer strong { display: block; font-size: 0.88rem; color: var(--charcoal); }
.reviewer span   { font-size: 0.76rem; color: var(--muted); }

/* ===== LOCATION ===== */
.location { background: var(--cream-dark); }

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}

.contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.contact-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 1px; }
.contact-item strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--charcoal);
  margin-bottom: 3px;
}
.contact-item p { font-size: 0.92rem; color: var(--muted); line-height: 1.65; }
.contact-item a { color: var(--maroon); font-weight: 500; }
.contact-item a:hover { text-decoration: underline; }

.map-wrap {
  margin-top: 40px;
}
.map-wrap iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

/* ===== CONTACT FORM ===== */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 36px 32px;
}

.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.form-subtitle {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
  position: relative;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.form-group label span { color: var(--maroon); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid #E0D8D0;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  color: var(--charcoal);
  background: var(--cream);
  transition: var(--ease);
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #B0A090; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--maroon);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(123,31,31,0.08);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #CC2222;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A6A5A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-group textarea { resize: vertical; min-height: 110px; }

.form-error {
  font-size: 0.76rem;
  color: #CC2222;
  display: none;
  margin-top: -2px;
}
.form-error.show { display: block; }

.form-submit {
  width: 100%;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  font-size: 0.95rem;
  margin-top: 4px;
}
.submit-icon { font-size: 1.1rem; transition: transform 0.3s ease; }
.form-submit:hover .submit-icon { transform: translateX(4px); }

.form-success {
  display: none;
  align-items: flex-start;
  gap: 14px;
  background: #F0FFF4;
  border: 1.5px solid #68D391;
  border-radius: 8px;
  padding: 16px 18px;
  margin-top: 16px;
}
.form-success.show { display: flex; }
.form-success span { font-size: 1.4rem; flex-shrink: 0; }
.form-success strong { display: block; color: #276749; font-size: 0.95rem; margin-bottom: 3px; }
.form-success p { font-size: 0.83rem; color: #2F855A; }

/* ===== FOOTER ===== */
.footer {
  background: var(--charcoal);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-logo {
  height: 78px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 6px;
}
.eco-note { color: rgba(100,210,110,0.75) !important; }

.footer-links h5,
.footer-contact h5 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.55);
  transition: var(--ease);
}
.footer-links a:hover { color: var(--white); padding-left: 4px; }

.footer-contact p { font-size: 0.86rem; color: rgba(255,255,255,0.55); margin-bottom: 9px; }
.footer-contact a { color: rgba(255,255,255,0.55); transition: var(--ease); }
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-ratings { color: rgba(255,255,255,0.35); }

.footer-credit {
  text-align: center;
  padding: 12px 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-credit a {
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  transition: color 0.3s;
}
.footer-credit a:hover { color: var(--white); }

/* ===== SCROLL ANIMATIONS ===== */
.animate-fade-up {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 0.65s ease forwards;
}
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.30s; }
.delay-3 { animation-delay: 0.45s; }

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

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid,
  .restaurant-grid,
  .location-grid,
  .celeb-feature {
    grid-template-columns: 1fr;
  }
  .celeb-img-side { min-height: 320px; }
  .celeb-text-side { padding: 40px 28px; }
  .rooms-grid   { grid-template-columns: repeat(2, 1fr); }
  .why-grid     { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  /* Mobile nav */
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    padding: 80px 32px 40px;
    box-shadow: -4px 0 28px rgba(0,0,0,0.1);
    transition: right 0.32s ease;
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-link {
    color: var(--charcoal) !important;
    padding: 13px 0;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--cream-dark);
    display: block;
    width: 100%;
  }
  .hamburger { display: flex; z-index: 1001; }
  .btn-call {
    padding: 8px 14px;
    font-size: 0.78rem;
    gap: 5px;
  }

  .hero-title { font-size: clamp(2.2rem, 9vw, 3.4rem); }

  .stat-divider { display: none; }
  .stat-item { min-width: 50%; }

  .why-grid,
  .reviews-grid,
  .rooms-grid,
  .services-grid { grid-template-columns: 1fr; }

  .rest-img-small-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }

  .footer-grid    { grid-template-columns: 1fr; }
  .footer-bottom  { flex-direction: column; gap: 6px; text-align: center; }

  .lb-prev { left: 6px; }
  .lb-next { right: 6px; }

  .rating-summary { flex-direction: column; gap: 10px; text-align: center; }
  .about-img-row { grid-template-columns: 1fr; }
  .about-eco-badge { display: none; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .btn { width: 100%; }
  .rest-features { grid-template-columns: 1fr; }
  .accommodation-cta { padding: 28px 20px; }
}
