/* ================================================
   Priyadarshika Hotel — Global Stylesheet
   Hostinger-ready static site
================================================ */

:root {
  --gold: #b8972a;
  --gold-light: #d4af5a;
  --gold-dark: #8a6e1a;
  --cream: #fdf6e9;
  --dark: #1a1208;
  --dark-2: #2d2010;
  --text: #3d2e0a;
  --text-muted: #7a6640;
  --white: #ffffff;
  --border: rgba(184,151,42,0.25);
  --shadow: 0 8px 40px rgba(26,18,8,0.18);
  --radius: 12px;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', 'Segoe UI', system-ui, sans-serif;
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── Typography ─────────────────────────────── */
.serif { font-family: var(--font-serif); }

h1, h2, h3 { font-family: var(--font-serif); line-height: 1.2; }

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark);
  margin-top: 0.5rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 1rem auto 0;
}

/* ─── Layout ─────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* ─── Buttons ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: all 0.25s ease;
  text-transform: uppercase;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(184,151,42,0.35);
}
.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,151,42,0.45);
}

.btn-outline {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--dark);
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

/* ─── Navbar ─────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s;
  padding: 1.25rem 0;
}
#navbar.scrolled {
  background: rgba(26, 18, 8, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  padding: 0.75rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}
.nav-logo span { display: block; font-size: 0.65rem; letter-spacing: 0.2em; color: rgba(255,255,255,0.6); text-transform: uppercase; font-family: var(--font-sans); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-dark) !important; color: var(--white) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ─── Mobile Nav ────────────────────────────── */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(26,18,8,0.98);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-top: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; }
}

/* ─── Hero ───────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.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(135deg, rgba(26,18,8,0.75) 0%, rgba(26,18,8,0.4) 60%, rgba(0,0,0,0.2) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 0 1.5rem;
}
.hero-content .eyebrow { color: var(--gold-light); margin-bottom: 1rem; }
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
  max-width: 520px;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 3;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: all 0.3s;
  cursor: pointer;
}
.hero-dot.active {
  background: var(--gold-light);
  width: 24px;
  border-radius: 4px;
}

/* ─── Stats Bar ──────────────────────────────── */
.stats-bar {
  background: var(--dark);
  padding: 2.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gold-light);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.4rem;
}
@media (max-width: 600px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── About Section ──────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-images {
  position: relative;
}
.about-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-img-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 55%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 5px solid var(--cream);
  box-shadow: var(--shadow);
}
.about-badge {
  position: absolute;
  top: 2rem;
  left: -2rem;
  background: var(--gold);
  color: var(--white);
  padding: 1.2rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}
.about-badge strong { display: block; font-size: 2rem; font-family: var(--font-serif); line-height: 1; }
.about-badge span { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.85; }
.about-text .eyebrow { margin-bottom: 0.5rem; }
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p { color: var(--text-muted); margin-bottom: 1.25rem; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
}
.about-feature::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.8rem;
}
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-images { display: none; }
}

/* ─── Services / Events Cards ────────────────── */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.event-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
  border: 1px solid var(--border);
}
.event-card:hover { transform: translateY(-8px); }
.event-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.event-card-body { padding: 1.75rem; }
.event-card-body .eyebrow { margin-bottom: 0.4rem; }
.event-card-body h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--dark);
}
.event-card-body p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.5rem; }
@media (max-width: 900px) { .events-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

/* ─── Gallery ────────────────────────────────── */
.gallery-section { background: var(--dark); }
.gallery-section .section-title { color: var(--white); }
.gallery-section .eyebrow { color: var(--gold-light); }
.gallery-section .section-sub { color: rgba(255,255,255,0.55); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px;
  gap: 12px;
}
.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}
.gallery-item:first-child { grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:first-child { grid-row: span 1; }
}

/* ─── Amenities ──────────────────────────────── */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.amenity-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.amenity-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 24px rgba(184,151,42,0.15);
  transform: translateY(-4px);
}
.amenity-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}
.amenity-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.4rem;
}
.amenity-card p { font-size: 0.85rem; color: var(--text-muted); }
@media (max-width: 900px) { .amenities-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .amenities-grid { grid-template-columns: 1fr 1fr; } }

/* ─── Testimonials ───────────────────────────── */
.testimonials-section { background: linear-gradient(135deg, #1a1208 0%, #2d2010 100%); }
.testimonials-section .eyebrow { color: var(--gold-light); }
.testimonials-section .section-title { color: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(184,151,42,0.2);
  border-radius: var(--radius);
  padding: 2rem;
}
.testimonial-stars { color: var(--gold-light); font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-quote { color: rgba(255,255,255,0.8); font-style: italic; line-height: 1.7; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; color: var(--white); font-size: 0.95rem; }
.testimonial-role { font-size: 0.8rem; color: rgba(255,255,255,0.45); }
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; } }

/* ─── CTA Banner ─────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  padding: 5rem 0;
  text-align: center;
}
.cta-section h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 2.5rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── Footer ─────────────────────────────────── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.65);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--gold-light);
  display: block;
  margin-bottom: 1rem;
}
.footer-about { font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.75rem; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(184,151,42,0.35);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  font-size: 0.85rem;
  transition: all 0.2s;
}
.social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.footer-heading {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.65rem; }
.footer-links a { font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.9rem; font-size: 0.9rem; }
.footer-contact-icon { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 0.82rem; }
.footer-bottom a:hover { color: var(--gold-light); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

/* ─── Page Hero (Inner pages) ────────────────── */
.page-hero {
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 10rem 0 5rem;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26,18,8,0.65);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); color: var(--white); margin: 0.5rem 0; }
.page-hero .eyebrow { color: var(--gold-light); }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-top: 1rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-top: 1.5rem;
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb-sep { opacity: 0.5; }

/* ─── Form Styles ────────────────────────────── */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 3rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  max-width: 780px;
  margin: 0 auto;
}
.form-title {
  font-size: 1.75rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.form-subtitle { color: var(--text-muted); margin-bottom: 2.5rem; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: span 2; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid #e5d9c4;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-divider {
  height: 1px;
  background: var(--border);
  margin: 2rem 0;
}
.form-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}
.form-section-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.package-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1rem 0;
}
.package-card {
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem;
  cursor: pointer;
  transition: all 0.2s;
}
.package-card:hover,
.package-card.selected {
  border-color: var(--gold);
  background: rgba(184,151,42,0.05);
}
.package-card h4 { font-size: 1rem; color: var(--dark); margin-bottom: 0.25rem; }
.package-card p { font-size: 0.82rem; color: var(--text-muted); }
.package-price { font-size: 1.2rem; font-weight: 700; color: var(--gold); margin-top: 0.5rem; }
.btn-submit {
  background: var(--gold);
  color: var(--white);
  padding: 1rem 3rem;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
  margin-top: 1rem;
}
.btn-submit:hover { background: var(--gold-dark); transform: translateY(-2px); }
@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .package-cards { grid-template-columns: 1fr; }
  .form-card { padding: 1.75rem; }
}

/* ─── Success toast ──────────────────────────── */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #1a6e3f;
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 9999;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  max-width: 380px;
}
.toast.show { transform: translateX(0); }
.toast-close { margin-left: auto; opacity: 0.7; cursor: pointer; font-size: 1.1rem; }

/* ─── Auth Page ──────────────────────────────── */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--dark) 0%, #2d2010 100%);
  padding: 2rem;
}
.auth-card {
  background: var(--white);
  border-radius: 16px;
  padding: 3rem;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.auth-logo {
  text-align: center;
  margin-bottom: 2rem;
}
.auth-logo h1 { font-size: 2rem; color: var(--gold-dark); }
.auth-logo span { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--text-muted); }
.auth-tabs { display: flex; margin-bottom: 2rem; border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }
.auth-tab {
  flex: 1; padding: 0.7rem;
  font-size: 0.9rem; font-weight: 600;
  text-align: center; cursor: pointer;
  transition: all 0.2s;
  color: var(--text-muted);
}
.auth-tab.active { background: var(--gold); color: var(--white); }

/* ─── Admin ──────────────────────────────────── */
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 260px;
  background: var(--dark);
  color: var(--white);
  padding: 2rem 1.5rem;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}
.admin-sidebar-logo { font-family: var(--font-serif); font-size: 1.4rem; color: var(--gold-light); margin-bottom: 0.25rem; }
.admin-sidebar-sub { font-size: 0.7rem; color: rgba(255,255,255,0.4); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 2.5rem; }
.admin-nav { list-style: none; }
.admin-nav li { margin-bottom: 0.4rem; }
.admin-nav a {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.7rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: all 0.2s;
}
.admin-nav a:hover, .admin-nav a.active { background: rgba(184,151,42,0.15); color: var(--gold-light); }
.admin-main { flex: 1; background: #f5f0e8; padding: 2rem; overflow: auto; }
.admin-header { margin-bottom: 2rem; }
.admin-header h1 { font-size: 1.75rem; color: var(--dark); }
.admin-header p { color: var(--text-muted); }
.admin-stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-bottom: 2rem; }
.admin-stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
}
.admin-stat-value { font-size: 2rem; font-weight: 700; color: var(--dark); font-family: var(--font-serif); }
.admin-stat-label { font-size: 0.82rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.25rem; }
.admin-stat-change { font-size: 0.82rem; color: #1a6e3f; margin-top: 0.25rem; }
.admin-table-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}
.admin-table-header { padding: 1.5rem; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.admin-table-header h3 { font-size: 1.1rem; color: var(--dark); }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { padding: 0.75rem 1.25rem; text-align: left; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); background: #faf5ec; border-bottom: 1px solid var(--border); }
.admin-table td { padding: 1rem 1.25rem; font-size: 0.9rem; border-bottom: 1px solid rgba(0,0,0,0.05); }
.admin-table tr:last-child td { border-bottom: none; }
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}
.badge-pending { background: #fff3cd; color: #856404; }
.badge-confirmed { background: #d1e7dd; color: #0a3622; }
.badge-cancelled { background: #f8d7da; color: #842029; }
@media (max-width: 900px) { .admin-stats-row { grid-template-columns: repeat(2, 1fr); } }

/* ─── Animations ─────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease forwards; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }

/* ─── Responsive ─────────────────────────────── */
@media (max-width: 600px) {
  .hero-title { font-size: 2.2rem; }
  .hero-btns { flex-direction: column; }
  .section { padding: 4rem 0; }
  .cta-btns { flex-direction: column; align-items: center; }
}


/* ==============================================
   FEATURED ROOMS SECTION
   Premium conversion-focused room cards
================================================ */

/* ─── Section Shell ──────────────────────────── */
.rooms-section {
  background: #f7f3ed;
  padding: 7rem 0 6rem;
  position: relative;
  overflow: hidden;
}

/* Subtle watermark texture */
.rooms-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(184,151,42,0.04) 0%, transparent 60%),
    radial-gradient(circle at 85% 20%, rgba(184,151,42,0.04) 0%, transparent 60%);
  pointer-events: none;
}

/* ─── Header ─────────────────────────────────── */
.rooms-header .section-sub {
  max-width: 600px;
}

/* ─── Grid ───────────────────────────────────── */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 0;
}

/* ─── Card ───────────────────────────────────── */
.room-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 2px 4px rgba(26,18,8,0.04),
    0 8px 24px rgba(26,18,8,0.08),
    0 20px 48px rgba(26,18,8,0.06);
  border: 1px solid rgba(184,151,42,0.12);
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  will-change: transform;
}

.room-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 4px 8px rgba(26,18,8,0.06),
    0 16px 40px rgba(26,18,8,0.14),
    0 32px 64px rgba(26,18,8,0.10);
}

/* ─── Image Wrapper ──────────────────────────── */
.room-card-img-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  flex-shrink: 0;
}

.room-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.room-card:hover .room-card-img {
  transform: scale(1.07);
}

/* Subtle gradient scrim over image */
.room-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(26, 18, 8, 0.22) 100%
  );
  pointer-events: none;
}

/* ─── Badge ──────────────────────────────────── */
.room-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(184,151,42,0.45);
  z-index: 2;
}

/* ─── Card Body ──────────────────────────────── */
.room-card-body {
  padding: 1.75rem 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 1.25rem;
}

/* ─── Name + Price Row ───────────────────────── */
.room-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.room-card-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 0.45rem;
  letter-spacing: -0.01em;
}

.room-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
  max-width: 240px;
}

/* ─── Price Block ────────────────────────────── */
.room-card-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
  padding-left: 0.5rem;
}

.room-price-from {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.1rem;
}

.room-price-amount {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
  white-space: nowrap;
}

.room-price-night {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

/* ─── Amenities Row ──────────────────────────── */
.room-amenities {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
  border-top: 1px solid rgba(184,151,42,0.12);
  border-bottom: 1px solid rgba(184,151,42,0.12);
  padding: 0.9rem 0;
  margin: 0;
  justify-content: space-between;
}

.room-amenity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  flex: 1;
  padding: 0 0.25rem;
  position: relative;
}

/* Divider between amenities */
.room-amenity + .room-amenity::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(184,151,42,0.15);
}

.amenity-svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  flex-shrink: 0;
}

.room-amenity span {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 1.2;
  white-space: nowrap;
}

/* ─── Book CTA Button ────────────────────────── */
.btn-book-room {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--gold);
  color: #fff;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  transition:
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
  box-shadow: 0 4px 16px rgba(184,151,42,0.30);
  margin-top: auto;
}

.btn-book-room svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.btn-book-room:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,151,42,0.40);
}

.btn-book-room:hover svg {
  transform: translateX(4px);
}

/* ─── Explore All CTA ────────────────────────── */
.rooms-footer {
  text-align: center;
  margin-top: 3.5rem;
}

.btn-explore-rooms {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: 2px solid var(--gold);
  color: var(--gold-dark);
  background: transparent;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  text-decoration: none;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Fill sweep on hover */
.btn-explore-rooms::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
}

.btn-explore-rooms:hover::before {
  transform: scaleX(1);
}

.btn-explore-rooms span,
.btn-explore-rooms svg {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.btn-explore-rooms:hover span,
.btn-explore-rooms:hover {
  color: #fff;
}

.btn-explore-rooms svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold-dark);
  transition: transform 0.3s ease, stroke 0.3s ease;
}

.btn-explore-rooms:hover svg {
  transform: translateX(5px);
  stroke: #fff;
}

.btn-explore-rooms:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(184,151,42,0.30);
}

/* ─── Scroll Reveal Animation ────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.34s; }

/* ─── Responsive ─────────────────────────────── */
@media (max-width: 1024px) {
  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
  .rooms-grid .room-card:last-child {
    grid-column: span 2;
    max-width: 540px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 680px) {
  .rooms-section {
    padding: 5rem 0 4rem;
  }
  .rooms-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .rooms-grid .room-card:last-child {
    grid-column: span 1;
    max-width: 100%;
  }
  .room-card-top {
    flex-direction: column;
    gap: 0.75rem;
  }
  .room-card-price {
    align-items: flex-start;
    flex-direction: row;
    align-items: baseline;
    gap: 0.35rem;
  }
  .room-price-from { display: none; }
  .room-card-desc { max-width: 100%; }
  .room-amenity span { font-size: 0.6rem; }
  .amenity-svg { width: 16px; height: 16px; }
  .btn-explore-rooms { padding: 0.9rem 1.75rem; font-size: 0.82rem; }
}

@media (max-width: 380px) {
  .room-card-body { padding: 1.35rem; }
  .room-card-name { font-size: 1.2rem; }
}

