﻿/* =========================
   RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'VT323', monospace;
    background: #7fc8c4; /* Tiny Swords teal */
    color: #1b2b2b;
    line-height: 1.6;
}

img, video {
    user-select: none;
    -webkit-user-drag: none;
}

/* =========================
   TOP NAV
========================= */
.topNav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 30px;
    background: #5aaea9;
}

.logo {
    font-size: 28px;
    color: #fff7d6;
}

.topNav nav a {
    margin-left: 20px;
    font-size: 20px;
    color: #fff7d6;
    text-decoration: none;
}

    .topNav nav a:hover {
        text-decoration: underline;
    }

/* =========================
   HERO
========================= */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.heroVideo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.heroOverlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

.heroContent {
    position: relative;
    z-index: 2;
    height: 100%;
    max-width: 900px;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

    .heroContent h1 {
        font-size: clamp(64px, 8vw, 96px);
        color: #fff7d6;
    }

    .heroContent p {
        font-size: 26px;
        margin-top: 20px;
        color: #e8fffe;
    }

/* =========================
   BUTTONS
========================= */
.heroButtons {
    margin-top: 30px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 22px;
    text-decoration: none;
    margin: 10px;
}

.primary {
    background: #ffd166;
    color: #3a2e1f;
}

.secondary {
    border: 2px solid #ffd166;
    color: #ffd166;
}

/* =========================
   FEATURES
========================= */
.feature {
    max-width: 1100px;
    margin: 100px auto;
    padding: 0 20px;
    display: flex;
    gap: 40px;
    align-items: center;
}

    .feature.reverse {
        flex-direction: row-reverse;
    }

.featureText h2 {
    font-size: 40px;
    color: #3a2e1f;
}

.featureText p {
    font-size: 24px;
    margin-top: 12px;
}

.featureMedia video,
.featureMedia img {
    width: 100%;
    max-width: 480px;
    border-radius: 12px;
}

/* =========================
   FOOTER
========================= */
footer {
    text-align: center;
    padding: 40px 20px;
    background: #5aaea9;
    color: #fff7d6;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 800px) {
    .feature,
    .feature.reverse {
        flex-direction: column;
    }

    .heroContent h1 {
        font-size: 56px;
    }
}

/* =========================
   MAILING CTA
========================= */

.mailingCTA {
    text-align: center;
    padding: 4rem 1.5rem;
    background: rgba(0,0,0,0.15);
}

    .mailingCTA h2 {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .mailingCTA p {
        max-width: 520px;
        margin: 0 auto 1.5rem;
        opacity: 0.9;
    }

.mailingForm {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

    .mailingForm input {
        padding: 0.75rem 1rem;
        min-width: 240px;
        font-family: inherit;
    }

.finePrint {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    opacity: 0.7;
}
