:root {
    --black: #0a0a0a;
    --dark-grey: #1a1a1a;
    --neon-red: #FF0055;
    --white: #ffffff;
    --concrete: #333333;
    
    --font-display: 'Anton', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    line-height: 1.5;
    overflow-x: hidden;
}

/* Noise Texture */
.noise {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAIklEQVQoU2P8////fwYkYGJgYIAxJgZ04EzE6gJEG84EBAA72w/1G4q26QAAAABJRU5ErkJggg==');
    opacity: 0.05; pointer-events: none; z-index: 50;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 100px 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Header */
.core-header { padding: 30px 0; position: fixed; top: 0; width: 100%; z-index: 1000; background: rgba(10,10,10,0.9); border-bottom: 1px solid var(--concrete); backdrop-filter: blur(5px); }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-display); font-size: 2.5rem; letter-spacing: 2px; text-transform: uppercase; color: var(--white); }
.neon { color: var(--neon-red); text-shadow: 0 0 10px rgba(255, 0, 85, 0.5); }

.menu-btn { cursor: pointer; display: flex; flex-direction: column; gap: 8px; width: 40px; }
.menu-btn span { height: 4px; background: var(--white); width: 100%; transition: 0.3s; }
.menu-btn:hover span { background: var(--neon-red); }

/* Overlay Nav */
.overlay-nav { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: var(--black); z-index: 999; display: flex; flex-direction: column; justify-content: center; align-items: center; transform: translateY(-100%); transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1); }
.overlay-nav.active { transform: translateY(0); }
.overlay-nav a { font-family: var(--font-display); font-size: 4rem; color: var(--concrete); margin: 5px 0; text-transform: uppercase; transition: 0.3s; }
.overlay-nav a:hover, .overlay-nav a.active { color: var(--neon-red); letter-spacing: 5px; text-shadow: 0 0 20px var(--neon-red); }
.overlay-nav a.highlight { color: var(--white); -webkit-text-stroke: 2px var(--white); }

/* Hero */
.hero-neon { height: 100vh; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0.4; filter: contrast(120%) grayscale(100%); }
.hero-content { z-index: 60; position: relative; }
.hero-content h1 { font-family: var(--font-display); font-size: 6rem; line-height: 0.9; text-transform: uppercase; color: var(--white); margin: 0; }
.hero-content p { font-size: 1.2rem; letter-spacing: 5px; color: var(--neon-red); margin-top: 20px; font-weight: 700; background: black; display: inline-block; padding: 5px; }

.booking-widget { margin-top: 50px; background: rgba(0,0,0,0.8); padding: 20px; display: inline-block; border: 1px solid var(--concrete); }
#bookForm { display: flex; gap: 10px; }
.dark-input { background: #222; border: 1px solid #444; color: white; padding: 10px; font-family: var(--font-body); }
.btn-neon { background: var(--neon-red); color: white; border: none; padding: 10px 30px; font-family: var(--font-display); letter-spacing: 2px; font-size: 1.2rem; cursor: pointer; transition: 0.2s; }
.btn-neon:hover { background: white; color: black; box-shadow: 0 0 20px white; }

/* Grid */
.section-title { margin-bottom: 60px; }
.section-title h2 { font-family: var(--font-display); font-size: 4rem; margin-bottom: 10px; }
.neon-bar { width: 100px; height: 5px; background: var(--neon-red); box-shadow: 0 0 10px var(--neon-red); }

.masonry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; grid-auto-rows: 400px; }
.grid-item { position: relative; overflow: hidden; border: 1px solid var(--concrete); }
.grid-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; filter: grayscale(100%); }
.grid-item:hover img { transform: scale(1.1); filter: grayscale(0%); }
.grid-item.large { grid-column: span 2; }
.caption { position: absolute; bottom: 0; left: 0; width: 100%; padding: 30px; background: linear-gradient(to top, black, transparent); }
.caption h3 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 5px; }
.caption a { color: var(--neon-red); font-weight: bold; text-transform: uppercase; border-bottom: 2px solid var(--neon-red); }

/* Vibe & Reviews */
.vibe-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.text-block h1 { font-family: var(--font-display); font-size: 4rem; line-height: 1; }
.outline { -webkit-text-stroke: 2px white; color: transparent; }
.features-list { list-style: none; margin-top: 30px; border-left: 2px solid var(--neon-red); padding-left: 20px; }
.features-list li { margin-bottom: 10px; font-weight: bold; font-size: 1.2rem; }
.img-block img { width: 100%; border: 1px solid var(--concrete); }

.reviews-stack { display: flex; flex-direction: column; gap: 30px; max-width: 800px; margin: 0 auto; }
.review-card { background: var(--dark-grey); padding: 40px; border: 1px solid var(--concrete); }
.review-card.neon-border { border-color: var(--neon-red); box-shadow: 0 0 15px rgba(255, 0, 85, 0.2); }
.rating { color: var(--neon-red); font-size: 1.5rem; margin-bottom: 15px; }
.review-card p { font-size: 1.2rem; font-style: italic; margin-bottom: 20px; color: #ccc; }
.review-card strong { font-family: var(--font-display); letter-spacing: 1px; }

/* Contact */
.contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.info-dark h2 { font-family: var(--font-display); font-size: 3rem; color: var(--neon-red); }
.contact-details { margin-top: 40px; }
.contact-details .big { font-size: 2.5rem; font-family: var(--font-display); color: white; margin-bottom: 20px; }

.dark-form .input-wrap { margin-bottom: 20px; }
.dark-form label { display: block; font-family: var(--font-display); letter-spacing: 1px; margin-bottom: 5px; color: #888; }
.dark-form input, .dark-form select, .dark-form textarea { width: 100%; background: #111; border: 1px solid #333; color: white; padding: 15px; font-family: var(--font-body); }
.dark-form input:focus { border-color: var(--neon-red); outline: none; }
.btn-neon.full { width: 100%; }

/* Legal */
.legal-text { max-width: 800px; margin: 0 auto; }
.legal-text h1 { font-family: var(--font-display); font-size: 4rem; }
.legal-text h3 { color: var(--neon-red); margin-top: 40px; font-family: var(--font-display); font-size: 2rem; }

/* Footer */
.core-footer { background: black; border-top: 1px solid var(--concrete); padding-top: 60px; margin-top: 100px; }
.footer-content { display: flex; justify-content: space-between; padding-bottom: 40px; }
.brand h4 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 5px; }
.links a { color: #888; margin-left: 20px; text-transform: uppercase; font-weight: bold; }
.links a:hover { color: var(--neon-red); }

.ticker-wrap { width: 100%; overflow: hidden; background: var(--neon-red); padding: 10px 0; }
.ticker { white-space: nowrap; font-family: var(--font-display); font-size: 1.5rem; color: black; animation: ticker 20s linear infinite; }
@keyframes ticker { 0% { transform: translate3d(0, 0, 0); } 100% { transform: translate3d(-100%, 0, 0); } }

/* Cookie Bar */
.cookie-bar { position: fixed; bottom: 0; left: 0; width: 100%; background: var(--neon-red); padding: 15px; z-index: 2000; display: none; }
.cookie-bar.active { display: block; }
.cookie-bar .wrapper { display: flex; justify-content: center; align-items: center; gap: 20px; }
.cookie-bar span { color: black; font-weight: bold; font-family: var(--font-display); font-size: 1.2rem; }
.cookie-bar button { background: black; color: white; border: none; padding: 5px 20px; font-family: var(--font-display); cursor: pointer; }

@media (max-width: 900px) {
    .hero-content h1 { font-size: 3.5rem; }
    #bookForm { flex-direction: column; }
    .masonry-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
    .grid-item.large { grid-column: span 1; }
    .vibe-container, .contact-split { grid-template-columns: 1fr; }
    .overlay-nav a { font-size: 2.5rem; }
}