:root {
  --purple: #2d1b4e;
  --purple-light: #4a2d7a;
  --neon: #00f5d4;
  --neon-dim: #00c4aa;
  --dark: #0f0a1a;
  --text: #e8e0f0;
  --white: #ffffff;
  --font-head: 'Orbitron', sans-serif;
  --font-body: 'Rajdhani', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-body); color: var(--text); background: var(--dark); line-height: 1.7; font-size: 18px; }
a { color: var(--neon); text-decoration: none; }
a:hover { color: var(--neon-dim); }

.site-header { background: var(--purple); position: sticky; top: 0; z-index: 100; border-bottom: 2px solid var(--neon); }
.header-inner { max-width: 1200px; margin: 0 auto; padding: 1rem 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.logo { font-family: var(--font-head); font-size: 1.3rem; color: var(--neon); font-weight: 700; letter-spacing: 0.08em; }
.nav-list { list-style: none; display: flex; flex-wrap: wrap; gap: 1.75rem; }
.nav-list a { color: var(--text); font-weight: 600; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 0.06em; }
.nav-list a:hover, .nav-list a.active { color: var(--neon); }

.hero { position: relative; min-height: 560px; display: flex; align-items: center; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: url('assets/escape-hero.jpg') center/cover; opacity: 0.35; }
.hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(45,27,78,0.9), rgba(15,10,26,0.7)); }
.hero-content { position: relative; max-width: 1200px; margin: 0 auto; padding: 4rem 1.5rem; z-index: 1; }
.hero-content h1 { font-family: var(--font-head); font-size: clamp(2rem, 5vw, 3.2rem); color: var(--neon); margin-bottom: 1rem; text-shadow: 0 0 30px rgba(0,245,212,0.3); }
.hero-content .lead { font-size: 1.3rem; max-width: 580px; margin-bottom: 2rem; }
.btn { display: inline-block; padding: 0.9rem 2.2rem; background: var(--neon); color: var(--dark); font-family: var(--font-head); font-weight: 700; border-radius: 0; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.85rem; border: none; cursor: pointer; }
.btn:hover { background: var(--neon-dim); text-decoration: none; color: var(--dark); }
.btn-ghost { background: transparent; border: 2px solid var(--neon); color: var(--neon); margin-left: 1rem; }
.btn-ghost:hover { background: var(--neon); color: var(--dark); }

section { padding: 4.5rem 1.5rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-title { font-family: var(--font-head); font-size: 1.8rem; color: var(--neon); margin-bottom: 0.5rem; letter-spacing: 0.04em; }
.section-subtitle { color: #aaa; margin-bottom: 2.5rem; max-width: 600px; }

.rooms-preview { background: var(--purple); }
.room-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.room-card { background: var(--dark); border: 1px solid var(--purple-light); padding: 2rem; transition: border-color 0.3s; }
.room-card:hover { border-color: var(--neon); }
.room-card h3 { font-family: var(--font-head); color: var(--neon); font-size: 1.1rem; margin-bottom: 0.75rem; }
.room-card .meta { color: var(--neon-dim); font-size: 0.9rem; margin-bottom: 1rem; }

.experience-section { background: var(--dark); }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; }
.feature { text-align: center; padding: 2rem 1.5rem; border: 1px solid var(--purple-light); }
.feature h3 { font-family: var(--font-head); color: var(--neon); margin: 1rem 0 0.5rem; font-size: 0.95rem; }

.reviews-section { background: linear-gradient(180deg, var(--purple) 0%, var(--dark) 100%); }
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.review { background: rgba(0,0,0,0.3); padding: 2rem; border-left: 3px solid var(--neon); }
.review cite { display: block; margin-top: 1rem; color: var(--neon-dim); font-style: normal; }

.location-section { background: var(--purple); }
.location-split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.location-split address { font-style: normal; line-height: 2; }

.page-hero { background: var(--purple); padding: 3.5rem 1.5rem; text-align: center; border-bottom: 2px solid var(--neon); }
.page-hero h1 { font-family: var(--font-head); font-size: 2.2rem; color: var(--neon); }
.content-section { padding: 3rem 1.5rem; }
.content-section .section-inner { max-width: 860px; }
.content-section h2 { font-family: var(--font-head); color: var(--neon); margin: 2rem 0 1rem; font-size: 1.2rem; }
.content-section p { margin-bottom: 1rem; }
.content-section ul { margin: 1rem 0 1rem 1.5rem; }
.content-section li { margin-bottom: 0.5rem; }

.contact-form label { display: block; margin-bottom: 0.35rem; font-weight: 600; color: var(--neon); }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; padding: 0.75rem; margin-bottom: 1.25rem;
  background: var(--dark); border: 1px solid var(--purple-light); color: var(--text);
  font-family: inherit; font-size: 1rem;
}
.contact-form button { padding: 0.9rem 2.5rem; background: var(--neon); color: var(--dark); border: none; font-family: var(--font-head); font-weight: 700; cursor: pointer; }

.site-footer { background: var(--dark); border-top: 2px solid var(--purple-light); padding: 3.5rem 1.5rem 0; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2.5rem; }
.footer-col h3 { font-family: var(--font-head); color: var(--neon); margin-bottom: 1rem; font-size: 0.95rem; }
.footer-col a { color: #bbb; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.contact-email { margin-top: 1rem; font-weight: 600; }
.phone { margin-top: 0.75rem; }
.footer-bottom { max-width: 1200px; margin: 2.5rem auto 0; padding: 1.5rem 0; border-top: 1px solid var(--purple-light); text-align: center; font-size: 0.9rem; color: #888; }

.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--purple); color: var(--text); padding: 1.25rem 1.5rem; z-index: 9999; border-top: 2px solid var(--neon); }
.cookie-banner.cookie-hidden { display: none; }
.cookie-inner { max-width: 1200px; margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
.cookie-actions { display: flex; gap: 0.75rem; }
.cookie-actions button { padding: 0.6rem 1.25rem; border: none; cursor: pointer; font-weight: 600; font-family: var(--font-head); font-size: 0.8rem; }
#cookie-accept { background: var(--neon); color: var(--dark); }
#cookie-decline { background: transparent; color: var(--text); border: 1px solid var(--text); }

@media (max-width: 768px) {
  .location-split { grid-template-columns: 1fr; }
  .btn-ghost { margin-left: 0; margin-top: 1rem; }
}
