/* NORG — No Outlay Revenue Generator
   Brand: blue + yellow. Montserrat Bold. (Quick base styling — to be refined.) */

:root {
    --blue:        #0a47b8;
    --blue-dark:   #0a2540;
    --yellow:      #ffd200;
    --yellow-dark: #e6bd00;
    --ink:         #0a2540;
    --muted:       #5b6b88;
    --bg:          #f4f6fb;
    --white:       #ffffff;
    --radius:      10px;
    --maxw:        820px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    font-weight: 600;
    color: var(--ink);
    background: var(--blue-dark) url('/gfx/southport-background.jpg') center top / cover no-repeat fixed;
    line-height: 1.6;
}

h1, h2, h3, legend, .logo, .btn { font-weight: 800; letter-spacing: -0.01em; }

/* ---------- Header / footer ---------- */
.site-header {
    background: var(--blue);
    padding: 18px 20px;
    text-align: center;
}
.site-header .logo img { display: inline-block; height: 64px; width: auto; border-radius: 6px; }

.site-footer {
    background: var(--blue-dark);
    color: #c8d4ec;
    text-align: center;
    padding: 26px 20px;
    font-size: 13px;
    font-weight: 600;
}
.site-footer .partner-logo { height: 64px; width: auto; }
.site-footer .copyright { margin: 16px 0 0; color: #9fb0d0; }
.site-footer .footer-legal { margin: 8px 0 0; color: #7e90b4; font-size: 12px; }
.site-footer .footer-legal a { color: #c8d4ec; }

/* ---------- Legal / long-form pages ---------- */
.legal h1 { color: var(--blue); font-size: clamp(24px, 4vw, 32px); margin: 0 0 4px; }
.legal h2 { color: var(--blue-dark); font-size: clamp(18px, 2.6vw, 22px); margin: 26px 0 8px; }
.legal .muted-date { color: var(--muted); font-size: 13px; margin: 0 0 20px; }
.legal ul { padding-left: 22px; }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--blue); }

/* ---------- Layout ---------- */
.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 32px 20px 56px;
}

section { margin-bottom: 36px; }

.hero {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 30px;
    margin-bottom: 36px;
    box-shadow: 0 8px 24px rgba(10, 37, 64, 0.18);
    border-top: 6px solid var(--yellow);
}
.hero h1 {
    font-size: clamp(26px, 5vw, 42px);
    line-height: 1.12;
    color: var(--blue);
    margin: 0 0 16px;
}
.hero .lead { font-size: clamp(17px, 2.4vw, 21px); }
.hero p { color: var(--ink); }
.hero strong { color: var(--blue); }

.copy-block {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 30px;
    box-shadow: 0 8px 24px rgba(10, 37, 64, 0.18);
}
.copy-block h2 { color: var(--blue); font-size: clamp(22px, 3.5vw, 28px); margin-top: 8px; }
.copy-block h3 { color: var(--blue-dark); font-size: clamp(18px, 2.6vw, 22px); margin: 26px 0 6px; }

/* ---------- Video ---------- */
.video-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(10, 37, 64, 0.18);
}
.video-embed video,
.video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: repeating-linear-gradient(45deg, var(--blue), var(--blue) 20px, #0c50cf 20px, #0c50cf 40px);
    color: var(--white);
    border-radius: var(--radius);
    font-size: clamp(16px, 2.4vw, 20px);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.video-placeholder .play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--blue-dark);
    font-size: 30px;
    padding-left: 6px;
}

/* ---------- Event callout ---------- */
.event-callout {
    background: var(--yellow);
    color: var(--blue-dark);
    border-radius: var(--radius);
    padding: 24px 26px;
    margin-top: 30px;
}
.event-callout h2 { color: var(--blue-dark); margin-top: 0; }

/* ---------- Forms ---------- */
.form-block {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 26px;
    box-shadow: 0 8px 24px rgba(10, 37, 64, 0.10);
    border-top: 6px solid var(--yellow);
}
.form-block h2 { color: var(--blue); margin-top: 0; }
.form-intro { color: var(--muted); margin-top: -4px; }

.norg-form .field { margin-bottom: 16px; }
.norg-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 700;
    font-size: 14px;
    color: var(--blue-dark);
}
.norg-form .optional { color: var(--muted); font-weight: 600; font-size: 12px; }
.norg-form input[type="text"],
.norg-form input[type="email"],
.norg-form input[type="tel"] {
    width: 100%;
    padding: 13px 14px;
    border: 2px solid #d7deec;
    border-radius: 8px;
    font: inherit;
    font-weight: 600;
    background: #fbfcfe;
}
.norg-form input:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(10, 71, 184, 0.15);
}

/* honeypot */
.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }

/* slot picker */
.slots { border: 0; padding: 0; margin: 4px 0 20px; }
.slots legend { padding: 0; margin-bottom: 10px; color: var(--blue-dark); font-size: 15px; }
.slot-option {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    margin: 0 12px 10px 0;
    padding: 12px 18px;
    border: 2px solid #d7deec;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    background: #fbfcfe;
}
.slot-option input { accent-color: var(--blue); transform: scale(1.2); }
.slot-option:has(input:checked) {
    border-color: var(--blue);
    background: #eef3ff;
}

/* buttons */
.btn {
    display: inline-block;
    border: 0;
    border-radius: 8px;
    padding: 15px 28px;
    font-size: 17px;
    cursor: pointer;
    text-decoration: none;
}
.btn-primary {
    background: var(--yellow);
    color: var(--blue-dark);
    box-shadow: 0 4px 0 var(--yellow-dark);
}
.btn-primary:hover { background: #ffdc2e; }
.btn-primary:active { transform: translateY(2px); box-shadow: 0 2px 0 var(--yellow-dark); }

.small-print { color: var(--muted); font-size: 12px; font-weight: 600; margin: 12px 0 0; }

.spam-note {
    background: #fff8d6;
    border: 1px solid var(--yellow);
    border-radius: 8px;
    padding: 10px 14px;
    margin: 0 0 18px;
    font-size: 13px;
    font-weight: 700;
    color: var(--blue-dark);
}

/* ---------- Alerts ---------- */
.alert { border-radius: 8px; padding: 14px 16px; margin-bottom: 18px; font-weight: 700; }
.alert ul { margin: 0; padding-left: 18px; }
.alert-error   { background: #fdecec; color: #b3261e; border: 1px solid #f5c2c0; }
.alert-success { background: #e7f7ec; color: #1b7a3d; border: 1px solid #b7e3c5; }

@media (max-width: 520px) {
    .slot-option { display: flex !important; margin-right: 0; }
}
