/* style.css — wakesurfreport.com */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    background: #f0f8ff;
    color: #0a2a3b;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* header */
.site-header {
    background: #ffffff;
    border-bottom: 3px solid #0077be;
    padding: 1rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.header-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    color: #0a2a3b;
    letter-spacing: -0.5px;
}

.logo span {
    font-weight: 300;
    color: #0077be;
    margin-left: 4px;
}

.nav-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 1rem 1.8rem;
}

.nav-list a {
    text-decoration: none;
    font-weight: 500;
    color: #1a4a5f;
    padding: 0.3rem 0;
    border-bottom: 3px solid transparent;
    transition: border-color 0.25s, color 0.25s;
}

.nav-list a:hover,
.nav-list a.active {
    border-bottom-color: #0077be;
    color: #0a2a3b;
}

/* hero */
.hero {
    background: linear-gradient(135deg, #d4edff 0%, #b8dff5 100%);
    padding: 4.5rem 1.5rem;
    text-align: center;
}

.hero h1 {
    font-size: 3.4rem;
    font-weight: 700;
    letter-spacing: -1px;
    color: #0a2a3b;
}

.subhead {
    font-size: 1.3rem;
    color: #1a4a5f;
    margin: 0.75rem 0 1.8rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.25s, transform 0.15s;
}

.btn-primary {
    background: #0077be;
    color: #f0f8ff;
    border: 2px solid #0077be;
}

.btn-primary:hover {
    background: #005a8c;
    border-color: #005a8c;
    transform: scale(1.02);
}

.btn-outline {
    background: transparent;
    color: #0077be;
    border: 2px solid #0077be;
}

.btn-outline:hover {
    background: #0077be;
    color: #f0f8ff;
}

/* features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 3.5rem 1.5rem;
}

.feature-card {
    background: white;
    padding: 2rem 1.2rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s, transform 0.2s;
}

.feature-card:hover {
    box-shadow: 0 8px 28px rgba(0, 119, 190, 0.12);
    transform: translateY(-4px);
}

.feature-card .icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.6rem;
}

.feature-card h3 {
    font-weight: 600;
    font-size: 1.25rem;
    color: #0a2a3b;
}

.feature-card p {
    color: #2a5a6f;
    font-size: 0.95rem;
    margin-top: 0.3rem;
}

/* about teaser */
.about-teaser {
    background: #d4edff;
    padding: 2.8rem 1.5rem;
    border-radius: 32px;
    margin: 0.5rem auto 3rem;
    text-align: center;
}

.about-teaser h2 {
    font-weight: 600;
    font-size: 2rem;
    color: #0a2a3b;
    margin-bottom: 0.75rem;
}

.about-teaser p {
    max-width: 620px;
    margin: 0 auto 1.8rem;
    color: #1a4a5f;
}

/* footer */
.site-footer {
    background: #0a2a3b;
    color: #b8dff5;
    padding: 2.8rem 0;
    margin-top: 2rem;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.2rem;
}

.footer-logo {
    font-size: 1.4rem;
    font-weight: 600;
    color: #d4edff;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 1.5rem;
}

.footer-links a {
    color: #b8dff5;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s, color 0.2s;
}

.footer-links a:hover {
    border-bottom-color: #66b8e0;
    color: white;
}

.footer-copy {
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    color: #5a8fa5;
    margin-top: 0.5rem;
}

/* responsive */
@media (max-width: 600px) {
    .header-grid {
        flex-direction: column;
        gap: 0.6rem;
    }
    .nav-list {
        justify-content: center;
        gap: 0.75rem 1rem;
    }
    .hero h1 {
        font-size: 2.4rem;
    }
    .features {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        flex-direction: column;
        text-align: center;
    }
}