@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --bg-dark: #120607;
    --bordeaux: #4B0F1B;
    --ruby: #8B1227;
    --gold: #C8A76A;
    --neutral: #F3E9E6;
    --text-muted: rgba(243, 233, 230, 0.7);
    --transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--neutral);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .serif {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Splash Screen */
#splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s;
}

#splash.fade-out {
    opacity: 0;
    visibility: hidden;
}

.splash-logo {
    max-width: min(80vw, 560px);
    max-height: 60vh;
    animation: splashAnim 1.5s forwards;
    filter: blur(10px);
    opacity: 0;
}

.splash-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes splashAnim {
    0% { filter: blur(10px); opacity: 0; transform: scale(0.9); }
    100% { filter: blur(0); opacity: 1; transform: scale(1); }
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 5%;
    z-index: 1000;
    transition: background 0.3s ease;
}

header.scrolled {
    background: rgba(18, 6, 7, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(200, 167, 106, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

.logo {
    font-size: 1.5rem;
    color: var(--gold);
    letter-spacing: 0.2rem;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.mobile-only {
    display: none;
}

.nav-link {
    position: relative;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
    box-shadow: 0 0 10px var(--ruby);
}

.nav-link:hover {
    color: var(--gold);
    text-shadow: 0 0 15px rgba(139, 18, 39, 0.5);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Sections */
section {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(to bottom, rgba(18, 6, 7, 0.6), var(--bg-dark)), url('https://images.unsplash.com/photo-1614850523459-c2f4c699c52e?q=80&w=2070&auto=format&fit=crop') center/cover;
    max-width: 100%;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--neutral), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin-bottom: 2.5rem;
    color: var(--text-muted);
}

.cta-group {
    display: flex;
    gap: 1.5rem;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 2px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gold);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background: var(--neutral);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(200, 167, 106, 0.2);
}

.btn-outline {
    border: 1px solid var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background: rgba(200, 167, 106, 0.1);
    transform: translateY(-3px);
}

/* Collage */
.collage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 1.5rem;
    margin-top: 4rem;
}

.collage-item {
    position: relative;
    overflow: hidden;
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.collage-item:hover img {
    transform: scale(1.1);
}

.item-1 { grid-column: 1 / 3; grid-row: 1 / 3; }
.item-2 { grid-column: 3 / 5; grid-row: 1 / 2; }
.item-3 { grid-column: 3 / 4; grid-row: 2 / 3; }
.item-4 { grid-column: 4 / 5; grid-row: 2 / 3; }

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    text-align: center;
}

.feature-card {
    padding: 3rem;
    background: rgba(75, 15, 27, 0.1);
    border: 1px solid rgba(200, 167, 106, 0.1);
    transition: var(--transition);
}

.feature-card:hover {
    background: rgba(75, 15, 27, 0.2);
    border-color: var(--gold);
    transform: translateY(-10px);
}

.feature-card h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Room Gallery */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 4rem;
}

.room-card {
    background: #1a0a0c;
    border-bottom: 2px solid var(--gold);
    overflow: hidden;
}

.room-img-wrapper {
    height: 400px;
    overflow: hidden;
}

.room-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.room-card:hover img {
    transform: scale(1.05);
}

.room-info {
    padding: 2.5rem;
}

.room-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

/* Memo Icons */
.memo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.memo-card {
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(200, 167, 106, 0.1);
    transition: var(--transition);
}

.memo-card:hover {
    border-color: var(--gold);
    background: linear-gradient(to bottom, transparent, rgba(139, 18, 39, 0.1));
    transform: scale(1.05);
}

.memo-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

/* Contact Form */
.contact-section {
    background: var(--bordeaux);
    padding: 80px 5%;
    max-width: 100%;
    margin-top: 50px;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

input, select {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(200, 167, 106, 0.3);
    color: var(--neutral);
    font-family: inherit;
}

input:focus {
    outline: none;
    border-color: var(--gold);
}

.form-full { grid-column: 1 / -1; }

.privacy-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 1rem;
    font-style: italic;
}

/* Footer */
footer {
    padding: 50px 5% 20px;
    border-top: 1px solid rgba(200, 167, 106, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.disclaimer {
    color: var(--ruby);
    font-weight: bold;
    font-size: 1.2rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

/* SVG Divider */
.divider {
    width: 100%;
    height: 100px;
    fill: var(--bg-dark);
    margin-bottom: -1px;
}

/* Lightbox */
#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

#lightbox.active { display: flex; }

#lightbox img {
    max-width: 90%;
    max-height: 80%;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--neutral);
    font-size: 2rem;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .menu-toggle {
        display: flex;
    }

    nav {
        justify-content: center;
        min-height: 60px;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
        font-size: 1.2rem;
    }

    .menu-toggle {
        position: absolute;
        left: 0;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-dark);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 1.5rem;
        transition: var(--transition);
        z-index: 1500;
        padding: 100px 5% 40px;
        overflow-y: auto;
    }

    .nav-links.is-open {
        left: 0;
    }

    .mobile-rooms-nav {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        width: 100%;
        max-width: 500px;
        margin-top: 2rem;
        padding: 2rem 0;
        border-top: 1px solid rgba(200, 167, 106, 0.2);
    }

    .mobile-room-item {
        display: flex !important;
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
        width: 100%;
    }

    .mobile-room-img {
        width: 100%;
        height: auto;
        min-height: 120px;
        aspect-ratio: 1/1;
        object-fit: cover;
        border: 1px solid var(--gold);
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .mobile-room-name {
        font-size: 0.75rem;
        color: var(--gold);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .hero h1 { font-size: 2.5rem; }
    .collage-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .item-1, .item-2, .item-3, .item-4 { grid-column: 1 / -1; grid-row: auto; height: 300px; }
    .form-grid { grid-template-columns: 1fr; }
    .rooms-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .mobile-rooms-nav {
        grid-template-columns: 1fr;
    }
}

/* 18+ Popup Styles */
.age-verify-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 6, 7, 0.98);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.age-verify-overlay.active {
    opacity: 1;
    visibility: visible;
}

.age-verify-modal {
    background: #1a0a0c;
    border: 1px solid var(--gold);
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 0 50px rgba(139, 18, 39, 0.3);
    transform: scale(0.9);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.age-verify-overlay.active .age-verify-modal {
    transform: scale(1);
}

.age-verify-modal h2 {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.age-verify-modal p {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.age-verify-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-verify-btns .btn {
    padding: 0.8rem 1.5rem;
    min-width: 150px;
}
