/* ============================================================
   KARASU OTEL — Premium CSS
   ============================================================ */

:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dark: #9e7a2a;
  --navy: #0d1b2a;
  --navy-mid: #162032;
  --navy-light: #1e2f45;
  --charcoal: #1a1a2e;
  --white: #ffffff;
  --off-white: #f8f6f1;
  --text-muted: #8a9bb0;
  --text-light: #c5cdd8;
  --border: rgba(201, 168, 76, 0.2);
  --shadow-gold: 0 0 40px rgba(201,168,76,0.15);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.4);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.35s 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: 'Inter', sans-serif;
  background: var(--navy);
  color: var(--text-light);
  overflow-x: hidden;
  line-height: 1.7;
}

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

.container { max-width: 1260px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }

/* TYPOGRAPHY */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  line-height: 1.25;
}
h1 { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.15rem; }

.section-title {
  text-align: center;
  margin-bottom: 16px;
}
.section-subtitle {
  text-align: center;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
}
.section-desc {
  text-align: center;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 60px;
  font-size: 1.05rem;
}

/* DIVIDER */
.gold-divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  margin: 16px auto 0;
  border-radius: 2px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0;
  background: rgba(13, 27, 42, 0.1);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.08);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(13, 27, 42, 0.97);
  padding: 14px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
  border-bottom-color: rgba(201,168,76,0.2);
}
.nav-container {
  max-width: 1260px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; line-height: 1; }
.nav-logo .logo-img {
  height: 44px;
  width: auto;
  display: block;
  filter: drop-shadow(0 1px 4px rgba(201,168,76,0.18));
  transition: opacity 0.2s;
}
.nav-logo:hover .logo-img { opacity: 0.85; }
.nav-menu {
  display: flex; align-items: center; gap: 8px;
}
.nav-menu a {
  padding: 8px 14px;
  font-size: 0.88rem; font-weight: 500; letter-spacing: 0.5px;
  color: var(--text-light); border-radius: 6px;
  position: relative;
}
.nav-menu a::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  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: 60%; }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--navy) !important; font-weight: 600 !important;
  padding: 10px 22px !important; border-radius: 50px !important;
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
  white-space: nowrap;
}
.nav-cta:hover { box-shadow: 0 6px 30px rgba(201,168,76,0.5) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--white); border-radius: 2px; transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../images/hero-bg.png') center/cover no-repeat;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(13,27,42,0.85) 0%,
    rgba(13,27,42,0.5) 50%,
    rgba(13,27,42,0.75) 100%
  );
}
.hero-parallax { transform: translateY(0); transition: transform 0.1s linear; }
.hero-content {
  position: relative; z-index: 2; text-align: center;
  padding: 0 24px; max-width: 900px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.4);
  padding: 8px 20px; border-radius: 50px; margin-bottom: 28px;
  font-size: 0.8rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); backdrop-filter: blur(10px);
}
.hero-badge i { font-size: 0.7rem; }
.hero-title {
  color: var(--white); font-size: clamp(3rem, 7vw, 6rem);
  text-shadow: 0 4px 30px rgba(0,0,0,0.5); margin-bottom: 8px;
}
.hero-title em { color: var(--gold); font-style: normal; }
.hero-tagline {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem); color: var(--text-light);
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 36px; border-radius: 50px; font-weight: 600;
  font-size: 0.95rem; cursor: pointer; border: none;
  transition: var(--transition); letter-spacing: 0.3px;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy); box-shadow: 0 6px 30px rgba(201,168,76,0.4);
}
.btn-gold:hover { box-shadow: 0 10px 40px rgba(201,168,76,0.6); transform: translateY(-2px); }
.btn-outline {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.3);
  color: var(--white); backdrop-filter: blur(10px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15); border-color: var(--gold); color: var(--gold);
}
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-muted); font-size: 0.75rem; letter-spacing: 2px;
}
.hero-scroll .scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:1;transform:scaleY(1)} 50%{opacity:0.4;transform:scaleY(0.5)} }

/* ============================================================
   FEATURES BAND
   ============================================================ */
.features-band {
  background: rgba(30, 47, 69, 0.6);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.feature-item {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 30px;
  border-right: 1px solid var(--border);
}
.feature-item:last-child { border-right: none; }
.feature-icon {
  width: 56px; height: 56px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(201,168,76,0.05));
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--gold);
}
.feature-text h4 { color: var(--white); font-family: 'Inter', sans-serif; font-size: 0.95rem; margin-bottom: 2px; }
.feature-text p { color: var(--text-muted); font-size: 0.82rem; }

/* ============================================================
   ROOMS SECTION
   ============================================================ */
.rooms-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.room-card {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden; transition: var(--transition);
  position: relative;
}
.room-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold), var(--shadow-lg);
  border-color: rgba(201,168,76,0.4);
}
.room-card-img {
  position: relative; height: 240px; overflow: hidden;
}
.room-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.room-card:hover .room-card-img img { transform: scale(1.07); }
.room-badge {
  position: absolute; top: 16px; right: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy); padding: 5px 14px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.5px;
}
.room-card-body { padding: 28px; }
.room-card-title { margin-bottom: 10px; }
.room-card-desc {
  color: var(--text-muted); font-size: 0.9rem;
  line-height: 1.6; margin-bottom: 20px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.room-meta {
  display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 20px;
}
.room-meta-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.82rem; color: var(--text-muted);
}
.room-meta-item i { color: var(--gold); }
.room-amenities {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 24px;
}
.amenity-tag {
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2);
  color: var(--gold-light); padding: 3px 10px; border-radius: 50px;
  font-size: 0.75rem;
}
.room-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 20px; border-top: 1px solid var(--border);
}
.room-price { }
.room-price .price-label { font-size: 0.75rem; color: var(--text-muted); }
.room-price .price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 700; color: var(--gold);
}
.room-price .price-night { font-size: 0.8rem; color: var(--text-muted); }
.btn-sm {
  padding: 10px 22px; font-size: 0.85rem;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-images {
  position: relative;
}
.about-img-main {
  width: 100%; height: 450px; object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-img-accent {
  position: absolute; bottom: -30px; right: -30px;
  width: 200px; height: 200px; object-fit: cover;
  border-radius: var(--radius);
  border: 4px solid var(--navy);
  box-shadow: var(--shadow-gold);
}
.about-stats {
  position: absolute; top: 30px; left: -20px;
  background: var(--navy-light); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 24px; text-align: center;
  backdrop-filter: blur(10px);
}
.about-stats .stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 700; color: var(--gold);
}
.about-stats .stat-label { font-size: 0.8rem; color: var(--text-muted); }
.about-content {}
.about-content .section-subtitle { text-align: left; }
.about-content h2 { text-align: left; margin-bottom: 24px; }
.about-content .gold-divider { margin: 0 0 28px; }
.about-text { color: var(--text-muted); font-size: 0.95rem; line-height: 1.85; margin-bottom: 18px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 32px 0; }
.about-feature {
  display: flex; align-items: flex-start; gap: 12px;
}
.about-feature-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: rgba(201,168,76,0.1); border: 1px solid var(--border);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem;
}
.about-feature-text h5 { color: var(--white); font-family: 'Inter', sans-serif; font-size: 0.88rem; margin-bottom: 2px; }
.about-feature-text p { color: var(--text-muted); font-size: 0.8rem; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section { background: var(--navy-mid); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 12px;
}
.gallery-item {
  overflow: hidden; border-radius: var(--radius); position: relative; cursor: pointer;
}
.gallery-item:first-child { grid-column: span 2; 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(13,27,42,0); display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.gallery-overlay i { color: var(--white); font-size: 2rem; opacity: 0; transition: var(--transition); }
.gallery-item:hover .gallery-overlay { background: rgba(13,27,42,0.45); }
.gallery-item:hover .gallery-overlay i { opacity: 1; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {}
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.testimonial-card {
  background: var(--navy-light); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
  position: relative; transition: var(--transition);
}
.testimonial-card:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-4px); }
.testimonial-quote {
  font-size: 4rem; font-family: 'Playfair Display', serif;
  color: var(--gold); opacity: 0.3; line-height: 1; margin-bottom: 16px;
}
.testimonial-text {
  color: var(--text-light); font-size: 0.93rem; line-height: 1.75;
  font-style: italic; margin-bottom: 24px;
}
.testimonial-stars { color: var(--gold); margin-bottom: 20px; font-size: 0.85rem; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--gold);
  border: 2px solid rgba(201,168,76,0.3);
}
.testimonial-name { color: var(--white); font-weight: 600; font-size: 0.9rem; }
.testimonial-origin { color: var(--text-muted); font-size: 0.8rem; }

/* ============================================================
   CONTACT / MAP
   ============================================================ */
.contact-section { background: var(--navy-mid); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px;
}
.contact-info h2 { text-align: left; margin-bottom: 16px; }
.contact-info .gold-divider { margin-left: 0; margin-bottom: 30px; }
.contact-info p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
}
.contact-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: rgba(201,168,76,0.1); border: 1px solid var(--border);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem;
}
.contact-item h5 { color: var(--white); font-family: 'Inter', sans-serif; font-size: 0.85rem; margin-bottom: 3px; }
.contact-item p, .contact-item a { color: var(--text-muted); font-size: 0.9rem; }
.contact-item a:hover { color: var(--gold); }
.contact-map { border-radius: var(--radius-lg); overflow: hidden; height: 420px; }
.contact-map iframe { width: 100%; height: 100%; border: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--charcoal); }
.footer-top { padding: 80px 0 60px; }
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.4fr; gap: 50px;
}
.footer-logo { display: flex; flex-direction: column; margin-bottom: 16px; }
.footer-logo-img {
  height: 52px;
  width: auto;
  display: block;
  opacity: 0.95;
}
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.9rem;
}
.social-links a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.footer-links h4, .footer-services h4, .footer-contact h4 {
  font-family: 'Inter', sans-serif; font-size: 0.85rem;
  letter-spacing: 2px; text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px;
}
.footer-links ul li a, .footer-services ul li a {
  display: block; padding: 5px 0; color: var(--text-muted); font-size: 0.88rem;
}
.footer-links ul li a:hover, .footer-services ul li a:hover { color: var(--gold); padding-left: 6px; }
.contact-list { display: flex; flex-direction: column; gap: 12px; }
.contact-list li {
  display: flex; align-items: flex-start; gap: 12px;
  color: var(--text-muted); font-size: 0.88rem;
}
.contact-list li i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 24px 0;
  display: flex; align-items: center; justify-content: center;
}
.footer-bottom .container {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.85rem; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: var(--text-muted); font-size: 0.82rem; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ============================================================
   ROOMS PAGE
   ============================================================ */
.page-hero {
  height: 420px; position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(13,27,42,0.7), rgba(13,27,42,0.9));
}
.page-hero-content { position: relative; z-index: 2; text-align: center; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 16px; color: var(--text-muted); font-size: 0.85rem;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: var(--text-muted); }

.rooms-filter-form { margin-bottom: 48px; }
.filter-label {
  display: block; font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 8px;
}
.filter-row {
  display: flex; gap: 16px; flex-wrap: wrap; align-items: flex-end; margin-top: 16px;
}
.filter-group { flex: 1; min-width: 140px; }
.filter-actions { display: flex; gap: 8px; align-items: flex-end; flex-shrink: 0; }
.filter-select, .filter-input {
  width: 100%; padding: 10px 14px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--white); font-size: 0.88rem;
  outline: none; transition: var(--transition);
}
.filter-select:focus, .filter-input:focus { border-color: var(--gold); }
.filter-select option { background: var(--navy-mid); }
.filter-input::placeholder { color: var(--text-muted); }

.rooms-filter {
  display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 0;
}
.filter-btn {
  padding: 10px 24px; border-radius: 50px; cursor: pointer;
  border: 1px solid var(--border); background: transparent;
  color: var(--text-muted); font-size: 0.88rem; transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--gold); border-color: var(--gold); color: var(--navy); font-weight: 600;
}
@media (max-width: 600px) {
  .filter-row { flex-direction: column; }
  .filter-group { min-width: 100%; }
}

/* ROOM DETAIL MODAL */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.85); backdrop-filter: blur(6px);
  align-items: center; justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--navy-light); border: 1px solid var(--border);
  border-radius: var(--radius-lg); max-width: 820px; width: 95%;
  max-height: 90vh; overflow-y: auto;
}
.modal-img { width: 100%; height: 300px; object-fit: cover; }
.modal-body { padding: 36px; }
.modal-body h2 { margin-bottom: 12px; }
.modal-desc { color: var(--text-muted); font-size: 0.93rem; line-height: 1.8; margin-bottom: 24px; }
.modal-amenities { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.modal-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px; border-top: 1px solid var(--border);
}
.modal-close {
  position: absolute; top: 20px; right: 20px;
  background: rgba(255,255,255,0.1); border: none; color: var(--white);
  width: 36px; height: 36px; border-radius: 50%; cursor: pointer;
  font-size: 1.1rem; display: flex; align-items: center; justify-content: center;
}
.modal-box-wrapper { position: relative; }

/* ============================================================
   RESERVATION PAGE
   ============================================================ */
.reservation-section { padding: 60px 0 100px; }
.reservation-grid {
  display: grid; grid-template-columns: 1.6fr 1fr; gap: 48px;
}
.reservation-form-wrap {
  background: var(--navy-light); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 48px;
}
.form-title { margin-bottom: 8px; }
.form-subtitle { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 36px; }
.form-group { margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
label {
  display: block; color: var(--text-light); font-size: 0.85rem;
  font-weight: 500; margin-bottom: 8px; letter-spacing: 0.3px;
}
input[type="text"], input[type="email"], input[type="tel"],
input[type="date"], input[type="number"], select, textarea {
  width: 100%; padding: 14px 18px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--white); font-family: 'Inter', sans-serif;
  font-size: 0.92rem; transition: var(--transition); outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--gold); background: rgba(201,168,76,0.05);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
input::placeholder, textarea::placeholder { color: var(--text-muted); }
select option { background: var(--navy); }
textarea { resize: vertical; min-height: 100px; }
.price-summary {
  background: var(--navy-mid); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px; position: sticky; top: 120px;
}
.price-summary h3 { margin-bottom: 24px; }
.price-room-img {
  width: 100%; height: 180px; object-fit: cover;
  border-radius: var(--radius); margin-bottom: 20px;
}
.price-line {
  display: flex; justify-content: space-between;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  color: var(--text-muted); font-size: 0.9rem;
}
.price-line:last-of-type { border-bottom: none; }
.price-line span:last-child { color: var(--white); font-weight: 500; }
.price-total {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0 0; margin-top: 8px; border-top: 1px solid var(--gold);
}
.price-total span:first-child { color: var(--white); font-weight: 600; }
.price-total .total-amount {
  font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--gold);
}
.form-error { color: #e74c3c; font-size: 0.82rem; margin-top: 5px; display: none; }
.form-error.show { display: block; }

/* ============================================================
   CONFIRMATION PAGE
   ============================================================ */
.confirmation-section {
  min-height: 80vh; display: flex; align-items: center;
  padding: 100px 0;
}
.confirmation-card {
  max-width: 700px; margin: 0 auto;
  background: var(--navy-light); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 60px; text-align: center;
}
.confirm-icon {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 28px;
  background: linear-gradient(135deg, rgba(39,174,96,0.2), rgba(39,174,96,0.05));
  border: 2px solid rgba(39,174,96,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem; color: #27ae60;
}
.confirm-code {
  display: inline-block;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 12px 32px; margin: 20px 0 32px;
  font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--gold);
  letter-spacing: 3px;
}
.confirm-details {
  background: var(--navy-mid); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; margin: 32px 0; text-align: left;
}
.confirm-row {
  display: flex; justify-content: space-between; padding: 10px 0;
  border-bottom: 1px solid var(--border); font-size: 0.9rem;
}
.confirm-row:last-child { border-bottom: none; }
.confirm-row span:first-child { color: var(--text-muted); }
.confirm-row span:last-child { color: var(--white); font-weight: 500; }

/* ============================================================
   ALERTS & MESSAGES
   ============================================================ */
.alert {
  padding: 16px 20px; border-radius: var(--radius);
  margin-bottom: 24px; font-size: 0.9rem;
}
.alert-success { background: rgba(39,174,96,0.12); border: 1px solid rgba(39,174,96,0.3); color: #6fcf97; }
.alert-error { background: rgba(231,76,60,0.12); border: 1px solid rgba(231,76,60,0.3); color: #f07070; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-item:nth-child(2) { border-right: none; }
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 50px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .contact-grid { gap: 40px; }
}
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-images { display: none; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; }
  .gallery-item:first-child { grid-column: span 1; grid-row: span 1; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { height: 280px; }
  .reservation-grid { grid-template-columns: 1fr; }
  .price-summary { position: static; }
}
/* Medium screens: tighten nav spacing */
@media (max-width: 1180px) and (min-width: 901px) {
  .nav-menu { gap: 2px; }
  .nav-menu a { padding: 6px 9px; font-size: 0.82rem; }
  .nav-cta { padding: 8px 14px !important; font-size: 0.82rem; }
  .nav-container { padding: 0 16px; }
  .lang-switcher { margin-left: 4px; }
  .lang-switcher a { padding: 4px 7px; font-size: 0.7rem; }
}
@media (max-width: 900px) {
  .nav-menu {
    position: fixed; top: 0; right: -100%; width: 75%; max-width: 320px;
    height: 100vh; background: var(--navy);
    flex-direction: column; align-items: flex-start;
    padding: 100px 30px 40px; gap: 4px;
    transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
    border-left: 1px solid var(--border);
    box-shadow: -20px 0 60px rgba(0,0,0,0.4);
  }
  .nav-menu.open { right: 0; }
  .nav-menu a { font-size: 1rem; padding: 12px 0; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav-cta { margin-top: 16px; }
  .hamburger { display: flex; }
  .rooms-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .section { padding: 70px 0; }
  .reservation-form-wrap { padding: 28px; }
  .confirmation-card { padding: 36px 24px; }
}

/* ─── Static Page Prose Content ─── */
.prose-content h1, .prose-content h2 { font-family: 'Playfair Display', serif; color: var(--gold); margin-bottom: 14px; margin-top: 28px; }
.prose-content h3 { color: var(--white); font-size: 1.05rem; margin-top: 22px; margin-bottom: 8px; }
.prose-content p { color: var(--text-light); margin-bottom: 14px; }
.prose-content ul, .prose-content ol { color: var(--text-light); padding-left: 22px; margin-bottom: 14px; }
.prose-content li { margin-bottom: 6px; }
.prose-content strong { color: var(--gold); }
.prose-content a { color: var(--gold); }
