/* ============================================================
   BASE COLORS AND VARIABLES
============================================================ */

:root {
    --cream: #faf5eb;
    --cream-dark: #f0e8d8;

    --sunset-1: #fdf1f8;
    --sunset-2: #ecdafe;

    --night-1: #1c1b25;
    --night-2: #13121b;
    --night-3: #0e0d13;
    --night-4: #08070c;

    --text-dark: #1a1a1a;
    --text-light: #f1f1ff;

    --neon-teal: #39f3d0;
    --neon-lime: #afff3e;
    --neon-magenta: #ff4ccd;

    --neon-accent: linear-gradient(90deg, var(--neon-teal), var(--neon-lime), var(--neon-magenta));

    --divider-light: rgba(0, 0, 0, 0.10);
    --divider-dark: rgba(255, 255, 255, 0.12);
}

/* ============================================================
   GLOBAL
============================================================ */

body {
    margin: 0;
    background: var(--cream);
    color: var(--text-dark);
    font-family: "DM Sans", sans-serif;
    font-size: 17px;
    line-height: 1.7;
}

.wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 90px 0;
    border-bottom: 4px solid var(--divider-light);
}

/* ============================================================
   SECTION BACKGROUNDS
============================================================ */

.section-day { background: var(--cream); }
.section-sunset { background: var(--sunset-1); }
.section-dusk { background: var(--sunset-2); }
.section-night { background: var(--night-1); color: var(--text-light); }
.section-night-deep { background: var(--night-2); color: var(--text-light); }
.section-night-deeper { background: var(--night-3); color: var(--text-light); }
.section-night-solid { background: var(--night-4); color: var(--text-light); }

/* ============================================================
   HARD SECTION DIVIDERS
============================================================ */

.section + .section {
    border-top: 6px solid var(--divider-light);
}

.section-night,
.section-night-deep,
.section-night-deeper,
.section-night-solid {
    border-bottom: 4px solid var(--divider-dark);
}

.section-night + .section-night,
.section-night-deep + .section-night-deep,
.section-night-deeper + .section-night-deeper {
    border-top: 6px solid var(--divider-dark);
}

/* ============================================================
   HERO
============================================================ */

.hero {
    text-align: center;
    padding: 130px 26px 160px;
    background: var(--cream);
    border-bottom: 10px solid var(--neon-magenta);
    box-shadow: 0 6px 14px rgba(0,0,0,0.1);
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -18px;
    left: 0;
    right: 0;
    height: 18px;
    background: var(--neon-accent);
    opacity: 0.35;
}

.hero-title {
    font-size: clamp(2.8rem, 7vw, 4.8rem);
    font-weight: 800;
    color: #1d1b2a; /* DARK text */
    position: relative;
    text-shadow:
        0 0 2px var(--neon-teal),
        0 0 4px var(--neon-lime),
        0 0 6px var(--neon-magenta);
}

.hero-title::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    background: var(--neon-accent);
    -webkit-background-clip: text;
    color: transparent;
    opacity: 0.25; /* faint neon overlay */
}

.hero-logo {
    width: 300px;         /* desktop */
    max-width: 40vw;      /* responsive scaling */
    height: auto;
    display: block;
    margin: 0 auto 28px;
    border-radius: 16px;
}

.hero-small-text {
    font-size: 10px!important;
}



/* ============================================================
   TYPOGRAPHY
============================================================ */

h1, h2, h3 {
    font-family: "Space Grotesk", sans-serif;
    margin-top: 0;
}

h1 {
    font-size: clamp(2.8rem, 7vw, 4.8rem);
    font-weight: 700;
    letter-spacing: -1px;
    background: var(--neon-accent);
    -webkit-background-clip: text;
    color: transparent;
}

h2 {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    margin-bottom: 26px;
    position: relative;
}

h2::after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    background: var(--neon-accent);
    margin-top: 12px;
    border-radius: 4px;
}

h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

/* ============================================================
   COUNTDOWN
============================================================ */

.count-box {
    display: inline-block;
    padding: 16px 26px;
    background: white;
    border-radius: 18px;
    margin: 30px 0;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
    border: 2px solid rgba(0,0,0,0.15);
}

.count-label {
    opacity: 0.7;
    font-size: 0.75rem;
}

/* ============================================================
   BUTTONS
============================================================ */

.btn {
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 600;
    margin: 4px;
    display: inline-block;
}

.btn.primary {
    background: var(--neon-accent);
    color: #111;
}

.btn.subtle {
    background: #e5e5e5;
    color: #111;
}

/* ============================================================
   CARDS
============================================================ */

.content-block {
    max-width: 720px;
    margin-bottom: 40px;
}

.card {
    background: white;
    padding: 28px 32px;
    border-radius: 20px;
    margin-top: 26px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border: 3px solid rgba(0,0,0,0.1);
}

.card-dark {
    background: #0f0e14;
    color: var(--text-light);
    border: 3px solid rgba(255,255,255,0.15);
}

.card a {
    color: var(--neon-teal);
}

/* ============================================================
   GRID
============================================================ */

.grid {
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* ============================================================
   MAP
============================================================ */

.map-img {
    width: 100%;
    border-radius: 18px;
    display: block;
}

.caption {
    opacity: 0.75;
    text-align: center;
    margin-top: 14px;
}

/* ============================================================
   FOOTER
============================================================ */

.footer {
    background: #07060c;
    color: #e8e4ff;
    padding: 60px 24px;
    border-top: 6px solid var(--neon-magenta);
}

.footer-flex {
    display: flex;
    gap: 26px;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-seal img {
    width: 85px;
    height: auto;
    display: block;
}

.footer-text {
    flex: 1;
    min-width: 260px;
}

.footer-text a {
    color: var(--neon-teal);
    font-weight: 700;
    text-decoration: underline;
}

.footer-text .small {
    opacity: 0.75;
    font-size: 0.9rem;
    margin-top: 14px;
}

/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 700px) {
    .footer-flex {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-seal img {
        margin-bottom: 20px;
    }

    .card {
        padding: 22px 24px;
    }

    h1 {
        font-size: 2.7rem;
    }

    .hero-logo {
        width: 250px;     /* hard cap for iPhone screens */
        max-width: 60vw;  /* adaptive but smaller */
    }
}
