/* ===================================================
   VILA SERENA - Luxury Hotel CSS
   Design: Refined luxury with warm gold tones
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --gold: #B8913A;
  --gold-light: #D4A956;
  --gold-dark: #8B6914;
  --dark: #1A1A1A;
  --dark-2: #2C2C2C;
  --dark-3: #3D3D3D;
  --light: #FAF8F4;
  --light-2: #F2EDE4;
  --white: #FFFFFF;
  --gray: #888888;
  --gray-light: #CCCCCC;
  --text: #333333;
  --text-light: #666666;
  --success: #2E7D52;
  --danger: #C0392B;
  --warning: #E67E22;
  --info: #2980B9;
  --shadow: 0 4px 30px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --radius: 4px;
  --radius-lg: 8px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

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

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }

/* Typography */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.2;
  color: var(--dark);
}

.section-label {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

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

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  font-weight: 300;
}

/* Gold divider */
.gold-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 1rem 0;
}

.gold-line.center { margin: 1rem auto; }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-lg { padding: 120px 0; }

/* ===== HEADER / NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(26,26,26,0.97);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
}

.logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-top: -4px;
}

.logo-img { height: 50px; object-fit: contain; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 2px;
  transition: var(--transition);
}

.nav-links a:hover { color: var(--gold-light); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  font-weight: 500 !important;
}

.nav-cta:hover { background: var(--gold-dark) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding-top: 100px;
}

.hero-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 400;
}

.hero-desc {
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  border-radius: var(--radius);
  transition: var(--transition);
  text-decoration: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(184,145,58,0.4);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.6);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}

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

/* ===== SEARCH BOX ===== */
.search-section {
  background: var(--dark);
  padding: 0;
  position: relative;
  z-index: 10;
}

.search-box {
  background: var(--white);
  border-top: 3px solid var(--gold);
  padding: 32px 40px;
  box-shadow: var(--shadow-md);
}

.search-box-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  margin-bottom: 24px;
  color: var(--dark);
}

.search-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr auto;
  gap: 16px;
  align-items: end;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #E0D8CC;
  border-radius: var(--radius);
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--light);
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(184,145,58,0.12);
}

select.form-control { cursor: pointer; }

/* ===== ROOMS ===== */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.room-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.room-card-image {
  position: relative;
  overflow: hidden;
  height: 260px;
}

.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-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
}

.room-badge-promo {
  background: var(--danger);
  left: 16px;
  right: auto;
}

.room-card-body { padding: 24px; }

.room-card-meta {
  display: flex;
  gap: 20px;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.room-card-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.room-card h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.room-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.amenity-tag {
  font-size: 0.72rem;
  padding: 4px 10px;
  background: var(--light-2);
  color: var(--text-light);
  border-radius: 20px;
  border: 1px solid #E8E0D2;
}

.room-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid #F0EBE0;
}

.room-price { display: flex; flex-direction: column; }

.price-label {
  font-size: 0.72rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--gold-dark);
}

.price-old {
  font-size: 0.85rem;
  color: var(--gray);
  text-decoration: line-through;
}

/* ===== AMENITIES SECTION ===== */
.amenities-section { background: var(--dark); color: var(--white); }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.amenity-item { text-align: center; padding: 32px 20px; }

.amenity-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(184,145,58,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  color: var(--gold-light);
  transition: var(--transition);
}

.amenity-item:hover .amenity-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: scale(1.1);
}

.amenity-item h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 6px;
}

.amenity-item p { font-size: 0.85rem; color: rgba(255,255,255,0.55); }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 8px;
  margin-top: 48px;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
}

.gallery-item:first-child {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay { background: rgba(0,0,0,0.35); }

.gallery-overlay span {
  color: var(--white);
  font-size: 2rem;
  opacity: 0;
  transition: var(--transition);
  transform: scale(0.8);
}

.gallery-item:hover .gallery-overlay span {
  opacity: 1;
  transform: scale(1);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--light); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
  border-top: 3px solid transparent;
  transition: var(--transition);
}

.testimonial-card:hover { border-top-color: var(--gold); }

.testimonial-quote {
  font-size: 3rem;
  color: var(--gold-light);
  font-family: 'Cormorant Garamond', serif;
  line-height: 1;
  margin-bottom: 12px;
}

.testimonial-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 16px; }

.testimonial-text {
  font-style: italic;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testimonial-name { font-weight: 500; font-size: 0.95rem; }
.testimonial-city { font-size: 0.8rem; color: var(--text-light); }

/* ===== LOCATION ===== */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 48px;
}

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
}

.location-map iframe { width: 100%; height: 100%; border: none; }

.location-info h3 {
  font-size: 1.8rem;
  margin-bottom: 24px;
}

.location-details { display: flex; flex-direction: column; gap: 16px; }

.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.location-detail-icon {
  width: 40px;
  height: 40px;
  background: var(--light-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  font-size: 0.9rem;
}

.location-detail-text h4 { font-size: 0.85rem; font-weight: 600; margin-bottom: 2px; }
.location-detail-text p { font-size: 0.9rem; color: var(--text-light); }

/* ===== CONTACT FORM ===== */
.contact-section { background: var(--light); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  margin-top: 48px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand { }

.footer-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 20px;
}

.social-links { display: flex; gap: 10px; }

.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-col h4 {
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7); }
}

/* ===== COOKIES ===== */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26,26,26,0.97);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 16px 20px;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.88rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-bar.show { transform: translateY(0); }
.cookie-bar a { color: var(--gold-light); }

.btn-cookie {
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 8px 20px;
  border-radius: 2px;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
  transition: var(--transition);
}

.btn-cookie:hover { background: var(--gold-dark); }

/* ===== AVAILABILITY RESULTS ===== */
.availability-results {
  background: var(--light);
  padding: 60px 0;
  min-height: 300px;
}

.result-header {
  background: var(--white);
  border-left: 4px solid var(--gold);
  padding: 16px 24px;
  margin-bottom: 32px;
  font-size: 1rem;
  color: var(--text);
}

.no-results {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-light);
}

.no-results h3 { font-size: 1.4rem; margin-bottom: 8px; }

/* ===== ROOM DETAIL PAGE ===== */
.room-hero {
  height: 65vh;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}

.room-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

.room-detail-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  padding: 60px 0;
}

.room-detail-main h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.room-info-bar {
  display: flex;
  gap: 32px;
  padding: 20px 0;
  border-top: 1px solid #F0EBE0;
  border-bottom: 1px solid #F0EBE0;
  margin-bottom: 28px;
}

.room-info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.room-info-item .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
}

.room-info-item .value {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--dark);
}

.room-amenities-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.room-amenity {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text);
}

.room-amenity::before {
  content: '✓';
  color: var(--gold);
  font-weight: 600;
}

/* Booking sidebar */
.booking-sidebar {
  position: sticky;
  top: 100px;
}

.booking-card {
  background: var(--white);
  border: 1px solid #E8E0D2;
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
}

.booking-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 24px;
}

.booking-price-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold-dark);
}

.booking-price-per { font-size: 0.85rem; color: var(--text-light); }

/* ===== RESERVATION FORM ===== */
.reservation-form-section { background: var(--light); padding: 60px 0; }

.reservation-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  max-width: 700px;
  margin: 0 auto;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-group { margin-bottom: 20px; }

.form-control textarea {
  resize: vertical;
  min-height: 100px;
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

/* ===== ALERT / MESSAGES ===== */
.alert {
  padding: 16px 20px;
  border-radius: var(--radius);
  margin-bottom: 24px;
  font-size: 0.95rem;
  border-left: 4px solid;
}

.alert-success { background: #F0FFF4; border-color: var(--success); color: #1A5C3A; }
.alert-danger { background: #FFF5F5; border-color: var(--danger); color: #7B2020; }
.alert-warning { background: #FFFBF0; border-color: var(--warning); color: #7B4F10; }
.alert-info { background: #F0F8FF; border-color: var(--info); color: #1A4B7B; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: var(--dark);
  padding: 60px 0 24px;
  color: rgba(255,255,255,0.7);
}

.breadcrumb h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 8px; }

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
}

.breadcrumb-nav a { color: rgba(255,255,255,0.6); }
.breadcrumb-nav a:hover { color: var(--gold-light); }
.breadcrumb-nav span { color: var(--gold); }

/* ===== PAGE ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img-stack { position: relative; }

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-img-secondary {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 55%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}

.feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature-icon {
  color: var(--gold);
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ===== BADGES ===== */
.badge {
  display: inline-block;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-warning { background: #FFF3CD; color: #856404; }
.badge-success { background: #D1FAE5; color: #065F46; }
.badge-danger { background: #FEE2E2; color: #991B1B; }
.badge-info { background: #DBEAFE; color: #1E40AF; }
.badge-secondary { background: #E5E7EB; color: #374151; }

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.active { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

/* ===== CALENDAR WIDGET ===== */
.cal-widget { border: 1px solid #E8E0D2; border-radius: var(--radius-lg); overflow: hidden; }
.cal-header { background: var(--dark); color: var(--white); padding: 14px 16px; display: flex; justify-content: space-between; align-items: center; }
.cal-header h4 { font-family: 'Jost', sans-serif; font-size: 0.9rem; font-weight: 500; }
.cal-nav { background: none; border: none; color: var(--white); cursor: pointer; font-size: 1.1rem; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); }
.cal-day-label { text-align: center; padding: 8px 4px; font-size: 0.7rem; font-weight: 600; color: var(--text-light); background: var(--light); }
.cal-day { text-align: center; padding: 8px 4px; font-size: 0.8rem; cursor: pointer; transition: var(--transition); border: 1px solid transparent; }
.cal-day:hover:not(.booked):not(.blocked):not(.past) { background: var(--gold-light); color: var(--white); }
.cal-day.booked { background: #FEE2E2; color: #991B1B; cursor: not-allowed; }
.cal-day.blocked { background: #F3F4F6; color: #9CA3AF; cursor: not-allowed; }
.cal-day.today { border-color: var(--gold); font-weight: 600; }
.cal-day.past { color: var(--gray-light); cursor: default; }
.cal-legend { display: flex; gap: 16px; padding: 12px 16px; font-size: 0.75rem; border-top: 1px solid #E8E0D2; }
.cal-legend-item { display: flex; align-items: center; gap: 6px; }
.cal-dot { width: 10px; height: 10px; border-radius: 2px; }
.cal-dot-avail { background: var(--white); border: 1px solid #E8E0D2; }
.cal-dot-booked { background: #FEE2E2; }
.cal-dot-blocked { background: #F3F4F6; }

/* ===== 404 PAGE ===== */
.page-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--dark);
  color: var(--white);
}

.page-404 h1 { font-size: 8rem; color: var(--gold); line-height: 1; margin-bottom: 0; }

/* ===== BOOKING CONFIRMATION ===== */
.confirmation-box {
  max-width: 620px;
  margin: 60px auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.confirmation-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #D1FAE5;
  color: var(--success);
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.confirmation-code {
  font-size: 1.8rem;
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold-dark);
  background: var(--light-2);
  padding: 12px 24px;
  border-radius: var(--radius);
  display: inline-block;
  margin: 16px 0;
  letter-spacing: 0.1em;
}

.confirmation-details {
  text-align: left;
  background: var(--light);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 20px;
}

.confirmation-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #E8E0D2;
  font-size: 0.9rem;
}

.confirmation-row:last-child { border-bottom: none; }
.confirmation-row .label { color: var(--text-light); }
.confirmation-row .value { font-weight: 500; }

/* ===== ADMIN SHARED STYLES ===== */
.admin-top-bar {
  height: 60px;
  background: var(--dark);
  display: flex;
  align-items: center;
  padding: 0 24px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  gap: 20px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-fadeInUp { animation: fadeInUp 0.6s ease both; }
.animate-fadeIn { animation: fadeIn 0.4s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .search-form { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .room-detail-layout { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-secondary { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26,26,26,0.98);
    z-index: 999;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  .nav-links.mobile-open a { font-size: 1.2rem; }
  .search-form { grid-template-columns: 1fr; }
  .search-box { padding: 24px 20px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:first-child { grid-row: span 1; }
  .rooms-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero h1 { font-size: clamp(2.2rem, 8vw, 4rem); }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .room-info-bar { flex-wrap: wrap; gap: 16px; }
  .hero-actions { flex-direction: column; }
}
