/* ──────────────────────────────────────────
   BEACH ROAD INLAND RESORT HOTEL – Stylesheet
   ────────────────────────────────────────── */

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

:root {
  --teal:        #1a3a28;   /* Forest green – primary brand */
  --teal-dark:   #0f2319;   /* Deep forest */
  --teal-light:  #e0ebe4;   /* Sage mist */
  --gold:        #b8943f;   /* Champagne gold */
  --gold-light:  #f5ecd8;   /* Warm ivory gold */
  --sand:        #faf6ee;   /* Ivory */
  --dark:        #1a1208;   /* Near black – warm */
  --mid:         #6b6259;   /* Warm stone */
  --light:       #faf6ee;   /* Ivory */
  --white:       #ffffff;
  --shadow-sm:   0 1px 4px rgba(26,18,8,.06), 0 1px 2px rgba(26,18,8,.04);
  --shadow-md:   0 4px 20px rgba(26,18,8,.08);
  --shadow-lg:   0 12px 48px rgba(26,18,8,.12);
  --radius:      2px;
  --radius-lg:   4px;
  --transition:  .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

.section { padding: 112px 0; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 400; line-height: 1.15; }

.section-label {
  display: inline-block;
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-label.center, .center { text-align: center; }
.section-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: .01em;
}
.section-title.center { text-align: center; }
.section-desc {
  max-width: 560px;
  margin: 0 auto 56px;
  text-align: center;
  color: var(--mid);
  font-size: 1.05rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: 0;
  font-size: .72rem;
  font-weight: 500;
  font-family: 'Jost', sans-serif;
  letter-spacing: .2em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,58,40,.30);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--teal);
  border-color: var(--white);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--teal-dark);
}
.btn-sm { padding: 9px 24px; font-size: .68rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── LOGO IMAGE ── */
/*
  Three-state scheme for a white-background PNG logo:
  1. Transparent navbar (dark hero bg)   → frosted glass pill — logo original colors visible
  2. Scrolled navbar   (white bg)        → teal monochrome blend via sepia+hue-rotate
  3. Footer            (dark bg)         → white rounded card container — logo original colors
*/

/* State 1 – transparent navbar: glass pill wraps the logo */
.nav-logo {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  padding: 5px 16px 5px 10px;
  transition: background var(--transition), border-color var(--transition),
              padding var(--transition), backdrop-filter var(--transition);
}
.nav-logo-img {
  height: 40px;
  width: auto;
  display: block;
  filter: none;  /* show original logo colors on glass pill */
  transition: filter var(--transition), height var(--transition);
}

/* State 2 – scrolled navbar: teal monochrome to match theme (#0d9488) */
.navbar.scrolled .nav-logo {
  background: transparent;
  border-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 0;
}
.navbar.scrolled .nav-logo-img {
  height: 36px;
  /* sepia → hue-rotate converts all colours to teal tones */
  filter: sepia(1) hue-rotate(145deg) saturate(2) brightness(0.82);
}

/* State 3 – footer: white rounded card so logo is readable on dark bg */
.footer-logo-img {
  height: 44px;
  width: auto;
  display: block;
  filter: none;  /* preserve original logo colours */
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: var(--white);
  padding: 12px 0;
  box-shadow: var(--shadow-md);
}
.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* nav-logo container styles defined above in LOGO IMAGE section */

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  padding: 8px 14px;
  border-radius: 0;
  transition: var(--transition);
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,.15); }
.navbar.scrolled .nav-link { color: var(--mid); }
.navbar.scrolled .nav-link:hover { color: var(--teal); background: var(--teal-light); }

.btn-nav {
  background: var(--teal);
  color: var(--white) !important;
  border-radius: 0;
  padding: 10px 24px;
}
.btn-nav:hover { background: var(--teal-dark) !important; }

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

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('images/pool.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(15,35,25,0.68) 0%, rgba(15,35,25,0.82) 100%),
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(26,58,40,.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 80% 20%, rgba(184,148,63,.08) 0%, transparent 50%);
}
/* Decorative wave shapes */
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 120px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 120px 24px 160px;
  max-width: 760px;
}
.hero-tagline {
  font-size: .65rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: .01em;
  text-shadow: 0 2px 24px rgba(0,0,0,.18);
}
.hero-subtitle {
  font-size: 1rem;
  letter-spacing: .04em;
  color: rgba(255,255,255,.75);
  margin-bottom: 44px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.6);
  font-size: .75rem;
  letter-spacing: .1em;
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255,255,255,.5);
  border-bottom: 2px solid rgba(255,255,255,.5);
  transform: rotate(45deg);
  animation: scrollBounce 1.6s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: .5; }
  50%       { transform: rotate(45deg) translateY(6px); opacity: 1; }
}

/* ── HIGHLIGHTS STRIP ── */
.highlights {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 10;
}
.highlights-grid {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 2px solid var(--gold);
}
.highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 36px 16px;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mid);
  border-right: 1px solid #e8e0d4;
  transition: var(--transition);
  text-align: center;
}
.highlight-item:last-child { border-right: none; }
.highlight-item:hover { color: var(--teal); background: var(--teal-light); }
.highlight-icon {
  font-size: 1.6rem;
  color: var(--teal);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-light);
  border-radius: 50%;
}

/* ── ABOUT ── */
.about { background: var(--sand); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
  height: 500px;
}
.about-img {
  position: absolute;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background-size: cover;
  background-position: center;
}
.about-img-1 {
  width: 75%;
  height: 70%;
  top: 0; left: 0;
  background-image: url('images/client_happy_thoughts.jpg');
  background-size: cover;
  background-position: center;
}
.about-img-2 {
  width: 60%;
  height: 55%;
  bottom: 0; right: 0;
  background-image: url('images/family_enjoying.jpg');
  background-size: cover;
  background-position: center;
}
.about-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 28px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.about-badge strong { display: block; font-size: 2.5rem; font-family: 'Cormorant Garamond', serif; color: var(--teal); line-height: 1; }
.about-badge span   { font-size: .8rem; font-weight: 600; color: var(--mid); text-transform: uppercase; letter-spacing: .08em; }

.about-text .section-title,
.about-text .section-label { text-align: left; }
.about-text p {
  color: var(--mid);
  margin-bottom: 20px;
}
.about-stats {
  display: flex;
  gap: 40px;
  margin: 32px 0;
}
.stat strong { display: block; font-size: 2rem; font-family: 'Cormorant Garamond', serif; color: var(--teal); }
.stat span   { font-size: .8rem; color: var(--mid); font-weight: 500; }

/* ── AMENITIES ── */
.amenities { background: var(--white); }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.amenity-card {
  background: var(--white);
  border: 1px solid #e8e0d4;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.amenity-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.amenity-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.amenity-card:hover::before { transform: scaleX(1); }

.amenity-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.amenity-icon-wrap svg { width: 32px; height: 32px; }
.amenity-icon-wrap.pool       { background: #e0f2fe; color: #0284c7; }
.amenity-icon-wrap.rooms      { background: var(--teal-light); color: var(--teal); }
.amenity-icon-wrap.hall       { background: #fce7f3; color: #be185d; }
.amenity-icon-wrap.restaurant { background: var(--gold-light); color: var(--gold); }
.amenity-icon-wrap.karaoke    { background: #ede9fe; color: #7c3aed; }

.amenity-card:last-child {
  grid-column: span 2; /* centers the 5th card in a 3-col grid */
  max-width: 400px;
  justify-self: center;
}
.amenity-card h3 {
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: .02em;
  margin-bottom: 12px;
  color: var(--dark);
}
.amenity-card p { color: var(--mid); font-size: .95rem; }

/* ── PHOTO GALLERY ── */
.gallery { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #e2e8f0;
}
.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.gallery-item.gi-tall img { height: 100%; min-height: 492px; }
.gallery-item.gi-wide     { grid-column: span 2; }
.gallery-item.gi-wide img { height: 240px; }
.gallery-item.gi-tall     { grid-row: span 2; }
.gallery-item:hover img   { transform: scale(1.06); }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 16px 14px;
  background: linear-gradient(to top, rgba(15,35,25,0.85) 0%, transparent 100%);
  color: var(--white);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s ease, transform .3s ease;
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.gi-tall img { min-height: 340px; }
}
@media (max-width: 500px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.gi-tall  { grid-row: span 1; }
  .gallery-item.gi-wide  { grid-column: span 1; }
  .gallery-item.gi-tall img { min-height: 220px; }
}

/* ── ROOMS ── */
.rooms { background: var(--sand); }
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 32px;
}
.room-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.room-card.featured { border: 1px solid var(--gold); }

.room-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}
.room-standard {
  background-image: url('images/two_queenbed.jpg');
  background-size: cover;
  background-position: center;
}
.room-deluxe {
  background-image: url('images/two queen bed.jpg');
  background-size: cover;
  background-position: center;
}
.room-family {
  background-image: url('images/room prices.jpg');
  background-size: cover;
  background-position: center;
}

.room-info { padding: 24px; }
.room-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.room-header h3 { font-size: 1.15rem; }
.room-badge {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  background: #dcfce7;
  color: #166534;
}
.room-badge.featured { background: var(--gold-light); color: var(--dark); }
.room-info > p { color: var(--mid); font-size: .9rem; margin-bottom: 16px; }
.room-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 20px;
  font-size: .85rem;
  color: var(--mid);
}
.rooms-note {
  text-align: center;
  color: var(--mid);
  font-size: .95rem;
}
.rooms-note strong { color: var(--teal-dark); }

/* ── DINING ── */
.dining { background: var(--white); }
.dining-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.dining-text .section-title,
.dining-text .section-label { text-align: left; }
.dining-text p { color: var(--mid); margin-bottom: 16px; }
.dining-features { display: flex; flex-direction: column; gap: 16px; margin: 28px 0; }
.dining-feature {
  display: flex;
  align-items: center;
  gap: 16px;
}
.df-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-light);
  color: var(--gold);
  border-radius: 50%;
}
.dining-feature strong { display: block; font-size: .95rem; color: var(--dark); }
.dining-feature span   { font-size: .875rem; color: var(--mid); }
.dining-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: 440px;
}
.d-img {
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
}
.d-img-1 {
  grid-row: span 2;
  background-image: url('images/restaurant.jpg');
  background-size: cover;
  background-position: center;
}
.d-img-2 {
  background-image: url('images/client_having_fun.jpg');
  background-size: cover;
  background-position: center;
}

/* ── EVENTS ── */
.events { padding: 0; }
.events-bg {
  background: linear-gradient(160deg, #0f2319 0%, #1a3a28 55%, #122b1d 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.events-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40zm0-40h2l-2 2V0zm0 4l4-4h2l-6 6V4zm0 4l8-8h2L40 10V8zm0 4L52 0h2L40 14v-2zm0 4L56 0h2L40 18v-2zm0 4L60 0h2L40 22v-2zm0 4L64 0h2L40 26v-2zm0 4L68 0h2L40 30v-2zm0 4L72 0h2L40 34v-2zm0 4L76 0h2l-2 2-34 34v-2zm4 4L80 0h2L44 42l-4-2zm4 4L80 4h2L48 46l-4-2zm4 4L80 8h2L52 50l-4-2zm4 4L80 12h2L56 54l-4-2zm4 4L80 16h2L60 58l-4-2zm4 4L80 20h2L64 62l-4-2zm4 4L80 24h2L68 66l-4-2zm4 4L80 28h2L72 70l-4-2zm4 4L80 32h2L76 74l-4-2zm4 4L80 36h2L80 40v2l-4-2zm0 4l4 4v2l-4-4v-2zm0 4l4 4v2l-4-4v-2zm0 4l4 4v2l-4-4v-2z'/%3E%3C/g%3E%3C/svg%3E");
}
.section-title.light,
.section-label.light,
.section-desc.light { color: var(--white); }
.section-desc.light { color: rgba(255,255,255,.75); }
.events .section-label { color: var(--gold-light); }

.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.event-item {
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  color: var(--white);
  transition: var(--transition);
}
.event-item:hover {
  background: rgba(255,255,255,.15);
  transform: translateY(-4px);
}
.event-icon {
  font-size: 1.8rem;
  margin-bottom: 20px;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  color: var(--white);
}
.event-item h3 { font-size: 1.25rem; font-weight: 400; letter-spacing: .02em; margin-bottom: 12px; }
.event-item p  { font-size: .9rem; color: rgba(255,255,255,.75); }
.events-bg .btn-outline-white { display: block; width: fit-content; margin: 0 auto; }

/* ── CONTACT ── */
.contact { background: var(--sand); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info h3 {
  font-size: 1.4rem;
  margin-bottom: 28px;
  color: var(--dark);
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.c-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-light);
  color: var(--gold);
  border-radius: 50%;
}
.contact-item strong { display: block; font-size: .62rem; text-transform: uppercase; letter-spacing: .14em; color: var(--gold); margin-bottom: 3px; }
.contact-item span, .contact-item a { font-size: .95rem; color: var(--mid); }
.contact-item a:hover { color: var(--teal); }

.social-links { margin-top: 36px; }
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  transition: var(--transition);
}
.social-btn svg { width: 18px; height: 18px; }
.social-btn.facebook {
  background: #1877f2;
  color: var(--white);
}
.social-btn.facebook:hover {
  background: #0d65d9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(24,119,242,.4);
}

/* ── FORM ── */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-group:last-of-type { margin-bottom: 24px; }
label {
  font-size: .65rem;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: .12em;
  text-transform: uppercase;
}
input, select, textarea {
  font-family: 'Jost', sans-serif;
  font-size: .95rem;
  padding: 11px 16px;
  border: 1px solid #d8d0c4;
  border-radius: 0;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,148,63,.12);
}
textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px 20px;
  background: #dcfce7;
  color: #166534;
  border-radius: 10px;
  font-weight: 600;
  text-align: center;
}
.form-success.show { display: block; }

/* ── FOOTER ── */
.footer { background: #0c1e14; color: rgba(255,255,255,.65); padding: 72px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo {
  display: inline-block;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 12px;
  padding: 10px 18px;
  margin-bottom: 20px;
}
.footer-logo .logo-main { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 400; color: var(--white); }
.footer-logo .logo-sub  { font-size: .6rem; letter-spacing: .12em; color: rgba(255,255,255,.5); }
/* image logo replaces the text spans — white card container for dark footer */
.footer-brand p  { font-size: .9rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social {
  display: inline-flex;
  padding: 10px;
  background: rgba(255,255,255,.08);
  border-radius: 10px;
  color: rgba(255,255,255,.75);
  transition: var(--transition);
}
.footer-social:hover { background: #1877f2; color: var(--white); }
.footer-links h4, .footer-amenities h4, .footer-hours h4 {
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 22px;
}
.footer-links ul li, .footer-amenities ul li {
  margin-bottom: 10px;
  font-size: .9rem;
}
.footer-amenities ul li i {
  color: var(--gold-light);
  opacity: .75;
  width: 16px;
  text-align: center;
  margin-right: 6px;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-hours ul { display: flex; flex-direction: column; gap: 10px; }
.footer-hours li {
  display: flex;
  justify-content: space-between;
  font-size: .875rem;
  gap: 12px;
}
.footer-hours li span:last-child { color: var(--white); font-weight: 500; }
.footer-bottom {
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-bottom a { color: var(--gold-light); }
.footer-bottom a:hover { text-decoration: underline; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-grid, .dining-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image-wrap { height: 360px; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .amenity-card:last-child { grid-column: span 1; max-width: none; justify-self: auto; }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .highlights-grid { grid-template-columns: repeat(3, 1fr); }
  .highlight-item:nth-child(4),
  .highlight-item:nth-child(5) { border-top: 1px solid #e2e8f0; }
  .rooms-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .about-stats { gap: 24px; }
  .dining-images { height: 300px; }

  /* nav */
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #0c1e14;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    z-index: 999;
  }
  .nav-menu.open { display: flex; }
  .nav-menu .nav-link { font-size: 1.2rem; color: var(--white) !important; }
  .nav-menu .nav-link:hover { background: rgba(255,255,255,.1) !important; }
  .nav-menu .btn-nav { margin-top: 8px; }
}

@media (max-width: 560px) {
  .highlights-grid { grid-template-columns: 1fr 1fr; }
  .highlight-item:nth-child(5) { grid-column: span 2; border-right: none; border-top: 1px solid #e2e8f0; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 280px; justify-content: center; }
  .events-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .amenities-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   BLOG PAGE
══════════════════════════════════════════ */

/* Page hero (smaller than main hero) */
.page-hero {
  position: relative;
  height: 320px;
  background: linear-gradient(160deg, var(--teal-dark) 0%, #1a3a28 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: 72px;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/function_hall.jpg') center/cover no-repeat;
  opacity: 0.22;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15,35,25,.65) 0%, rgba(15,35,25,.88) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
}
.page-hero-content .hero-tagline {
  font-size: .65rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 12px;
}
.page-hero-content .hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
}
.page-hero-content .hero-subtitle {
  font-size: 1rem;
  opacity: .88;
  max-width: 520px;
}

/* Blog layout */
.blog-section { background: var(--sand); }
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

/* Post card */
.blog-post-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
  overflow: hidden;
  margin-bottom: 32px;
}
.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px 0;
}
.blog-tag {
  background: #e7f3ff;
  color: #1877f2;
  font-size: .75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.blog-date {
  font-size: .82rem;
  color: var(--mid);
}

/* Facebook embed wrapper */
.fb-embed-wrap {
  padding: 20px 24px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.fb-embed-wrap .fb-post { width: 100% !important; max-width: 100%; }
.fb-embed-wrap .fb-post > span { width: 100% !important; }
.fb-fallback-link {
  display: inline-block;
  margin-top: 12px;
  color: #1877f2;
  font-weight: 600;
  text-decoration: underline;
}

.fb-direct-link {
  padding: 0 24px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.fb-direct-link .btn svg { margin-right: 6px; }

/* Coming-soon filler */
.blog-coming-soon {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  text-align: center;
  border: 1px solid var(--teal-light);
}
.blog-coming-soon .cs-icon { font-size: 2.5rem; margin-bottom: 16px; }
.blog-coming-soon h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 10px;
}
.blog-coming-soon p {
  color: var(--mid);
  margin-bottom: 24px;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

/* Sidebar */
.blog-sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.sidebar-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: .04em;
  color: var(--dark);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--teal-light);
}
.sidebar-logo { margin-bottom: 14px; }
.sidebar-widget p { font-size: .88rem; color: var(--mid); line-height: 1.6; }
.sidebar-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.sidebar-links a {
  font-size: .9rem;
  color: var(--dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background .2s, color .2s;
}
.sidebar-links a:hover { background: var(--teal-light); color: var(--teal-dark); }

/* Button size variant */
.btn-sm { padding: 8px 18px; font-size: .85rem; }

/* Blog page responsive */
@media (max-width: 900px) {
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
}
@media (max-width: 560px) {
  .blog-sidebar { grid-template-columns: 1fr; }
  .page-hero { height: 240px; }
  .fb-embed-wrap { padding: 16px; }
}
