/* GENERAL */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* HERO */
.hero {
    width: 100%;
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, #002f7a, #001a40);
    color: white;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
    font-weight: bold;
}

.hero h1 .green {
    text-shadow:
        0px 0px 3px rgba(0,0,0,0.6),
        0px 2px 4px rgba(0,0,0,0.35);
}




.hero p {
    font-size: 24px;
    margin-bottom: 40px;
}


.green {
    color: #2e7d32;
}

.btn-white {
    display: inline-block;
    padding: 16px 32px;
    background: white;
    color: #003b95;
    font-size: 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid white;
}

/* PLATFORM SECTION */
.section {
    padding: 80px 20px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #003b95;
}

.section p {
    font-size: 22px;
    margin-bottom: 40px;
    color: #333;
}

.benefits {
    text-align: center;
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.btn-blue {
    display: inline-block;
    padding: 16px 32px;
    background: #0d6efd;
    color: white;
    font-size: 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid #0d6efd;
}

/* CLUB CARDS */
.clubs-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.club-card {
    width: 260px;
    padding: 25px;
    border: 1px solid #ccc;
    border-radius: 10px;
    text-align: center;
    background: #f9f9f9;
}

.club-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #003b95;
}

.btn-card {
    display: inline-block;
    padding: 12px 24px;
    background: #0d6efd;
    color: white;
    font-size: 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

/* ABOUT */
.about-text {
    font-size: 20px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* CONTACT */
.contact-text {
    font-size: 22px;
    color: #333;
    margin-bottom: 40px;
}

/* FOOTER NEXTGOLF – LANDING */
.footer-gt-landing {
    text-align: center;
    font-size: 14px;
    margin-top: 60px;
    padding: 28px 0;
    color: #6f6f6f;
    letter-spacing: 0.5px;
    border-top: 1px solid #e5e5e5;
    background: #fafafa;
}

.footer-gt-landing .footer-title {
    font-weight: 700;
    color: #222;
    font-size: 18px;
}

.footer-gt-landing .footer-tagline {
    font-size: 13px;
    margin-top: 6px;
    color: #444;
}

.footer-gt-landing .footer-version {
    font-size: 12px;
    margin-top: 8px;
    color: #777;
}

@media (max-width: 480px) {
    .footer-gt-landing {
        font-size: 12px;
        padding: 20px 0;
    }

    .footer-gt-landing .footer-title {
        font-size: 16px;
    }
}
