@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Source+Sans+3:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --coral: #e07850;
    --copper: #b87333;
    --cream: #faf6f0;
    --charcoal: #2d2926;
    --warm-gray: #6b6057;
    --sand: #ddd5c8;
}

body {
    font-family: 'Source Sans 3', sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    line-height: 1.75;
    min-height: 100vh;
}

.top-bar {
    background: var(--charcoal);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.25rem 2rem;
}

.top-bar-inner {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--coral);
    text-decoration: none;
    letter-spacing: 1px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: 2px solid var(--coral);
    border-radius: 6px;
    padding: 8px 10px;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--coral);
    margin: 5px 0;
}

.site-nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.site-nav a {
    color: var(--cream);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.site-nav a:hover {
    color: var(--coral);
}

.welcome-section {
    background: linear-gradient(135deg, var(--charcoal) 0%, #3d3632 100%);
    padding: 5rem 2rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.welcome-content {
    max-width: 1500px;
    margin: 0 auto;
    width: 100%;
}

.welcome-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--cream);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.welcome-content h1 span {
    color: var(--coral);
}

.intro-text {
    font-size: 1.2rem;
    color: var(--sand);
    max-width: 700px;
    margin-bottom: 2.5rem;
}

.highlight-boxes {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.highlight-box {
    background: rgba(224, 120, 80, 0.15);
    border: 2px solid var(--coral);
    color: var(--cream);
    padding: 1rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 8px;
}

.slot-frame {
    width: 100%;
    max-width: 1300px;
    background: var(--charcoal);
    border: 6px solid var(--copper);
    border-radius: 12px;
    overflow: hidden;
    margin: 2rem auto 0;
}

.slot-frame-inner {
    position: relative;
    padding-top: 56.25%;
}

.slot-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.about-area {
    padding: 6rem 2rem;
    background: var(--cream);
}

.about-grid {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.about-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(45, 41, 38, 0.08);
    border-bottom: 4px solid var(--coral);
}

.about-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--copper);
    margin-bottom: 1rem;
}

.about-card p {
    color: var(--warm-gray);
    font-size: 0.95rem;
}

.text-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.text-page h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--charcoal);
    margin-bottom: 2rem;
    border-bottom: 3px solid var(--coral);
    padding-bottom: 1rem;
}

.text-page h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--copper);
    margin: 2.5rem 0 1rem;
}

.text-page p {
    margin-bottom: 1.2rem;
    color: var(--warm-gray);
}

.text-page ul {
    margin: 1rem 0 1.5rem 2rem;
    color: var(--warm-gray);
}

.text-page li {
    margin-bottom: 0.5rem;
}

.callout {
    background: white;
    border-left: 5px solid var(--coral);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 2px 10px rgba(45, 41, 38, 0.06);
}

.bottom-bar {
    background: var(--charcoal);
    padding: 3rem 2rem;
}

.bottom-bar-inner {
    max-width: 1500px;
    margin: 0 auto;
    text-align: center;
}

.resource-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.resource-links a {
    color: var(--coral);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.resource-links a:hover {
    text-decoration: underline;
}

.legal-text {
    color: var(--warm-gray);
    font-size: 0.85rem;
}

.age-screen {
    position: fixed;
    inset: 0;
    background: rgba(45, 41, 38, 0.97);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-card {
    background: var(--cream);
    padding: 3.5rem;
    border-radius: 16px;
    max-width: 500px;
    margin: 1rem;
    text-align: center;
    border-top: 5px solid var(--coral);
}

.age-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.age-card p {
    color: var(--warm-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.age-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-age {
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    border: none;
}

.btn-enter {
    background: var(--coral);
    color: white;
}

.btn-enter:hover {
    background: var(--copper);
}

.btn-leave {
    background: white;
    color: var(--charcoal);
    border: 2px solid var(--charcoal);
}

.btn-leave:hover {
    background: var(--sand);
}

@media (max-width: 1100px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .site-nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--charcoal);
        flex-direction: column;
        padding: 1.5rem 2rem;
        gap: 0;
        border-top: 1px solid rgba(224, 120, 80, 0.3);
    }

    .site-nav ul.show {
        display: flex;
    }

    .site-nav li {
        border-bottom: 1px solid rgba(250, 246, 240, 0.1);
    }

    .site-nav a {
        display: block;
        padding: 1rem 0;
    }

    .welcome-content h1 {
        font-size: 2.2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .highlight-boxes {
        flex-direction: column;
    }

    .site-logo {
        font-size: 1.3rem;
    }

    .text-page h1 {
        font-size: 2rem;
    }
}
