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

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  color: #222;
  background: #fff;
  overflow-x: hidden;
}

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

/* ===== VARIABLES ===== */
:root {
  --green: #33632A;
  --green-mid: #4e7f43;
  --green-light: #d6e8d2;
  --gold: #c9a84c;
  --dark: #1a1a1a;
  --gray-bg: #f5f5f0;
  --gray-mid: #888;
  --border: #e0e0da;
  --nav-h: 72px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.3rem; }

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  display: block;
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-family: 'Playfair Display', serif;
  margin-bottom: 1.2rem;
  color: var(--dark);
}

.section-lead {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.8;
  max-width: 680px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 13px 32px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
}

.btn-green {
  background: var(--green);
  color: #fff;
}
.btn-green:hover { background: #1e4420; }

.btn-outline {
  background: transparent;
  border: 2px solid var(--green);
  color: var(--green);
}
.btn-outline:hover { background: var(--green); color: #fff; }

.btn-white {
  background: #fff;
  color: var(--green);
}
.btn-white:hover { background: var(--green-light); }

.btn-gold {
  background: var(--gold);
  color: #fff;
}
.btn-gold:hover { background: #b5922e; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  transition: background 0.4s ease, box-shadow 0.4s ease, height 0.3s ease;
}

.nav.scrolled {
  background: rgba(20, 20, 20, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  height: 62px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-shrink: 0;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.35);
  padding: 8px 18px 6px;
  transition: border-color 0.3s;
}
.nav-logo:hover { border-color: rgba(255,255,255,0.7); }

.nav-logo-hotel {
  font-family: 'Lato', sans-serif;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  display: block;
  margin-bottom: 3px;
}

.nav-logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  line-height: 1.1;
  display: block;
  text-transform: uppercase;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

.nav-logo-rings {
  display: flex;
  justify-content: center;
  gap: 3px;
  margin-top: 5px;
}

.nav-logo-rings span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.55);
  display: block;
}

.nav-logo-sub {
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-top: 3px;
}

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

.nav-links a {
  color: rgba(255,255,255,0.92);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  text-shadow: 0 1px 6px rgba(0,0,0,0.55);
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  border-bottom-color: var(--green-mid);
}

.nav-reserve {
  background: var(--green);
  color: #fff !important;
  border-bottom: none !important;
  padding: 10px 22px !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  transition: background 0.2s !important;
}
.nav-reserve:hover { background: #1e4420 !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.52) 0%,
    rgba(0,0,0,0.08) 35%,
    rgba(0,0,0,0.08) 55%,
    rgba(0,0,0,0.60) 100%
  );
  z-index: 1;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  padding-bottom: 140px;
}

.hero-content h1 {
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  margin-bottom: 1rem;
}

.hero-content p {
  color: rgba(255,255,255,0.88);
  font-size: 1.1rem;
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 2rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

/* ===== BOOKING FORM (bottom of hero) ===== */
.booking-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  padding: 0 20px 0;
}

.booking-form {
  background: rgba(26,26,26,0.88);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 860px;
}

.booking-field {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 28px;
  border-right: 1px solid rgba(255,255,255,0.12);
  cursor: pointer;
  transition: background 0.2s;
}
.booking-field:hover { background: rgba(255,255,255,0.06); }

.booking-icon {
  font-size: 1.1rem;
  color: var(--green-mid);
  flex-shrink: 0;
}

.booking-field-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-bottom: 4px;
}

.booking-field input[type="date"] {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 1rem;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  width: 100%;
  cursor: pointer;
}
.booking-field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1) opacity(0.5);
}

.booking-form .btn {
  padding: 0 40px;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  flex-shrink: 0;
  border-radius: 0;
}

/* ===== ABOUT SECTION ===== */
.about {
  padding: 90px 40px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text .section-lead { max-width: 100%; }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.stat-box {
  padding: 24px;
  background: var(--gray-bg);
  border-left: 3px solid var(--green);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--green);
  font-family: 'Playfair Display', serif;
  display: block;
}

.stat-label {
  font-size: 0.8rem;
  color: #777;
  letter-spacing: 0.05em;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-image-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--green);
  color: #fff;
  padding: 20px 24px;
  text-align: center;
}

.about-image-badge span {
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  display: block;
  line-height: 1;
}
.about-image-badge small {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* ===== SECTIONS GRID ===== */
.sections-grid-wrapper {
  padding: 80px 40px;
  background: var(--gray-bg);
}

.sections-grid-wrapper .center {
  text-align: center;
  margin-bottom: 50px;
}

.sections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1300px;
  margin: 0 auto;
}

.section-card {
  position: relative;
  overflow: hidden;
  height: 380px;
  cursor: pointer;
}

.section-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.section-card:hover img { transform: scale(1.08); }

.section-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 28px;
  transition: background 0.3s;
}

.section-card:hover .section-card-overlay {
  background: linear-gradient(to top, rgba(44,95,46,0.85) 0%, rgba(44,95,46,0.3) 60%);
}

.section-card-overlay h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.section-card-overlay p {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
}

.section-card:hover .section-card-overlay p {
  opacity: 1;
  transform: translateY(0);
}

.section-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  transition: color 0.2s, gap 0.2s;
}
.section-card:hover .section-card-link {
  color: #fff;
  gap: 12px;
}

/* ===== ROOMS PREVIEW ===== */
.rooms-preview {
  padding: 90px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.rooms-preview .header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

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

.room-card {
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.room-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.12); }

.room-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.room-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.room-card:hover .room-card-img img { transform: scale(1.05); }

.room-card-body {
  padding: 24px;
}

.room-card-body h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.room-card-body p {
  color: #666;
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.room-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.room-price-from {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #999;
}

.room-price-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green);
  font-family: 'Playfair Display', serif;
}

/* ===== SPORTS / FACILITIES ===== */
.facilities {
  padding: 90px 40px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.facilities::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('images/07A5F077-B375-47B2-9047-CA02918C22FE.PNG') center/cover no-repeat;
  opacity: 0.15;
}

.facilities-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.facilities .section-title { color: #fff; }
.facilities .section-label { color: var(--green-light); }

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.facility-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 32px 28px;
  transition: background 0.3s, border-color 0.3s;
}
.facility-item:hover {
  background: rgba(44,95,46,0.2);
  border-color: var(--green-mid);
}

.facility-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.facility-item h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 10px;
}

.facility-item p {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ===== REVIEWS ===== */
.reviews {
  padding: 90px 40px;
  background: var(--gray-bg);
}

.reviews-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.reviews .center { text-align: center; margin-bottom: 50px; }

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

.review-card {
  background: #fff;
  padding: 32px;
  border-bottom: 3px solid var(--green);
}

.review-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dark);
}

.review-source {
  font-size: 0.75rem;
  color: #999;
}

/* ===== NEWSLETTER ===== */
.newsletter {
  padding: 80px 40px;
  background: var(--green);
  text-align: center;
}

.newsletter h2 { color: #fff; margin-bottom: 12px; }
.newsletter p { color: rgba(255,255,255,0.8); margin-bottom: 32px; font-size: 1rem; }

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 16px 24px;
  border: none;
  outline: none;
  font-size: 0.95rem;
  font-family: 'Lato', sans-serif;
}

.newsletter-form button {
  padding: 16px 32px;
  background: var(--dark);
  color: #fff;
  border: none;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.newsletter-form button:hover { background: #333; }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: #ccc;
}

.footer-map {
  height: 300px;
  background: #2a2a2a;
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(30%) contrast(90%);
}

.footer-main {
  padding: 60px 40px 40px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
}

.footer-brand .nav-logo-main {
  font-size: 1.4rem;
  margin-bottom: 6px;
  display: block;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: #888;
  margin-top: 16px;
  max-width: 280px;
}

.footer-col h4 {
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #333;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #888;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: #fff; }

.footer-contact p {
  font-size: 0.88rem;
  color: #888;
  line-height: 2;
}

.footer-contact a { color: var(--green-light); }
.footer-contact a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid #2a2a2a;
  padding: 24px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: #555;
}

/* ===== PAGE HERO (subpages) ===== */
.page-hero {
  height: 420px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.38) 50%,
    rgba(0,0,0,0.55) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding-top: var(--nav-h);
}

.page-hero-content h1 { color: #fff; margin-bottom: 12px; }

.breadcrumb {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.08em;
}
.breadcrumb a { color: var(--green-light); }
.breadcrumb a:hover { color: #fff; }

/* ===== CONTENT SECTION ===== */
.content-section {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.content-section.bg-gray {
  max-width: 100%;
  background: var(--gray-bg);
  padding: 80px 40px;
}

.content-section.bg-gray .inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== TWO COLUMN LAYOUT ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.two-col img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.two-col-text h2 { margin-bottom: 1rem; }
.two-col-text p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 0.97rem;
}

/* ===== FEATURE LIST ===== */
.feature-list {
  margin: 24px 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  color: #444;
  line-height: 1.5;
}

.feature-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ===== INFO GRID ===== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.info-card {
  padding: 32px;
  background: var(--gray-bg);
  border-top: 3px solid var(--green);
}

.info-card-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.info-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.info-card p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.6;
}

/* ===== GALLERY PAGE ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 24px; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact-detail-text h4 {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 4px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}

.contact-detail-text p,
.contact-detail-text a {
  font-size: 0.97rem;
  color: var(--dark);
  line-height: 1.6;
}

.contact-form-wrapper h2 { margin-bottom: 28px; }

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  outline: none;
  font-size: 0.95rem;
  font-family: 'Lato', sans-serif;
  background: #fff;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green);
}

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

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

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 24px; right: 32px;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }

/* ===== PRICE TABLE ===== */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
}

.price-table th {
  background: var(--green);
  color: #fff;
  padding: 14px 20px;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  color: #444;
}

.price-table tr:nth-child(even) td { background: var(--gray-bg); }

.price-table .price-cell {
  font-weight: 700;
  color: var(--green);
  font-size: 1rem;
}

/* ===== ICON (SVG replacement for emoji) ===== */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1.5px solid rgba(255,255,255,0.2);
  margin-bottom: 20px;
  flex-shrink: 0;
}

.icon svg {
  width: 22px;
  height: 22px;
  stroke: rgba(255,255,255,0.8);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-dark {
  border-color: var(--green);
}
.icon-dark svg {
  stroke: var(--green);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(-32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleUp {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

.anim-fade-up   { animation: fadeUp 0.8s ease both; }
.anim-fade-in   { animation: fadeIn 1s ease both; }
.anim-slide-r   { animation: slideRight 0.8s ease both; }
.anim-scale-up  { animation: scaleUp 0.7s ease both; }

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1), transform 0.75s cubic-bezier(0.16,1,0.3,1);
}
.reveal.from-left  { transform: translateX(-40px); }
.reveal.from-right { transform: translateX(40px); }
.reveal.scale      { transform: scale(0.93); }
.reveal.revealed   { opacity: 1; transform: none; }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ===== BOOKING OVERLAY BUTTON ===== */
.booking-online-bar {
  background: var(--green);
  text-align: center;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.booking-online-bar p {
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}

.booking-online-bar a {
  background: #fff;
  color: var(--green);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 28px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.booking-online-bar a:hover { background: var(--dark); color: #fff; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f0f0f0; }
::-webkit-scrollbar-thumb { background: var(--green); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .sections-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .about { grid-template-columns: 1fr; gap: 50px; }
  .about-image { order: -1; }
  .rooms-grid { grid-template-columns: 1fr 1fr; }
  .facilities-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col.reverse { direction: ltr; }
  .info-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide, .gallery-item.tall { grid-column: auto; grid-row: auto; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile-open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--dark);
    padding: 24px 40px 40px;
    gap: 0;
  }
  .nav-mobile-open .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid #2a2a2a;
    font-size: 0.85rem;
  }
  .nav-reserve { margin-top: 16px; }
}

@media (max-width: 640px) {
  .nav { padding: 0 20px; }
  .hero-content { padding-bottom: 180px; }
  .booking-form { flex-direction: column; }
  .booking-field { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .booking-form .btn { padding: 18px; }
  .sections-grid { grid-template-columns: 1fr; }
  .rooms-grid { grid-template-columns: 1fr; }
  .facilities-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .rooms-preview .header { flex-direction: column; align-items: flex-start; gap: 16px; }
}
