@font-face {
    font-family: 'William Shakespeare';
    src: url('fonts/William Shakespeare WF Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #D4A843;
    --gold-light: #E8C96A;
    --gold-dim: #B8922F;
    --dark-blue: #1a1a3e;
}

body {
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: var(--gold);
    background: var(--dark-blue);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Full-screen page with background */
.page {
    position: relative;
    min-height: 100vh;
    background: url('assets/bg-desktop.jpg') center center / cover no-repeat;
    display: flex;
    align-items: stretch;
}

/* Dark overlay to ensure text readability */
.page::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 15, 50, 0.45);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 1vw 1vw 3vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
}

/* Top section: two columns on desktop */
.top-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    flex: 1;
}

.left-column {
    flex: 0 1 45%;
    max-width: 45%;
    text-align: center;
    margin-top: 100px;
}

.right-column {
    flex: 0 1 55%;
    max-width: 55%;
    text-align: right;
    padding-top: 0;
}

/* Title */
.title {
    font-family: 'William Shakespeare', 'Pinyon Script', cursive;
    font-size: clamp(5.5rem, 12vw, 11rem);
    font-weight: 400;
    color: #ffffff;
    line-height: 1.1;
    text-shadow: 2px 3px 6px rgba(0, 0, 0, 0.5);
    margin-bottom: -0.15em;
    position: relative;
    z-index: 1;
}

/* Subtitle */
.subtitle {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.1rem, 2vw, 1.6rem);
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 0.6em;
}

/* By line */
.creators {
    font-family: 'Cinzel', serif;
    font-size: clamp(1rem, 1.6vw, 1.3rem);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 0.15em;
}

.creator-names {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.3rem, 2.4vw, 2rem);
    font-weight: 600;
    color: var(--gold-light);
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.2em;
}

/* Contact info */
.contact-info {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 1.5em;
}

.contact-col {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.contact-col a {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
    color: var(--gold);
    text-decoration: none;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    transition: color 0.2s;
}

.contact-col a:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

/* Tagline */
.tagline {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.1rem, 2.4vw, 1.9rem);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.4;
    color: var(--gold-light);
    text-shadow: 2px 3px 6px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.04em;
}

/* Buttons */
.buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3em;
}

.btn {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.1rem, 1.8vw, 1.5rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold);
    background: transparent;
    border: 2px solid var(--gold);
    padding: 0.8em 2.5em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    text-decoration: none;
    display: inline-block;
}

.btn:hover {
    background: var(--gold);
    color: var(--dark-blue);
}

/* Mobile splash - hidden on desktop */
.splash {
    display: none;
}

/* ========== MOBILE / PORTRAIT ========== */
@media (max-width: 768px) {
    .page {
        background-image: url('assets/bg-mobile.jpg');
        background-position: 60% center;
    }

    .page::before {
        background: rgba(15, 15, 50, 0.55);
    }

    .content {
        padding: 2rem 0;
        align-items: center;
    }

    .top-section {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
        align-items: center;
    }

    .left-column,
    .right-column {
        max-width: 100%;
        text-align: center;
        margin-top: 0;
        padding: 0;
    }

    .right-column {
        display: none;
    }

    /* Mobile splash overlay */
    .splash {
        display: flex;
        position: fixed;
        inset: 0;
        z-index: 100;
        background: var(--dark-blue);
        align-items: center;
        justify-content: center;
        padding: 2rem;
        transition: opacity 1s ease;
        opacity: 1;
    }

    .splash.fade-out {
        opacity: 0;
    }

    .splash-tagline {
        font-family: 'Cinzel', serif;
        font-size: 1.8rem;
        font-weight: 700;
        text-transform: uppercase;
        line-height: 1.6;
        color: var(--gold-light);
        text-align: center;
        letter-spacing: 0.05em;
    }

    .title {
        font-size: 24vw;
        line-height: 1;
        padding: 0;
        white-space: nowrap;
    }

    .subtitle {
        font-size: 1.1rem;
        margin-bottom: 0.8em;
    }

    .creators {
        font-size: 1rem;
        margin-bottom: 0.1em;
    }

    .creator-names {
        font-size: 1.6rem;
    }

    .creator-names .name {
        display: block;
    }

    .creator-names .amp {
        display: block;
        font-size: 0.7em;
        margin: 0.1em 0;
    }

    .tagline {
        font-size: 1.1rem;
        line-height: 1.5;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .contact-col {
        align-items: center;
    }

    .contact-col a {
        font-size: 1.2rem;
    }

    .buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        width: 80%;
        max-width: 300px;
        padding: 1em 2.5em;
        font-size: 1.15rem;
    }
}

/* Small phones */
@media (max-width: 400px) {
    .content {
        padding: 1.5rem 0;
    }
}
