﻿:root {
    --pool: #00b8d9;
    --deep: #0f3760;
    --navy: #0a2f57;
    --teal: #00a9bf;
    --aqua: #dffaff;
    --coral: #f45c6b;
    --gold: #ffd75e;
    --cream: #fff8df;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

body.splash-public-page {
    margin: 0;
    min-height: 100vh;
    font-family: 'Segoe UI', Arial, sans-serif;
    color: var(--deep);
    background: radial-gradient(circle at 18% 5%, rgba(255,255,255,.95), rgba(255,255,255,0) 32%), linear-gradient(180deg, #e8fbff 0%, #d8f6ff 46%, #91ddec 100%);
}

.splash-topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(15,55,96,.10);
}

.splash-topbar-inner {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.splash-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--deep);
    font-size: 24px;
    font-weight: 900;
    text-decoration: none;
}

.brand-mark,
.mini-logo {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
    background: linear-gradient(135deg, var(--pool), #6c63ff);
    box-shadow: 0 10px 24px rgba(0, 99, 160, .22);
}

.book-now-button {
    border: 0;
    border-radius: 999px;
    padding: 16px 26px;
    color: white;
    background: linear-gradient(90deg, var(--pool), #6c63ff);
    font-weight: 900;
    font-size: 18px;
    box-shadow: 0 14px 28px rgba(0, 129, 190, .28);
    text-decoration: none;
}

.flyer-page {
    width: min(1020px, calc(100% - 28px));
    margin: 28px auto;
    border: 8px solid #14a9cb;
    border-radius: 26px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.88) 45%, rgba(208,247,255,.85)), repeating-linear-gradient(-12deg, rgba(255,255,255,.23) 0 10px, rgba(255,255,255,0) 10px 22px);
    box-shadow: 0 26px 70px rgba(10,47,87,.22);
    position: relative;
}

    .flyer-page::before {
        content: "";
        position: absolute;
        left: -10%;
        right: -10%;
        bottom: -130px;
        height: 360px;
        background: radial-gradient(circle at 20% 30%, rgba(255,255,255,.55), rgba(255,255,255,0) 20%), linear-gradient(180deg, rgba(0,184,217,.10), rgba(0,151,209,.32));
        border-radius: 50% 50% 0 0;
        pointer-events: none;
    }

.flyer-hero,
.flyer-content-grid,
.tagline-section,
.contact-band,
.bottom-note {
    position: relative;
    z-index: 2;
}

.flyer-hero {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 20px;
    padding: 34px 36px 18px;
    align-items: center;
}

.eyebrow {
    font-family: 'Segoe Script', 'Brush Script MT', cursive;
    color: var(--navy);
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 700;
    transform: rotate(-2deg);
    margin-bottom: -8px;
}

.hero-copy h1 {
    margin: 0;
    line-height: .82;
    text-transform: uppercase;
}

    .hero-copy h1 span {
        display: block;
        font-size: clamp(82px, 14vw, 156px);
        letter-spacing: -6px;
        color: #113e78;
        text-shadow: 0 4px 0 rgba(255,255,255,.85);
    }

    .hero-copy h1 em {
        display: block;
        margin-top: -10px;
        font-family: 'Segoe Script', 'Brush Script MT', cursive;
        font-style: normal;
        font-size: clamp(58px, 10vw, 118px);
        color: var(--teal);
        text-transform: none;
        text-shadow: 0 4px 0 rgba(255,255,255,.85);
    }

.with-line {
    display: inline-block;
    margin: 2px 0 8px 178px;
    padding: 5px 32px;
    background: var(--navy);
    color: white;
    text-transform: uppercase;
    letter-spacing: .13em;
    font-weight: 900;
    border-radius: 3px;
}

.splash-name {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
    font-size: clamp(36px, 6vw, 70px);
    font-weight: 900;
    text-transform: uppercase;
}

    .splash-name strong:first-of-type {
        color: var(--coral);
    }

    .splash-name strong:last-of-type {
        color: var(--teal);
    }

.ribbon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    padding: 12px 22px;
    border-radius: 8px;
    background: linear-gradient(90deg, #00a7bd, #0d839b);
    color: white;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: .05em;
    box-shadow: 0 10px 22px rgba(0,93,126,.18);
}

.hero-photo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.photo-circle {
    width: min(330px, 38vw);
    height: min(330px, 38vw);
    min-width: 230px;
    min-height: 230px;
    border: 10px solid #ffffff;
    border-radius: 50%;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 18px 34px rgba(10,47,87,.25);
    position: relative;
    flex: 0 0 auto;
}

    .photo-circle img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        display: block;
    }





.red-cross-badge {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: white;
    border: 7px solid var(--navy);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--navy);
    text-align: center;
    text-transform: uppercase;
    transform: rotate(-8deg);
    box-shadow: 0 16px 28px rgba(10,47,87,.20);
}

    .red-cross-badge::before {
        content: "+";
        color: #e53541;
        font-size: 48px;
        line-height: .8;
        font-weight: 900;
    }

    .red-cross-badge span {
        font-weight: 900;
        font-size: 18px;
    }

    .red-cross-badge strong {
        font-size: 14px;
    }

.flyer-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    padding: 12px 36px 8px;
}

.trust-card {
    background: rgba(255,255,255,.94);
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 16px 32px rgba(10,47,87,.16);
}

.feature-row {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 15px;
    align-items: start;
    padding: 10px 0;
}

    .feature-row + .feature-row {
        border-top: 1px solid rgba(15,55,96,.08);
    }

.feature-icon,
.price-icon,
.duration-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e8bcc, #073a75);
    color: white;
    display: grid;
    place-items: center;
    font-weight: 900;
    box-shadow: inset 0 0 0 5px rgba(255,255,255,.75);
    position: relative;
    font-size: 0;
    overflow: hidden;
    flex: 0 0 58px;
}



.icon-star::before {
    content: "★";
    font-size: 30px;
    color: #ffffff;
    line-height: 1;
}

.icon-wave::before {
    content: "≈";
    font-size: 34px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
}

.icon-cert::before {
    content: "✓";
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
}

.icon-life::before {
    content: "◉";
    font-size: 30px;
    color: #ffffff;
    line-height: 1;
}

/* Lesson option icons */
.icon-home::before {
    content: "\2302"; /* house */
    font-size: 33px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
}

.icon-car::before {
    content: "\25A0"; /* simple solid car-like block fallback */
    font-size: 26px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
}

.icon-car::after {
    content: "";
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 15px;
    height: 5px;
    border-radius: 999px;
    background: #ffffff;
}

.icon-clock::before {
    content: "\25EF"; /* clock face fallback */
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
}

.icon-clock::after {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    border-left: 4px solid #ffffff;
    border-bottom: 4px solid #ffffff;
    transform: translate(3px, -3px);
}



.feature-row h3 {
    margin: 0 0 4px;
    color: var(--navy);
    text-transform: uppercase;
    font-size: 19px;
}

.feature-row p {
    margin: 0;
    font-size: 17px;
    line-height: 1.25;
}

.lesson-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.section-title {
    display: inline-flex;
    align-self: flex-start;
    background: var(--navy);
    color: white;
    padding: 12px 24px;
    border-radius: 7px;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: .04em;
    box-shadow: 0 12px 26px rgba(10,47,87,.18);
}

.price-card,
.duration-card {
    display: grid;
    grid-template-columns: 70px 1fr auto;
    gap: 16px;
    align-items: center;
    border: 5px solid white;
    border-radius: 20px;
    padding: 14px 18px;
    box-shadow: 0 14px 28px rgba(10,47,87,.16);
}

    .price-card.gold {
        background: linear-gradient(135deg, #ffea9c, #ffc94e);
    }

    .price-card.blue {
        background: linear-gradient(135deg, #dffcff, #9feaf4);
    }

    .price-card span,
    .duration-card strong {
        display: block;
        font-weight: 900;
        text-transform: uppercase;
        color: var(--navy);
        font-size: 16px;
    }

    .price-card strong {
        display: block;
        font-family: 'Segoe Script', 'Brush Script MT', cursive;
        font-size: 34px;
        color: var(--navy);
        line-height: 1;
    }

    .price-card small {
        font-weight: 900;
        color: var(--navy);
    }

.price {
    font-size: 58px;
    font-weight: 900;
    color: var(--navy);
}

.duration-card {
    grid-template-columns: 70px 1fr;
    background: rgba(255,255,255,.88);
}

    .duration-card span {
        color: var(--teal);
        font-size: 34px;
        font-weight: 900;
        text-transform: uppercase;
    }

.tagline-section {
    padding: 12px 30px 8px;
    text-align: center;
}

    .tagline-section h2 {
        margin: 0;
        font-family: 'Segoe Script', 'Brush Script MT', cursive;
        color: var(--navy);
        font-size: clamp(30px, 5vw, 56px);
        font-weight: 700;
    }

    .tagline-section span {
        color: var(--coral);
    }

.contact-band {
    margin: 16px 36px 18px;
    background: var(--navy);
    color: white;
    border-radius: 18px;
    padding: 20px 26px;
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 18px;
    align-items: center;
    box-shadow: 0 18px 32px rgba(10,47,87,.20);
}

.contact-title {
    color: #ffea73;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 22px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-left: 1px solid rgba(255,255,255,.35);
    border-right: 1px solid rgba(255,255,255,.35);
    padding: 0 22px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-weight: 900;
    font-size: 25px;
    text-decoration: none;
}

.contact-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: #23bad3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: "Segoe UI Symbol", "Arial Unicode MS", Arial, sans-serif;
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
}

.promise {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 900;
    text-transform: uppercase;
}

    .promise strong {
        color: #ffea73;
    }

.bottom-note {
    padding: 0 30px 24px;
    text-align: center;
    color: var(--navy);
    font-family: 'Segoe Script', 'Brush Script MT', cursive;
    font-weight: 700;
    font-size: 20px;
}

@media (max-width: 900px) {
    .flyer-hero,
    .flyer-content-grid,
    .contact-band {
        grid-template-columns: 1fr;
    }

    .hero-copy h1 span {
        font-size: 92px;
    }

    .hero-copy h1 em {
        font-size: 72px;
    }

    .with-line {
        margin-left: 0;
    }

    .splash-name {
        font-size: 38px;
    }

    .photo-circle {
        width: 270px;
        height: 270px;
        min-width: 270px;
        min-height: 270px;
    }

    .contact-details {
        border: 0;
        padding: 0;
    }

    .price {
        font-size: 46px;
    }
}

@media (max-width: 560px) {
    .splash-topbar-inner {
        min-height: 68px;
    }

    .splash-brand {
        font-size: 19px;
    }

    .book-now-button {
        padding: 12px 18px;
        font-size: 15px;
    }

    .flyer-page {
        border-width: 5px;
        margin: 16px auto;
    }

    .flyer-hero,
    .flyer-content-grid {
        padding-left: 18px;
        padding-right: 18px;
    }

    .hero-copy h1 span {
        font-size: 66px;
        letter-spacing: -3px;
    }

    .hero-copy h1 em {
        font-size: 52px;
    }

    .price-card {
        grid-template-columns: 56px 1fr;
    }

    .price {
        grid-column: 1 / -1;
        text-align: right;
    }

    .contact-band {
        margin-left: 18px;
        margin-right: 18px;
    }

    .contact-item {
        font-size: 18px;
    }
}


/* Use actual Splash Sisters nav icon instead of SS letters */
.brand-image-mark {
    width: 70px;
    height: 54px;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

.brand-image-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
