/* ============================================================
   SHREEJI HOTEL — Design System
   ============================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Raleway:wght@300;400;500;600;700&display=swap');

/* ---- CSS Custom Properties ---- */
:root {
  --navy:       #0a1628;
  --navy-light: #132240;
  --gold:       #c9a96e;
  --gold-light: #e0c98f;
  --gold-dark:  #a88b4a;
  --cream:      #f5f0e8;
  --cream-dark: #e8dfd2;
  --white:      #ffffff;
  --black:      #000000;
  --gray:       #8898aa;
  --gray-light: #cbd5e0;
  --text-dark:  #1a202c;
  --text-body:  #4a5568;
  --overlay:    rgba(10, 22, 40, 0.65);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Raleway', 'Segoe UI', sans-serif;

  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow-md:  0 4px 20px rgba(0,0,0,.12);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.18);
  --shadow-gold: 0 4px 24px rgba(201,169,110,.25);

  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  20px;

  --transition: .35s cubic-bezier(.25,.46,.45,.94);
  --transition-fast: .2s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition-fast); }
ul { list-style: none; }
button, input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  border: none;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); color: var(--text-dark); line-height: 1.25; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.section-title { margin-bottom: 1rem; }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 620px;
  margin: 0 auto 3rem;
}
.text-center { text-align: center; }

/* ---- Container ---- */
.container { width: 90%; max-width: 1200px; margin: 0 auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2.2rem;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .5px;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,.2) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform .6s;
}
.btn:hover::after { transform: translateX(100%); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(201,169,110,.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--navy);
  color: var(--gold);
}
.btn-dark:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(10, 22, 40, 0.97);
  padding: .8rem 0;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%; max-width: 1200px; margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
}
.nav-logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem; font-weight: 700;
  color: var(--white);
}
.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem; font-weight: 600;
  color: var(--white);
}
.nav-logo-text span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .5px;
  position: relative;
  padding: .25rem 0;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  margin-left: .5rem;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  z-index: 1100;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2.5px;
  background: var(--white);
  border-radius: 4px;
  transition: all var(--transition-fast);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  0%   { transform: scale(1.05); }
  100% { transform: scale(1.15); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,22,40,.7) 0%, rgba(10,22,40,.5) 50%, rgba(10,22,40,.8) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(201,169,110,.15);
  border: 1px solid rgba(201,169,110,.4);
  border-radius: 50px;
  padding: .5rem 1.5rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}
.hero-badge-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.hero-badge-text {
  font-size: .8rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-light);
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
  animation: fadeUp .8s ease-out .3s both;
}
.hero h1 span { color: var(--gold); }
.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,.8);
  max-width: 600px; margin: 0 auto 2.5rem;
  animation: fadeUp .8s ease-out .6s both;
}
.hero-buttons {
  display: flex; gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp .8s ease-out .9s both;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}
.hero-scroll-indicator span {
  display: block;
  width: 28px; height: 44px;
  border: 2px solid rgba(201,169,110,.6);
  border-radius: 20px;
  position: relative;
}
.hero-scroll-indicator span::after {
  content: '';
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 8px;
  background: var(--gold);
  border-radius: 4px;
  transform: translateX(-50%);
  animation: scrollDot 2s infinite;
}
@keyframes scrollDot {
  0%   { opacity: 1; top: 8px; }
  100% { opacity: 0; top: 24px; }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40%  { transform: translateX(-50%) translateY(-10px); }
  60%  { transform: translateX(-50%) translateY(-5px); }
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  height: 50vh; min-height: 350px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.page-hero .hero-bg { animation: heroZoom 25s ease-in-out infinite alternate; }
.page-hero .hero-overlay {
  background: linear-gradient(180deg, rgba(10,22,40,.75) 0%, rgba(10,22,40,.6) 50%, rgba(10,22,40,.85) 100%);
}
.page-hero-content {
  position: relative; z-index: 2;
  text-align: center;
}
.page-hero-content h1 {
  color: var(--white);
  animation: fadeUp .8s ease-out .2s both;
}
.page-hero-content p {
  color: rgba(255,255,255,.75);
  font-size: 1.1rem;
  margin-top: .75rem;
  animation: fadeUp .8s ease-out .4s both;
}
.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  margin-top: 1rem;
  font-size: .85rem;
  animation: fadeUp .8s ease-out .5s both;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,.5); }

/* ============================================================
   SECTIONS
   ============================================================ */
section { padding: 5rem 0; }
.section-light { background: var(--white); }
.section-cream { background: var(--cream); }
.section-dark  { background: var(--navy); }

/* ---- Highlights (Home) ---- */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.highlight-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid transparent;
}
.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,169,110,.3);
}
.highlight-icon {
  width: 70px; height: 70px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(201,169,110,.12), rgba(201,169,110,.05));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  transition: all var(--transition);
}
.highlight-card:hover .highlight-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  transform: scale(1.1) rotate(5deg);
}
.highlight-card:hover .highlight-icon svg { stroke: var(--white); }
.highlight-card h3 { margin-bottom: .75rem; }
.highlight-card p { font-size: .95rem; color: var(--gray); }

/* ---- Featured Rooms ---- */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}
.room-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.room-card-img {
  position: relative;
  height: 260px;
  overflow: hidden;
}
.room-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.room-card:hover .room-card-img img { transform: scale(1.08); }
.room-card-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--gold);
  color: var(--white);
  padding: .3rem 1rem;
  border-radius: 50px;
  font-size: .8rem; font-weight: 600;
  letter-spacing: .5px;
}
.room-card-body { padding: 1.75rem; }
.room-card-body h3 { margin-bottom: .5rem; }
.room-card-amenities {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin: 1rem 0;
}
.room-card-amenities span {
  display: inline-flex; align-items: center; gap: .3rem;
  background: var(--cream);
  padding: .3rem .75rem;
  border-radius: 50px;
  font-size: .8rem; color: var(--text-body);
}
.room-card-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--cream-dark);
}
.room-price {
  font-family: var(--font-heading);
  font-size: 1.4rem; font-weight: 700;
  color: var(--gold-dark);
}
.room-price small { font-size: .8rem; font-weight: 400; color: var(--gray); }

/* ---- Testimonials ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testimonial-card::before {
  content: '"';
  position: absolute; top: 1rem; right: 1.5rem;
  font-family: var(--font-heading);
  font-size: 5rem;
  color: rgba(201,169,110,.15);
  line-height: 1;
}
.testimonial-stars { color: var(--gold); font-size: .9rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-text { font-size: .95rem; color: var(--text-body); margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author {
  display: flex; align-items: center; gap: 1rem;
}
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem; font-weight: 700;
  color: var(--white);
}
.testimonial-info h4 { font-size: .95rem; }
.testimonial-info p { font-size: .8rem; color: var(--gray); }

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: -50%; right: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,169,110,.1) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-content {
  position: relative;
  text-align: center;
  z-index: 2;
}
.cta-content h2 { color: var(--white); margin-bottom: .75rem; }
.cta-content p { color: rgba(255,255,255,.7); max-width: 500px; margin: 0 auto 2rem; }

/* ---- Stats bar ---- */
.stats-bar {
  padding: 3rem 0;
  background: var(--navy);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item h3 {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: .25rem;
}
.stat-item p { color: rgba(255,255,255,.7); font-size: .9rem; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-story-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-story-img img { width: 100%; height: 100%; object-fit: cover; }
.about-story-text h2 { margin-bottom: 1rem; }
.about-story-text p { margin-bottom: 1rem; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.value-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border-bottom: 3px solid transparent;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--gold);
}
.value-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.value-card h3 { margin-bottom: .75rem; }
.value-card p { font-size: .9rem; color: var(--gray); }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.amenity-item {
  display: flex; align-items: center; gap: 1rem;
  background: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.amenity-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}
.amenity-item .amenity-icon {
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
}
.amenity-item span { font-weight: 500; font-size: .95rem; }

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 3rem;
}
.filter-btn {
  padding: .6rem 1.5rem;
  border-radius: 50px;
  background: var(--cream);
  color: var(--text-body);
  cursor: pointer;
  font-weight: 500;
  font-size: .9rem;
  transition: all var(--transition-fast);
  border: 2px solid transparent;
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold-dark); }
.filter-btn.active {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,22,40,.8) 100%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex; align-items: flex-end;
  padding: 1.5rem;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span {
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 10000;
  display: none;
  align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .3s;
}
.lightbox.active { display: flex; opacity: 1; }
.lightbox img {
  max-width: 90%; max-height: 85vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 0 60px rgba(0,0,0,.5);
}
.lightbox-close {
  position: absolute; top: 1.5rem; right: 2rem;
  font-size: 2.5rem; color: var(--white);
  cursor: pointer;
  transition: color var(--transition-fast);
  background: none;
}
.lightbox-close:hover { color: var(--gold); }

/* ============================================================
   ROOMS PAGE
   ============================================================ */
.rooms-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 2.5rem;
}
.room-detail-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.room-detail-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.room-detail-img {
  height: 280px;
  overflow: hidden;
  position: relative;
}
.room-detail-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.room-detail-card:hover .room-detail-img img { transform: scale(1.06); }
.room-detail-body { padding: 2rem; }
.room-detail-body h3 { margin-bottom: .5rem; font-size: 1.4rem; }
.room-detail-body > p { color: var(--gray); margin-bottom: 1.25rem; }
.room-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  margin-bottom: 1.5rem;
}
.room-features li {
  display: flex; align-items: center; gap: .5rem;
  font-size: .9rem;
  color: var(--text-body);
}
.room-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
}
.room-detail-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  border-top: 1px solid var(--cream-dark);
}

/* Booking Form Section */
.booking-form-section {
  background: var(--navy);
  padding: 5rem 0;
}
.booking-form {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-weight: 600;
  font-size: .9rem;
  color: var(--text-dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: .9rem 1.25rem;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--text-dark);
  transition: all var(--transition-fast);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,169,110,.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { text-align: center; margin-top: 2rem; }

/* ============================================================
   DINING PAGE
   ============================================================ */
.dining-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.dining-intro-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.dining-intro-img img { width: 100%; height: 400px; object-fit: cover; }
.dining-intro-text h2 { margin-bottom: 1rem; }
.dining-intro-text p { margin-bottom: 1rem; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.menu-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border-top: 3px solid transparent;
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--gold);
}
.menu-card-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.menu-card h3 { margin-bottom: 1rem; }
.menu-items { margin-bottom: 1rem; }
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: .5rem 0;
  border-bottom: 1px dashed var(--cream-dark);
}
.menu-item:last-child { border-bottom: none; }
.menu-item-name { font-weight: 500; font-size: .95rem; }
.menu-item-price { font-weight: 600; color: var(--gold-dark); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-card {
  display: flex; align-items: flex-start; gap: 1.25rem;
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.contact-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}
.contact-card-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, rgba(201,169,110,.15), rgba(201,169,110,.05));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-card h4 { font-size: 1rem; margin-bottom: .25rem; }
.contact-card p { font-size: .9rem; color: var(--gray); }
.contact-card a { color: var(--gold-dark); font-weight: 500; }
.contact-card a:hover { color: var(--gold); }

.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.contact-form h3 { margin-bottom: 1.5rem; }

.contact-map {
  margin-top: 3rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.contact-map iframe {
  width: 100%; height: 350px;
  border: none;
}

/* Social links */
.social-links {
  display: flex; gap: 1rem; margin-top: 1.5rem;
}
.social-link {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-about .nav-logo { margin-bottom: 1rem; }
.footer-about p { color: rgba(255,255,255,.6); font-size: .9rem; }
.footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: .75rem;
}
.footer h4::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--gold);
}
.footer-links li { margin-bottom: .6rem; }
.footer-links a {
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  transition: all var(--transition-fast);
}
.footer-links a:hover { color: var(--gold); padding-left: 5px; }
.footer-contact li {
  display: flex; align-items: flex-start; gap: .75rem;
  margin-bottom: .75rem;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
}
.footer-contact li span:first-child { color: var(--gold); flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.5rem 0;
  text-align: center;
  color: rgba(255,255,255,.4);
  font-size: .85rem;
}
.footer-bottom a { color: var(--gold); }

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
  .nav-links {
    position: fixed; top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    transition: right var(--transition);
    box-shadow: -4px 0 20px rgba(0,0,0,.3);
  }
  .nav-links.open { right: 0; }
  .nav-toggle { display: flex; }
  .nav-cta { margin-left: 0; }

  .about-story,
  .dining-intro,
  .contact-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
}

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

  .rooms-grid,
  .rooms-detail-grid { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }

  .hero h1 { font-size: 2rem; }
  .page-hero { height: 40vh; min-height: 280px; }

  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer h4::after { left: 50%; transform: translateX(-50%); }
  .footer-about .nav-logo { justify-content: center; }
  .social-links { justify-content: center; }
}

@media (max-width: 480px) {
  .btn { padding: .75rem 1.6rem; font-size: .85rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .room-features { grid-template-columns: 1fr; }
  .booking-form { padding: 2rem 1.5rem; }
}
