/* ============================================
   assets/css/style.css – Paradise Resort
   Premium Gold & Dark Luxury Theme
   ============================================ */

/* === VARIABLES === */
:root {
  --gold: #C9A84C;
  --gold-light: #E5C97A;
  --gold-dark: #9E7B2E;
  --dark: #0D0D0D;
  --dark-2: #161616;
  --dark-3: #1E1E1E;
  --dark-4: #2A2A2A;
  --white: #FFFFFF;
  --off-white: #F7F5F0;
  --text-light: #B8B0A0;
  --text-muted: #6B6560;
  --border: rgba(201,168,76,0.2);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', sans-serif;
  --radius: 4px;
  --radius-lg: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.3);
  --shadow-gold: 0 4px 20px rgba(201,168,76,0.25);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* === CONTAINER === */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* === TYPOGRAPHY === */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-serif); font-weight: 400; line-height: 1.2; }
.section-label { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); font-weight: 500; display: block; margin-bottom: 12px; }
.section-title { font-size: clamp(2rem, 4vw, 3.2rem); color: var(--white); margin-bottom: 16px; }
.section-title span { color: var(--gold); font-style: italic; }
.section-subtitle { color: var(--text-light); font-size: 1.05rem; max-width: 560px; margin: 0 auto; line-height: 1.8; }
.section-header { text-align: center; margin-bottom: 64px; }
.divider { width: 60px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 24px auto; }

/* === BUTTONS === */
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--dark);
  padding: 13px 32px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--font-sans);
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  border: 1px solid var(--gold);
}
.btn-gold:hover { background: var(--gold-light); box-shadow: var(--shadow-gold); transform: translateY(-1px); }

.btn-outline-gold {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 12px 28px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--dark); }

.btn-danger { background: #c0392b; color: white; padding: 10px 20px; border-radius: var(--radius); font-size: 13px; }
.btn-danger:hover { background: #a93226; }

/* === FLASH MESSAGES === */
.flash-message {
  position: fixed; top: 80px; right: 24px; z-index: 9999;
  padding: 14px 20px; border-radius: var(--radius-lg);
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500;
  box-shadow: var(--shadow); animation: slideInRight 0.3s ease;
  max-width: 380px;
}
.flash-success { background: #1a3a2a; border: 1px solid #2ecc71; color: #2ecc71; }
.flash-error   { background: #3a1a1a; border: 1px solid #e74c3c; color: #e74c3c; }
.flash-message button { margin-left: auto; background: none; border: none; color: inherit; font-size: 18px; cursor: pointer; }

@keyframes slideInRight { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.nav-container {
  max-width: 1240px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 40px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-serif); font-size: 1.5rem;
  color: var(--white); white-space: nowrap;
}
.nav-logo .logo-icon { color: var(--gold); font-size: 1.1rem; }
.nav-logo em { color: var(--gold); font-style: italic; }

.nav-menu { display: flex; align-items: center; gap: 32px; margin-left: auto; }
.nav-menu a { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.8); font-weight: 500; position: relative; }
.nav-menu a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--gold); transition: var(--transition); }
.nav-menu a:hover, .nav-menu a.active { color: var(--gold); }
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 16px; }

/* User dropdown */
.nav-user-dropdown { position: relative; }
.btn-user {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 1px; text-transform: uppercase;
  color: rgba(255,255,255,0.85); padding: 10px 16px;
  border: 1px solid var(--border); border-radius: var(--radius);
}
.btn-user:hover { border-color: var(--gold); color: var(--gold); }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--dark-3); border: 1px solid var(--border);
  border-radius: var(--radius-lg); min-width: 200px;
  padding: 8px; opacity: 0; visibility: hidden;
  transform: translateY(-8px); transition: var(--transition);
}
.nav-user-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { display: flex; align-items: center; gap: 10px; padding: 10px 14px; font-size: 13px; border-radius: var(--radius); color: var(--text-light); }
.dropdown-menu a:hover { background: var(--dark-4); color: var(--gold); }
.dropdown-menu hr { border-color: var(--border); margin: 6px 0; }
.dropdown-menu .text-danger { color: #e74c3c !important; }

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.7) 100%),
              url('https://images.unsplash.com/photo-1520250497591-112f2f40a3f4?w=1920') center/cover no-repeat;
  display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative;
}
.hero-content { padding: 100px 24px 120px; animation: fadeInUp 1s ease; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--gold); padding: 6px 20px;
  border-radius: 30px; font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero h1 em { color: var(--gold); display: block; font-style: italic; }
.hero p { font-size: 1.15rem; color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto 40px; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollPulse 2s ease infinite; }

/* === QUICK BOOKING BAR === */
.booking-bar {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 24px 0;
}
.booking-bar-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 16px; align-items: end;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
}
.booking-field label {
  display: block; font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
  font-weight: 500; margin-bottom: 8px;
}
.booking-field input, .booking-field select {
  width: 100%; background: transparent; border: none;
  border-bottom: 1px solid var(--border);
  color: var(--white); padding: 8px 0; font-size: 15px;
  font-family: var(--font-serif);
}
.booking-field input:focus, .booking-field select:focus { outline: none; border-color: var(--gold); }
.booking-field select option { background: var(--dark-3); }

/* ============================================
   SECTIONS GENERAL
   ============================================ */
section { padding: 100px 0; }

/* === ROOMS SECTION === */
.rooms-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); gap: 28px; }

.room-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  group: true;
}
.room-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px var(--gold); }

.room-card-image {
  position: relative; height: 260px; overflow: hidden;
}
.room-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.room-card:hover .room-card-image img { transform: scale(1.08); }
.room-card-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--gold); color: var(--dark);
  font-size: 10px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 5px 12px; border-radius: 30px;
}
.room-card-price {
  position: absolute; bottom: 16px; right: 16px;
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  padding: 6px 14px; border-radius: 30px;
  font-family: var(--font-serif); font-size: 1.1rem; color: var(--gold);
}
.room-card-price span { font-size: 11px; color: var(--text-muted); font-family: var(--font-sans); }

.room-card-body { padding: 24px; }
.room-card-body h3 { font-size: 1.5rem; margin-bottom: 10px; }
.room-card-body p { font-size: 14px; color: var(--text-light); margin-bottom: 18px; line-height: 1.7; }
.room-meta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.room-meta span { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 5px; }
.room-meta i { color: var(--gold); font-size: 11px; }
.room-card-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 18px; border-top: 1px solid var(--border); }

.rating { display: flex; gap: 2px; }
.rating i { color: var(--gold); font-size: 12px; }

/* === FEATURES === */
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.feature-card {
  background: var(--dark-2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 28px;
  text-align: center; transition: var(--transition);
}
.feature-card:hover { border-color: var(--gold); background: var(--dark-3); }
.feature-icon { width: 64px; height: 64px; background: var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.feature-icon i { font-size: 24px; color: var(--gold); }
.feature-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.feature-card p { font-size: 14px; color: var(--text-light); }

/* === TESTIMONIALS === */
.testimonials { background: var(--dark-2); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.testimonial-card {
  background: var(--dark-3); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
}
.testimonial-card blockquote { font-family: var(--font-serif); font-size: 1.05rem; font-style: italic; color: var(--off-white); line-height: 1.8; margin-bottom: 24px; }
.testimonial-card blockquote::before { content: '"'; font-size: 3rem; color: var(--gold); line-height: 0; vertical-align: -1rem; margin-right: 4px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-author img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.testimonial-author h5 { font-size: 15px; font-family: var(--font-sans); font-weight: 500; }
.testimonial-author span { font-size: 12px; color: var(--text-muted); }

/* === ABOUT/STATS === */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.stat-card { background: var(--dark-3); padding: 40px 24px; text-align: center; }
.stat-number { font-family: var(--font-serif); font-size: 3rem; color: var(--gold); display: block; }
.stat-label { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-top: 8px; }

/* === GALLERY === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 220px);
  gap: 12px;
}
.gallery-item { overflow: hidden; border-radius: var(--radius); position: relative; cursor: pointer; }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(13,13,13,0);
  transition: var(--transition);
}
.gallery-item:hover::after { background: rgba(13,13,13,0.4); }
.gallery-overlay {
  position: absolute; inset: 0; display: flex;
  align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition); z-index: 1;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 28px; color: var(--gold); }

/* === CONTACT FORM === */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info h2 { font-size: 2.5rem; margin-bottom: 20px; }
.contact-info p { color: var(--text-light); margin-bottom: 36px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-icon { width: 44px; height: 44px; background: var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon i { color: var(--gold); font-size: 16px; }
.contact-item h5 { font-size: 14px; font-family: var(--font-sans); font-weight: 500; margin-bottom: 4px; color: var(--gold); }
.contact-item p { font-size: 14px; color: var(--text-light); margin: 0; }

/* === FORMS === */
.form-card {
  background: var(--dark-2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px;
}
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; font-weight: 500; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: var(--dark-3); border: 1px solid var(--border);
  color: var(--white); padding: 14px 16px; font-size: 15px;
  border-radius: var(--radius); transition: var(--transition); font-family: var(--font-sans);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.1); }
.form-group select option { background: var(--dark-3); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-error { color: #e74c3c; font-size: 12px; margin-top: 5px; }

/* === AUTH PAGES === */
.auth-wrapper {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: radial-gradient(ellipse at top, rgba(201,168,76,0.08) 0%, transparent 60%);
  padding: 120px 24px 60px;
}
.auth-card {
  background: var(--dark-2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 50px 44px;
  width: 100%; max-width: 480px;
}
.auth-logo { text-align: center; margin-bottom: 36px; }
.auth-logo .logo-icon { font-size: 2rem; color: var(--gold); display: block; margin-bottom: 8px; }
.auth-logo h2 { font-size: 2rem; }
.auth-card h1 { font-size: 2rem; margin-bottom: 8px; }
.auth-card p { color: var(--text-light); font-size: 14px; margin-bottom: 32px; }
.auth-footer { text-align: center; margin-top: 24px; font-size: 14px; color: var(--text-muted); }
.auth-footer a { color: var(--gold); }

/* === ROOM DETAIL PAGE === */
.room-detail-hero { height: 60vh; position: relative; }
.room-detail-hero img { width: 100%; height: 100%; object-fit: cover; }
.room-detail-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, var(--dark)); }
.room-gallery-thumbs { display: flex; gap: 10px; margin-top: 12px; }
.room-gallery-thumbs img { width: 100px; height: 70px; object-fit: cover; border-radius: var(--radius); opacity: 0.6; cursor: pointer; border: 2px solid transparent; transition: var(--transition); }
.room-gallery-thumbs img:hover, .room-gallery-thumbs img.active { opacity: 1; border-color: var(--gold); }

.room-detail-grid { display: grid; grid-template-columns: 1fr 380px; gap: 40px; padding: 60px 0; }
.room-info h1 { font-size: 3rem; margin-bottom: 16px; }
.amenities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 28px; }
.amenity-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-light); }
.amenity-item i { color: var(--gold); font-size: 14px; width: 16px; }

/* Booking sidebar */
.booking-sidebar {
  position: sticky; top: 100px;
  background: var(--dark-2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px; height: fit-content;
}
.booking-sidebar h3 { font-size: 1.6rem; margin-bottom: 8px; }
.sidebar-price { font-size: 2rem; color: var(--gold); font-family: var(--font-serif); margin-bottom: 24px; }
.sidebar-price span { font-size: 14px; color: var(--text-muted); font-family: var(--font-sans); }
#bookingTotal { background: var(--dark-3); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; margin: 16px 0; }
#bookingTotal .total-row { display: flex; justify-content: space-between; font-size: 13px; color: var(--text-light); margin-bottom: 8px; }
#bookingTotal .total-row.grand { font-size: 16px; color: var(--gold); font-weight: 600; border-top: 1px solid var(--border); padding-top: 12px; margin-top: 12px; }

/* === BOOKING PAGE === */
.booking-page { padding: 120px 0 80px; }
.booking-page h1 { font-size: 3rem; margin-bottom: 8px; }
.booking-steps { display: flex; gap: 8px; margin-bottom: 48px; }
.step { display: flex; align-items: center; gap: 10px; }
.step-num { width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--text-muted); flex-shrink: 0; }
.step.active .step-num { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.step-label { font-size: 13px; color: var(--text-muted); }
.step.active .step-label { color: var(--gold); }
.step-sep { flex: 1; height: 1px; background: var(--border); max-width: 40px; }

/* === DASHBOARD === */
.dashboard { padding: 120px 0 80px; }
.dashboard-grid { display: grid; grid-template-columns: 240px 1fr; gap: 32px; }
.dashboard-sidebar { background: var(--dark-2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; height: fit-content; }
.dashboard-nav a { display: flex; align-items: center; gap: 10px; padding: 12px 14px; color: var(--text-light); font-size: 14px; border-radius: var(--radius); transition: var(--transition); }
.dashboard-nav a:hover, .dashboard-nav a.active { background: var(--dark-3); color: var(--gold); }
.dashboard-nav a i { width: 18px; }

/* Booking status badges */
.badge { display: inline-flex; align-items: center; padding: 4px 12px; border-radius: 30px; font-size: 11px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; }
.badge-pending  { background: rgba(241,196,15,0.15); color: #f1c40f; border: 1px solid rgba(241,196,15,0.3); }
.badge-confirmed { background: rgba(46,204,113,0.15); color: #2ecc71; border: 1px solid rgba(46,204,113,0.3); }
.badge-cancelled { background: rgba(231,76,60,0.15); color: #e74c3c; border: 1px solid rgba(231,76,60,0.3); }
.badge-checked_in { background: rgba(52,152,219,0.15); color: #3498db; border: 1px solid rgba(52,152,219,0.3); }
.badge-checked_out { background: rgba(149,165,166,0.15); color: #95a5a6; border: 1px solid rgba(149,165,166,0.3); }

/* === TABLES === */
.table-responsive { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 14px; }
thead th { padding: 14px 16px; text-align: left; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); border-bottom: 1px solid var(--border); font-weight: 500; }
tbody td { padding: 16px; border-bottom: 1px solid rgba(255,255,255,0.04); vertical-align: middle; color: var(--text-light); }
tbody tr:hover td { background: var(--dark-3); }

/* === PAGE HERO (interior pages) === */
.page-hero {
  height: 45vh; min-height: 300px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.8)),
              url('https://images.unsplash.com/photo-1571003123894-1f0594d2b5d9?w=1920') center/cover;
  display: flex; align-items: flex-end; padding-bottom: 60px;
}
.page-hero.about-hero { background-image: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.75)), url('https://images.unsplash.com/photo-1551882547-ff40c63fe5fa?w=1920') center/cover; }
.page-hero.gallery-hero { background-image: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.75)), url('https://images.unsplash.com/photo-1540541338287-41700207dee6?w=1920') center/cover; }
.page-hero.contact-hero { background-image: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.75)), url('https://images.unsplash.com/photo-1564501049412-61c2a3083791?w=1920') center/cover; }
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }

/* Breadcrumb */
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { opacity: 0.4; }

/* === PAGINATION === */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 48px; }
.pagination a, .pagination span {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: var(--radius); font-size: 13px; color: var(--text-light);
}
.pagination a:hover { border-color: var(--gold); color: var(--gold); }
.pagination .current { background: var(--gold); border-color: var(--gold); color: var(--dark); }

/* === SEARCH/FILTER BAR === */
.filter-bar {
  background: var(--dark-2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px 28px;
  margin-bottom: 40px;
  display: flex; gap: 16px; flex-wrap: wrap; align-items: flex-end;
}
.filter-group { flex: 1; min-width: 160px; }
.filter-group label { display: block; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.filter-group select, .filter-group input {
  width: 100%; background: var(--dark-3); border: 1px solid var(--border);
  color: var(--white); padding: 10px 14px; border-radius: var(--radius); font-size: 14px;
}

/* === LIGHTBOX === */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,0.95);
  z-index: 9999; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: var(--transition);
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; }
.lightbox-close { position: absolute; top: 24px; right: 24px; font-size: 32px; color: var(--white); cursor: pointer; opacity: 0.7; }
.lightbox-close:hover { opacity: 1; color: var(--gold); }

/* === AVAILABILITY INDICATOR === */
.availability-check { padding: 14px; border-radius: var(--radius); font-size: 13px; display: flex; align-items: center; gap: 8px; }
.available { background: rgba(46,204,113,0.1); color: #2ecc71; border: 1px solid rgba(46,204,113,0.3); }
.unavailable { background: rgba(231,76,60,0.1); color: #e74c3c; border: 1px solid rgba(231,76,60,0.3); }

/* === FOOTER === */
.footer { background: var(--dark-2); border-top: 1px solid var(--border); }
.footer-top { padding: 80px 0 60px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-serif); font-size: 1.4rem; margin-bottom: 16px; }
.footer-logo em { color: var(--gold); font-style: italic; }
.footer-logo .logo-icon { color: var(--gold); }
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.8; margin-bottom: 24px; }
.social-links { display: flex; gap: 12px; }
.social-links a { width: 38px; height: 38px; border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 13px; }
.social-links a:hover { border-color: var(--gold); color: var(--gold); }
.footer-links h4, .footer-contact h4 { font-family: var(--font-sans); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 24px; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 14px; color: var(--text-muted); }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--text-muted); margin-bottom: 14px; }
.footer-contact i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-bottom { border-top: 1px solid var(--border); padding: 24px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: var(--text-muted); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 12px; color: var(--text-muted); }
.footer-legal a:hover { color: var(--gold); }

/* === ANIMATIONS === */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scrollPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

.fade-in { animation: fadeInUp 0.6s ease both; }
.fade-in-1 { animation-delay: 0.1s; }
.fade-in-2 { animation-delay: 0.2s; }
.fade-in-3 { animation-delay: 0.3s; }

/* === LOADING SPINNER === */
.spinner { width: 28px; height: 28px; border: 2px solid var(--border); border-top-color: var(--gold); border-radius: 50%; animation: spin 0.8s linear infinite; margin: 0 auto; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .room-detail-grid { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; }
  .gallery-item:nth-child(1), .gallery-item:nth-child(4) { grid-column: span 1; grid-row: span 1; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--dark); flex-direction: column; justify-content: center; align-items: center; gap: 28px; }
  .nav-menu.open { display: flex; }
  .hamburger { display: flex; }
  .nav-actions .btn-outline-gold { display: none; }
  .booking-bar-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .dashboard-grid { grid-template-columns: 1fr; }
  .rooms-grid { grid-template-columns: 1fr; }
  section { padding: 72px 0; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .auth-card { padding: 32px 24px; }
  .form-card { padding: 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
