/* Premium Black & Gold Theme */
:root {
  --primary-black: #000000;
  --secondary-black: #111111;
  --tertiary-black: #1a1a1a;
  --accent-gold: #d4af37;
  --accent-light-gold: #f4e6a7;
  --accent-dark-gold: #b8941f;
  --white: #ffffff;
  --off-white: #f8f8f8;
  --text-light: #ffffff;
  --text-gold: #d4af37;
  --text-medium: #cccccc;
  --text-dim: #999999;
  --border-dark: #333333;
  --border-gold: #d4af37;
  --shadow-dark: rgba(0, 0, 0, 0.5);
  --shadow-gold: rgba(212, 175, 55, 0.3);
  --gradient-black: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4e6a7 100%);
  --gradient-black-gold: linear-gradient(135deg, #000000 0%, #1a1a1a 70%, #d4af37 100%);
}

/* Modern Typography */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *::before, *::after { box-sizing: inherit; }

body {
  margin: 0;
  color: var(--text-light);
  background-color: var(--primary-black);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--text-light);
  line-height: 1.3;
  margin: 0 0 1rem 0;
  font-weight: 600;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p { 
  margin: 0 0 1.5rem 0; 
  color: var(--text-medium);
  font-size: 1.1rem;
  line-height: 1.7;
}

img { 
  max-width: 100%; 
  height: auto; 
  display: block;
  border-radius: 12px;
}

.container {
  width: min(1200px, 90%);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Modern Layout Utilities */
.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: 2px;
}

/* Modern Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border-dark);
  box-shadow: 0 2px 20px var(--shadow-dark);
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
  transition: padding 0.3s ease;
}

.logo {
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: translateY(-2px);
}

.logo span {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--text-light);
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.main-nav a {
  text-decoration: none;
  color: var(--text-light);
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  transition: all 0.3s ease;
}

.main-nav a:not(.btn):hover {
  color: var(--accent-gold);
}

.main-nav a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: width 0.3s ease;
}

.main-nav a:not(.btn):hover::after {
  width: 100%;
}

/* Modern Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover { 
  transform: translateY(-3px); 
  box-shadow: 0 10px 30px var(--shadow-medium);
}

.btn-gold {
  background: var(--gradient-gold);
  color: var(--primary-black);
  box-shadow: 0 4px 15px var(--shadow-gold);
}

.btn-gold:hover { 
  box-shadow: 0 10px 30px var(--shadow-gold);
  transform: translateY(-3px) scale(1.02);
}

.btn-outline-gold {
  color: var(--accent-gold);
  border: 2px solid var(--accent-gold);
  background: transparent;
  box-shadow: 0 4px 15px var(--shadow-gold);
}

.btn-outline-gold:hover {
  color: var(--primary-black);
  background: var(--gradient-gold);
  border-color: var(--accent-gold);
  transform: translateY(-3px) scale(1.02);
}

.btn-lg { 
  padding: 1.2rem 2.5rem; 
  font-size: 1.1rem;
}

/* Modern Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(26, 26, 26, 0.6) 100%);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    45deg,
    rgba(212, 175, 55, 0.2) 0%,
    transparent 25%,
    transparent 75%,
    rgba(212, 175, 55, 0.2) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--white);
  padding: 2rem;
  max-width: 900px;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  color: var(--white);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.hero .subheading {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Modern Card Components */
.card {
  background: var(--secondary-black);
  border-radius: 20px;
  box-shadow: 0 8px 30px var(--shadow-dark);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--border-dark);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px var(--shadow-gold);
  border-color: var(--accent-gold);
}

/* Modern About Section */
.about {
  background: var(--gradient-black);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-media {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 50px var(--shadow-medium);
}

.about-media::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-gold);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.about-media:hover::before {
  opacity: 0.2;
}

.about-media img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.about-media:hover img {
  transform: scale(1.05);
}

.about-content {
  padding: 2rem 0;
}

.about-content h2 {
  margin-bottom: 2rem;
  color: var(--text-light);
}

.about-content p { 
  font-size: 1.1rem; 
  margin-bottom: 1.5rem;
  color: var(--text-medium);
}

/* Location */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.location-info h3 {
  color: var(--teal-900);
  margin-bottom: 1rem;
}

.location-address {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--teal-900);
}

.contact-info {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(15, 48, 54, 0.12);
}

.contact-info div {
  margin-bottom: 0.5rem;
  color: var(--teal-900);
}

.location-map iframe {
  box-shadow: 0 10px 24px rgba(15, 48, 54, 0.15);
}

/* Modern Amenities Section */
.amenities {
  background: var(--secondary-black);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.amenity {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: 20px;
  background: var(--tertiary-black);
  border: 1px solid var(--border-dark);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.amenity::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-gold);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.amenity:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px var(--shadow-gold);
  border-color: var(--accent-gold);
}

.amenity:hover::before {
  opacity: 0.1;
}

.amenity .icon {
  color: var(--accent-gold);
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.amenity:hover .icon {
  transform: scale(1.1);
}

.amenity .icon svg { 
  width: 100%; 
  height: 100%; 
}

.amenity-label { 
  color: var(--text-light); 
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
  z-index: 2;
}

/* Modern Rooms Section */
.rooms {
  background: var(--gradient-black);
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.room-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 40px var(--shadow-dark);
  background: var(--secondary-black);
  transition: all 0.4s ease;
  border: 1px solid var(--border-dark);
  position: relative;
}

.room-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-gold);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.room-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px var(--shadow-gold);
  border-color: var(--accent-gold);
}

.room-card:hover::before {
  opacity: 0.1;
}

.room-image {
  position: relative;
  height: 280px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.room-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
}

.room-card:hover .room-image {
  transform: scale(1.05);
}

.room-content { 
  padding: 2rem;
  position: relative;
  z-index: 2;
}

.room-content h3 { 
  margin-bottom: 0.5rem;
  color: var(--text-light);
  font-size: 1.4rem;
}

.price { 
  color: var(--accent-gold); 
  font-weight: 700; 
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

/* Modern Gallery Section */
.gallery {
  background: var(--secondary-black);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.gallery-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 30px var(--shadow-dark);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid var(--border-dark);
}

.gallery-grid img:hover { 
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px var(--shadow-gold);
  border-color: var(--accent-gold);
}

/* Modern Footer */
.site-footer {
  background: var(--gradient-primary);
  color: var(--white);
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding: 4rem 0 2rem;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.footer-heading { 
  color: var(--white); 
  font-weight: 700; 
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif;
}

.contact-list { 
  list-style: none; 
  padding: 0; 
  margin: 0;
}

.contact-list li { 
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  transition: color 0.3s ease;
}

.contact-list li:hover {
  color: var(--accent-light-gold);
}

.socials { 
  display: flex; 
  align-items: center; 
  gap: 1.5rem; 
}

.socials a { 
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.socials a:hover { 
  color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.2);
  transform: translateY(-2px);
}

.footer-bottom { 
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

/* Utilities */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Modern Responsive Design */
@media (max-width: 1024px) {
  .container {
    width: 95%;
    padding: 0 1rem;
  }
  
  .about-grid { 
    grid-template-columns: 1fr; 
    gap: 3rem;
  }
  
  .location-grid { 
    grid-template-columns: 1fr; 
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .main-nav ul { 
    gap: 1.5rem; 
  }
  
  .header-inner { 
    padding: 1rem 0; 
  }
  
  .section { 
    padding: 4rem 0; 
  }
  
  .hero h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
  }
  
  .hero .subheading {
    font-size: 1.1rem;
  }
  
  .amenities-grid { 
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .rooms-grid { 
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }
  
  .hero-content {
    padding: 1rem;
  }
  
  .amenities-grid { 
    grid-template-columns: 1fr;
  }
  
  .amenity {
    padding: 2rem 1rem;
  }
  
  .room-content {
    padding: 1.5rem;
  }
  
  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .btn-lg {
    padding: 1rem 2rem;
  }
}

/* Dynamic background hooks (set in JS via data-bg-image attributes) */
[data-bg-image] { background-color: #dfe8e9; }

/* ============================= */
/* Room Detail Page Styles       */
/* ============================= */
.breadcrumb-wrap { padding-top: 1.5rem; padding-bottom: 0; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--teal-900);
  font-size: 0.95rem;
}
.breadcrumb a { color: var(--teal-900); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-600); }
.crumb-sep { opacity: 0.6; }

.room-detail-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 3rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.featured-image {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--border-dark);
  box-shadow: var(--shadow-dark);
  background: var(--tertiary-black);
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.featured-image img.loaded {
  opacity: 1;
}

.featured-image img.loading {
  opacity: 0;
}

.featured-image::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 3px solid var(--accent-gold);
  border-top: 3px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 1;
}

.featured-image img.loaded + .featured-image::before {
  display: none;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.thumbs {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
}
.thumbs .thumb {
  position: relative;
  width: 100%;
  height: 74px;
  border-radius: 8px;
  border: 1px solid var(--border-dark);
  box-shadow: var(--shadow-dark);
  opacity: 0.7;
  transition: all 0.2s ease;
  cursor: pointer;
  overflow: hidden;
  background: var(--tertiary-black);
}

.thumbs .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.thumbs .thumb img.loaded {
  opacity: 1;
}

.thumbs .thumb img.loading {
  opacity: 0;
}

.thumbs .thumb::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid var(--accent-gold);
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 1;
}

.thumbs .thumb img.loaded + .thumbs .thumb::before {
  display: none;
}

.thumbs .thumb:hover {
  opacity: 1;
  transform: translateY(-1px);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-gold);
}

.room-gallery {
  max-width: 100%;
}

.room-info {
  padding-left: 1rem;
  min-width: 0; /* Prevents flex item from overflowing */
}

.room-info h1 { margin-bottom: 0.25rem; }
.room-info .price { margin-bottom: 0.75rem; }
.room-info p { margin-bottom: 1rem; }

.key-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 1.2rem;
  margin: 1rem 0 1.2rem;
}
.detail-item { display: flex; gap: 0.6rem; align-items: center; }
.detail-icon { color: var(--teal-900); width: 32px; height: 32px; display: inline-grid; place-items: center; }
.detail-icon svg { width: 22px; height: 22px; }
.detail-label { font-weight: 700; color: var(--teal-900); }
.detail-value { opacity: 0.9; }

.amenities-list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.2rem; }
.amenity-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.6rem;
  border-radius: 999px;
  background: rgba(171, 148, 100, 0.08);
  color: var(--teal-900);
  border: 1px solid rgba(171, 148, 100, 0.18);
}
.amenity-pill .check { width: 18px; height: 18px; display: inline-grid; place-items: center; color: var(--gold-600); }
.amenity-pill .check svg { width: 16px; height: 16px; }

/* Availability Calendar */
.availability .calendar { margin-top: 1rem; }
.calendar-header,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.calendar-header div {
  text-align: center;
  font-weight: 700;
  color: var(--teal-900);
  background: rgba(15, 48, 54, 0.06);
  padding: 0.5rem 0.25rem;
  border-radius: 6px;
}

.calendar-cell {
  text-align: right;
  padding: 0.6rem 0.5rem;
  min-height: 64px;
  border-radius: 6px;
  border: 1px solid rgba(15, 48, 54, 0.12);
  background: #fff;
}
.calendar-cell.booked {
  background: rgba(15, 48, 54, 0.06);
  color: #6e7f82;
  border-color: rgba(15, 48, 54, 0.2);
}
.calendar-cell.unavailable { opacity: 0.6; }
.calendar-cell.selectable { cursor: pointer; }
.calendar-cell.selected-start,
.calendar-cell.selected-end {
  outline: 2px solid var(--gold-600);
  outline-offset: -2px;
  background: rgba(171, 148, 100, 0.18);
}
.calendar-cell.in-range {
  background: rgba(171, 148, 100, 0.12);
  border-color: rgba(171, 148, 100, 0.3);
}
.calendar-note { font-size: 0.9rem; opacity: 0.8; margin-top: 0.4rem; }

@media (max-width: 992px) {
  .room-detail-grid { 
    grid-template-columns: 1fr; 
    gap: 2rem;
  }
  .room-info {
    padding-left: 0;
  }
  .featured-image { height: 400px; }
  .thumbs { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .featured-image { height: 300px; }
  .thumbs { grid-template-columns: repeat(2, 1fr); }
  .thumbs .thumb { height: 60px; }
}

@media (max-width: 480px) {
  .featured-image { height: 250px; }
  .thumbs { grid-template-columns: repeat(2, 1fr); gap: 0.4rem; }
  .thumbs .thumb { height: 50px; }
}

/* ============================= */
/* Modern Booking Page Styles    */
/* ============================= */
.booking {
  background: var(--gradient-black);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.booking-form-wrap h2 { 
  margin-bottom: 1.5rem;
  color: var(--text-light);
  font-family: 'Playfair Display', serif;
}

.booking-form {
  background: var(--secondary-black);
  border: 1px solid var(--border-dark);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 15px 40px var(--shadow-dark);
}

.form-row { 
  display: grid; 
  gap: 0.8rem; 
  margin-bottom: 1.5rem; 
}

.form-row label { 
  font-weight: 600; 
  color: var(--text-light);
  font-size: 1rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border-radius: 12px;
  border: 2px solid var(--border-dark);
  background: var(--tertiary-black);
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
}

.booking-summary .summary-card {
  background: var(--secondary-black);
  border: 1px solid var(--border-dark);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px var(--shadow-dark);
  position: sticky;
  top: calc(var(--header-height, 80px) + 2rem);
}

.summary-media {
  position: relative;
  overflow: hidden;
}

.summary-media img { 
  display: block; 
  width: 100%; 
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.summary-card:hover .summary-media img {
  transform: scale(1.05);
}

.summary-body { 
  padding: 2rem; 
}

.summary-title { 
  margin: 0 0 1rem;
  color: var(--text-light);
  font-size: 1.4rem;
}

.summary-dates { 
  color: var(--text-medium); 
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.summary-breakdown { 
  color: var(--accent-gold); 
  font-weight: 700; 
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.summary-total { 
  font-size: 1.3rem; 
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

/* Calendar Styling */
.availability .calendar {
  background: var(--secondary-black);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px var(--shadow-dark);
  margin-bottom: 2rem;
  border: 1px solid var(--border-dark);
}

.calendar-header {
  margin-bottom: 1rem;
}

.calendar-header div {
  background: var(--tertiary-black);
  color: var(--text-light);
  font-weight: 600;
  padding: 0.8rem 0.5rem;
  border-radius: 8px;
}

.calendar-cell {
  background: var(--tertiary-black);
  border: 2px solid var(--border-dark);
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  color: var(--text-light);
}

.calendar-cell:hover {
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

.calendar-cell.selected-start,
.calendar-cell.selected-end {
  border-color: var(--accent-gold);
  background: var(--accent-dark-gold);
  color: var(--primary-black);
}

@media (max-width: 992px) {
  .booking-grid { 
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .booking-form {
    padding: 2rem;
  }
}

/* ============================= */
/* Admin Calendar Styles         */
/* ============================= */
.admin-calendar { overflow: auto; }
.admin-cal { width: 100%; border-collapse: collapse; table-layout: fixed; font-size: 0.92rem; }
.admin-cal th, .admin-cal td { border: 1px solid rgba(15, 48, 54, 0.12); padding: 6px; text-align: center; }
.admin-cal thead th { background: #fff; position: sticky; top: 0; z-index: 1; }
.admin-cal .room-col { text-align: left; min-width: 220px; position: sticky; left: 0; background: #fff; z-index: 2; }
.admin-cal .date-col { min-width: 48px; }
.admin-cal .booked { background: rgba(171, 148, 100, 0.18); border-color: rgba(171, 148, 100, 0.35); color: var(--teal-900); }
.admin-cal .empty { background: #fff; }
.admin-cal .tag { display: block; font-weight: 700; font-size: 0.85rem; }
.admin-cal .sub { display: block; font-size: 0.78rem; opacity: 0.8; }

/* Admin modal */
.admin-modal { position: fixed; inset: 0; display: none; z-index: 100; }
.admin-modal.show { display: block; }
.admin-modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.45); }
.admin-modal__dialog { position: relative; max-width: 560px; margin: 10vh auto; background: #fff; border-radius: 10px; padding: 1rem; box-shadow: 0 20px 40px rgba(15,48,54,0.25); }
.admin-modal__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.5rem; }
.admin-modal__title { font-weight: 700; color: var(--teal-900); }
.admin-modal__close { appearance: none; border: 1px solid var(--gold-600); background: #fff; color: var(--gold-600); border-radius: 6px; padding: 0.3rem 0.6rem; cursor: pointer; }
.admin-modal__close:hover { background: var(--gold-600); color: #fff; }
.admin-modal__body { line-height: 1.5; }


