﻿html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: linear-gradient(180deg, #eefbff 0%, #dff7ff 100%);
    font-family: Arial, sans-serif;
}

.splash-topbar {
    background: #fff;
    height: 88px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.splash-topbar-inner {
    width: 100%;
    padding: 0 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.splash-brand {
    display: flex;
    align-items: center;
    gap: 18px;
    text-decoration: none;
    font-size: 30px;
    font-weight: 900;
    color: #12395a;
}

.brand-image-mark img {
    width: 58px;
    height: auto;
    display: block;
}

.splash-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

    .splash-nav a {
        text-decoration: none;
        font-weight: 800;
        color: #00aeca;
        font-size: 18px;
        transition: color .2s ease, background .2s ease, transform .2s ease;
        border-radius: 14px;
        padding: 8px 14px;
    }

        .splash-nav a:not(.book-now-button):hover {
            color: #0b91b5;
            background: rgba(0, 174, 202, .10);
            transform: translateY(-1px);
        }

.book-now-button {
    color: #fff !important;
    padding: 18px 36px !important;
    border-radius: 999px !important;
    background: linear-gradient(90deg, #08bdd8, #6557ff);
    box-shadow: 0 10px 24px rgba(0, 174, 202, .25);
}

    .book-now-button:hover {
        background: linear-gradient(90deg, #07aeca, #5448f5) !important;
        color: #fff !important;
        transform: translateY(-2px);
        box-shadow: 0 14px 28px rgba(0, 174, 202, .35);
    }

.flyer-page {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    text-align: center;
}

.flyer-ad {
    background: #fff;
    text-align: center;
    position: relative;
}

.flyer-img {
    display: block;
    width: 100%;
    max-width: 900px;
    height: auto;
    margin: 0 auto;
}

.landing-section {
    background: #fff;
    text-align: center;
    padding: 70px 90px;
    scroll-margin-top: 110px;
}

    .landing-section h2 {
        font-size: 42px;
        color: #12395a;
        margin: 0 0 20px;
    }

    .landing-section h3 {
        font-size: 24px;
        color: #00aeca;
        margin-top: 28px;
    }

    .landing-section p {
        font-size: 20px;
        line-height: 1.6;
        color: #333;
    }

.intro-overlap {
    margin-top: -180px;
    margin-left: 310px;
    width: calc(100% - 330px);
    padding: 40px 0 10px;
    position: relative;
    z-index: 2;
    text-align: left;
}

    .intro-overlap p {
        font-size: 22px;
        line-height: 1.6;
        margin: 0;
    }

@media (max-width: 900px) {
    .splash-topbar {
        height: auto;
    }

    .splash-topbar-inner {
        padding: 14px 20px;
        flex-direction: column;
        gap: 14px;
    }

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

    .splash-nav {
        gap: 14px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .book-now-button {
        padding: 14px 24px !important;
    }

    .landing-section {
        padding: 50px 24px;
    }

    .intro-overlap {
        margin-top: 0;
        margin-left: 0;
        width: auto;
        padding: 40px 24px;
        text-align: center;
    }


}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 35px;
}

.pricing-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 34px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    border: 4px solid rgba(0, 183, 221, 0.08);
    transition: transform .2s ease, box-shadow .2s ease;
}

    .pricing-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 40px rgba(0,0,0,.12);
    }

.featured-pricing {
    background: linear-gradient(180deg, #f3fdff 0%, #e5fbff 100%);
    border: 4px solid #19bfd8;
}


.pricing-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(180deg, #27c4e5 0%, #1a79d6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 18px rgba(0,0,0,.14);
    position: relative;
}

    .pricing-icon::before {
        color: #fff;
        font-size: 34px;
        font-weight: 700;
        line-height: 1;
    }

.pricing-card h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #0b3766;
    font-size: 28px;
    line-height: 1.2;
}

.pricing-list {
    padding-left: 20px;
    margin: 0;
}

    .pricing-list li {
        margin-bottom: 14px;
        font-size: 18px;
        line-height: 1.5;
        color: #23496d;
    }

.pricing-highlight {
    font-size: 24px;
    font-weight: 700;
    color: #00a8c8;
    margin-bottom: 18px;
}

.pricing-card strong {
    color: #0b3766;
}


/* Swim lesson */
.icon-swim::before {
    content: "🏊";
}

/* Free swim & games */
.icon-games::before {
    content: "💦";
}

/* Bundled option */
.icon-star::before {
    content: "★";
    font-size: 38px;
}

/* Lifeguarding */
.icon-guard::before {
    content: "🛟";
}

.section-badge {
    display: inline-flex;
    background: #dff8ff;
    color: #007f99;
    border-radius: 999px;
    padding: 10px 22px;
    font-weight: 900;
    margin-bottom: 18px;
}

.services-section h2 {
    margin-top: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
    margin-top: 28px;
}

.service-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 12px 32px rgba(0,0,0,.08);
    border: 3px solid rgba(0,184,217,.12);
}

    .service-card h3 {
        color: #0b3766;
        font-size: 26px;
        margin: 18px 0 12px;
    }

    .service-card p {
        color: #244d6e;
        font-size: 19px;
        line-height: 1.6;
        margin: 0;
    }

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(180deg, #27c4e5 0%, #1a79d6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

    .service-icon::before {
        color: #ffffff;
        font-size: 34px;
        font-weight: 900;
    }

.icon-pool::before {
    content: "≈";
    font-size: 42px;
}

.icon-lifeguard::before {
    content: "+";
    font-size: 42px;
}

@media (max-width: 800px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}