/* CSS RESET & VARIABLES */
:root {
    --bg-dark: #1f1e1c;
    /* Off-black with warm tone */
    --bg-light: #e8e5dc;
    /* Beige / off-white */
    --text-dark: #2a2825;
    /* Off-black for light backgrounds */
    --text-light: #f0ebe1;
    /* Pale beige for dark backgrounds */
    --accent: #d9381e;

    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

img {
    pointer-events: none;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    height: 100%;
    min-height: -webkit-fill-available;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* NAVIGATION */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 4rem;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-light);
    transition: color 0.5s ease;
}

.nav-logo .logo-img {
    height: 32px;
    width: auto;
    filter: brightness(1);
    transition: filter 0.5s ease, height 0.5s ease;
}

/* Light Theme Navigation (when over light bg) */
.main-nav.nav-dark {
    padding: 1rem 4rem;
    background-color: rgba(232, 229, 220, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.main-nav.nav-dark .nav-link {
    color: var(--text-dark);
}

.main-nav.nav-dark .nav-logo .logo-img {
    filter: invert(1) brightness(0); /* Make white logo black */
}

/* HERO SECTION */
.hero {
    height: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    max-height: 100dvh !important;
    position: relative;
    display: flex;
    flex-direction: column;
    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;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(31, 30, 28, 0.4);
    /* Matches --bg-dark */
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 8rem;
    line-height: 0.9;
    letter-spacing: -2px;
    margin-bottom: 1rem;
    font-weight: 400;
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 300;
}

/* Corner Links */
.hero-corner-nav {
    position: absolute;
    bottom: calc(3rem + env(safe-area-inset-bottom));
    width: 100%;
    padding: 0 4rem;
    display: flex;
    justify-content: space-between;
    z-index: 10;
}

.corner-link {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-light);
    opacity: 0.7;
    transition: opacity 0.3s ease;
    position: relative;
}

.corner-link:hover {
    opacity: 1;
}

.corner-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--text-light);
    transition: width 0.3s ease;
}

.corner-link:hover::after {
    width: 100%;
}

.scroll-down {
    position: absolute;
    bottom: calc(3rem + env(safe-area-inset-bottom));
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 0.7rem;
    letter-spacing: 2px;
    opacity: 0.5;
}

.scroll-down .line {
    width: 1px;
    height: 40px;
    background-color: var(--text-light);
}

/* VIBE / ABOUT SECTION */
.vibe-section {
    background-color: var(--bg-light);
    color: var(--text-dark);
    padding: 10rem 4rem;
}

.vibe-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.vibe-text h2 {
    font-family: var(--font-serif);
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: -1px;
}

.vibe-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 500px;
}

.vibe-details p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vibe-images {
    position: relative;
    height: 700px;
}

.vibe-img {
    position: absolute;
    object-fit: cover;
}

.img-1 {
    width: 70%;
    height: 80%;
    top: 0;
    right: 0;
    z-index: 1;
}

.img-2 {
    width: 50%;
    height: 60%;
    bottom: 0;
    left: 0;
    z-index: 2;
    border: 10px solid var(--bg-light);
}

/* MINIMAL LOCATION SECTION */
.location-section-minimal {
    background-color: var(--bg-dark);
    padding: 12rem 4rem;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.02);
}

.label-minimal {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 4px;
    color: var(--accent);
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.location-title {
    font-family: var(--font-serif);
    font-size: clamp(3.5rem, 10vw, 6rem);
    line-height: 0.95;
    margin-bottom: 2.5rem;
    font-weight: 400;
    letter-spacing: -2px;
}

.location-address {
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.location-hours {
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 4rem;
}

.location-actions {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.text-link {
    font-size: 0.7rem;
    letter-spacing: 3px;
    font-weight: 800;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 5px;
    transition: all 0.3s ease;
}

.text-link:hover {
    border-bottom-color: var(--text-light);
    opacity: 0.8;
}

/* BOOKING SECTION (Dedicated Page Styles) */
.book-section {
    padding: 8rem 4rem;
    min-height: 100vh;
}

.book-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.book-left h2 {
    font-family: var(--font-serif);
    font-size: 6rem;
    line-height: 0.9;
    font-weight: 400;
    margin-bottom: 2rem;
}

.book-left p {
    font-size: 1.2rem;
    max-width: 400px;
    margin-bottom: 4rem;
    opacity: 0.8;
}

.book-logo {
    width: 250px;
    opacity: 0.1;
}

.book-form {
    background: rgba(255, 255, 255, 0.03);
    padding: 4rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    flex: 1;
}

.form-group label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: #888;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-family: var(--font-sans);
    font-size: 1rem;
    background: transparent;
    color: var(--text-light);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-bottom-color: var(--text-light);
}

.btn-submit {
    width: 100%;
    background: var(--text-light);
    color: var(--bg-dark);
    border: none;
    padding: 1.5rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 2rem;
    transition: opacity 0.3s ease;
}

.btn-submit:hover {
    opacity: 0.9;
}

/* COMPACT AESTHETIC FOOTER - INVERTED SCHEME */
.compact-footer {
    background-color: var(--bg-light); /* Warm Beige */
    color: var(--text-dark);
    padding: 3rem 4rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-wrap {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.brand-name {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.footer-contact-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-contact-info a {
    font-size: 0.65rem;
    color: #444;
    letter-spacing: 1px;
}

.dot {
    width: 3px;
    height: 3px;
    background: #ccc;
    border-radius: 50%;
}

.compact-link {
    font-size: 0.7rem;
    letter-spacing: 3px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 1.5rem;
    transition: all 0.3s;
}

.compact-link:hover {
    color: var(--accent);
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-icons a {
    font-size: 0.65rem;
    font-weight: 800;
    color: #888;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--text-dark);
}

.award-icons {
    display: flex;
    gap: 1rem;
}

.award-placeholder {
    width: 28px;
    height: 28px;
    background: rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 50%;
}

.footer-sub {
    max-width: 1400px;
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    font-size: 0.55rem;
    letter-spacing: 2px;
    color: #999;
    text-align: left;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .vibe-container,
    .book-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav {
        padding: 1.5rem 2rem;
    }

    .nav-link {
        display: none;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-corner-nav {
        padding: 0 1.5rem;
        bottom: calc(1.5rem + env(safe-area-inset-bottom));
    }

    .scroll-down {
        bottom: calc(1.5rem + env(safe-area-inset-bottom));
    }

    .corner-link {
        font-size: 0.65rem;
        letter-spacing: 2px;
    }

    .vibe-section,
    .maps-section,
    .book-section,
    .location-section-minimal {
        padding: 5rem 2rem;
    }

    .vibe-text h2 {
        font-size: 3rem;
    }

    .book-left h2 {
        font-size: 4rem;
    }

    .book-form {
        padding: 2rem;
    }

    .form-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    /* Footer Mobile Fix */
    .compact-footer {
        padding: 4rem 2rem;
    }
    .footer-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 3rem;
    }
    .footer-center {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .compact-link {
        margin: 0;
    }
}

@media (max-width: 480px) {
    .hero-corner-nav {
        flex-direction: row;
    }
}