* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --green: #0b5d2a;
    --dark-green: #063d1c;
    --gold: #d7a928;
    --red: #b3261e;
    --light: #f7f4ea;
    --white: #ffffff;
    --text: #1f2a1f;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

body {
    font-family: Arial, sans-serif;
    background-color: var(--light);
    color: var(--text);
    line-height: 1.6;
}

/* HEADER */

.header {
    background-color: var(--green);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.navbar {
    width: 90%;
    max-width: 1200px;
    min-height: 85px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    text-decoration: none;
    cursor: pointer;
}

.logo-box:hover h1 {
    color: var(--white);
}

.logo-box:hover p {
    color: var(--gold);
}

.logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    background-color: var(--white);
    border-radius: 50%;
    padding: 5px;
}

.logo-box h1 {
    font-size: 24px;
    line-height: 1.1;
}

.logo-box p {
    color: var(--gold);
    font-size: 14px;
    font-weight: bold;
}

/* MENU */

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links a,
.nav-links a.btn,
.nav-links a.primary-btn,
.nav-links a.menu-button {
    color: var(--white);
    background: transparent;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    width: auto;
    display: inline;
    line-height: normal;
    transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.btn:hover,
.nav-links a.primary-btn:hover,
.nav-links a.menu-button:hover {
    color: var(--gold);
    background: transparent;
    transform: none;
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 32px;
    cursor: pointer;
}

/* HOMEPAGE HERO */

.hero-banner {
    min-height: 88vh;
    background-image:
        linear-gradient(to right, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.62) 45%, rgba(0, 0, 0, 0.25) 100%),
        url("../images/agoetiteam.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.hero-overlay {
    width: 100%;
}

.hero-inner {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 105px 0;
}

.hero-text {
    max-width: 700px;
    color: var(--white);
}

.hero-label {
    color: var(--gold);
    font-weight: bold;
    margin-bottom: 14px;
    font-size: 16px;
}

.hero-text h2 {
    font-size: 68px;
    line-height: 1.05;
    margin-bottom: 8px;
    color: #ffffff;
    max-width: 680px;
}

.hero-location {
    color: #ffffff !important;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 5px;
    margin-bottom: 28px;
    display: block;
    opacity: 1;
    letter-spacing: 0.5px;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 32px;
    max-width: 650px;
}

/* NORMALE HERO */

.hero {
    width: 90%;
    max-width: 1200px;
    min-height: 580px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 45px;
    padding: 50px 0;
}

.hero-content h2 {
    font-size: 54px;
    color: var(--dark-green);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    max-width: 620px;
    margin-bottom: 28px;
}

.small-title {
    color: var(--red);
    font-weight: bold;
    margin-bottom: 10px;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 330px;
    max-width: 100%;
    background-color: var(--white);
    padding: 25px;
    border-radius: 50%;
    border: 8px solid var(--gold);
    box-shadow: var(--shadow);
}

/* OVER ONS PAGINA IETS OMHOOG */

.over-ons-page .hero {
    min-height: 500px;
    padding-bottom: 10px;
}

.over-ons-page .about-history-section {
    padding-top: 35px;
}

.over-ons-page .about-cards-section {
    padding-top: 30px;
}

.over-ons-page .organization-section {
    padding-top: 20px;
}

/* BUTTONS */

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 13px 24px;
    border-radius: 30px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-weight: bold;
    font-size: 15px;
    transition: 0.3s;
}

.primary-btn {
    background-color: var(--gold);
    color: var(--dark-green);
}

.primary-btn:hover {
    background-color: #c29620;
    transform: translateY(-2px);
}

.secondary-btn {
    background-color: var(--green);
    color: var(--white);
}

.secondary-btn:hover {
    background-color: var(--dark-green);
    transform: translateY(-2px);
}

.hero-banner .secondary-btn {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.hero-banner .secondary-btn:hover {
    background-color: var(--white);
    color: var(--dark-green);
}

/* SECTIONS */

.section {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 45px;
}

.section-title p {
    color: var(--red);
    font-weight: bold;
    margin-bottom: 8px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--dark-green);
}

/* KAARTEN */

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.card,
.text-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 18px;
    box-shadow: var(--shadow);
    border-top: 6px solid var(--gold);
}

.card h3,
.text-card h3 {
    color: var(--green);
    margin-bottom: 12px;
    font-size: 22px;
}

.text-card {
    max-width: 900px;
    margin: auto;
}

.text-card p {
    margin-bottom: 18px;
}

/* SPORTEN */

.sports-section {
    background-color: var(--green);
}

.sports-inner {
    padding: 80px 0;
}

.light-title p {
    color: var(--gold);
}

.light-title h2 {
    color: var(--white);
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.sport-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 18px;
    box-shadow: var(--shadow);
    border-bottom: 6px solid var(--red);
}

.sport-card h3 {
    color: var(--red);
    margin-bottom: 12px;
    font-size: 22px;
}

/* LID WORDEN */

.membership-box {
    background: linear-gradient(135deg, var(--dark-green), var(--green));
    color: var(--white);
    padding: 50px;
    border-radius: 25px;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 35px;
    box-shadow: var(--shadow);
}

.gold-text {
    color: var(--gold);
}

.membership-text h2 {
    font-size: 34px;
    margin-bottom: 15px;
    color: var(--gold);
}

.membership-text p {
    margin-bottom: 20px;
}

.membership-text ul {
    margin-left: 20px;
}

.membership-text li {
    margin-bottom: 10px;
}

.membership-card {
    background-color: var(--white);
    color: var(--text);
    padding: 30px;
    border-radius: 20px;
    align-self: center;
}

.membership-card h3 {
    color: var(--green);
    margin-bottom: 12px;
}

.membership-card p {
    margin-bottom: 20px;
}

/* CONTACT */

.contact-section {
    padding-bottom: 90px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 35px;
    align-items: start;
}

.contact-info {
    background-color: var(--dark-green);
    color: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.contact-info h3 {
    color: var(--gold);
    font-size: 26px;
    margin-bottom: 15px;
}

.contact-info p {
    margin-bottom: 25px;
}

.info-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 15px;
}

.info-item strong {
    display: block;
    color: var(--gold);
    margin-bottom: 5px;
}

.info-item span {
    color: var(--white);
}

.join-form {
    background-color: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.join-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: var(--dark-green);
}

.join-form input,
.join-form textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    margin-bottom: 18px;
    font-size: 15px;
    font-family: Arial, sans-serif;
    outline: none;
    transition: 0.3s;
}

.join-form input:focus,
.join-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(215, 169, 40, 0.2);
}

.join-form textarea {
    resize: vertical;
}

.join-form button {
    width: 100%;
    margin-top: 5px;
}

.form-message {
    margin-top: 15px;
    color: var(--green);
    font-weight: bold;
    text-align: center;
}

/* ORGANISATIE */

.organization-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.organization-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 18px;
    box-shadow: var(--shadow);
    border-top: 6px solid var(--gold);
}

.organization-card h3 {
    color: var(--green);
    font-size: 24px;
    margin-bottom: 20px;
}

.person {
    background-color: #f7f4ea;
    padding: 14px 16px;
    border-radius: 12px;
    margin-bottom: 12px;
    border-left: 5px solid var(--green);
}

.person strong {
    display: block;
    color: var(--dark-green);
    font-size: 16px;
}

.person span {
    display: block;
    color: #555;
    font-size: 14px;
    margin-top: 3px;
}

/* LOCATIES */

.locaties-hero {
    min-height: 520px;
}

.locations-section {
    padding-top: 40px;
}

.locations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 35px;
}

.location-card {
    background-color: var(--white);
    border-radius: 22px;
    box-shadow: var(--shadow);
    overflow: hidden;
    border-top: 6px solid var(--gold);
}

.location-content {
    padding: 35px;
}

.location-content h3 {
    color: var(--green);
    font-size: 28px;
    margin-bottom: 15px;
}

.location-address {
    font-size: 17px;
    margin-bottom: 25px;
}

.location-address strong {
    color: var(--dark-green);
}

.schedule-box {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.schedule-item {
    background-color: #f7f4ea;
    border-left: 5px solid var(--green);
    padding: 15px 18px;
    border-radius: 12px;
}

.schedule-item strong {
    display: block;
    color: var(--dark-green);
    margin-bottom: 4px;
}

.schedule-item span {
    color: #444;
}

.map-wrapper {
    width: 100%;
    height: 380px;
    background-color: #e8e8e8;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* FOOTER */

.footer {
    background-color: var(--dark-green);
    color: var(--white);
    padding-top: 50px;
}

.footer-content {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 35px;
}

.footer h3,
.footer h4 {
    color: var(--gold);
    margin-bottom: 15px;
}

.footer a {
    display: block;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 8px;
}

.footer a:hover {
    color: var(--gold);
}

.socials-title {
    color: var(--gold);
    margin-top: 18px;
    margin-bottom: 12px;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    transition: 0.3s;
}

.social-links a:hover {
    transform: translateY(-2px);
    background-color: rgba(255, 255, 255, 0.18);
}

.social-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    margin-top: 35px;
    background-color: rgba(0, 0, 0, 0.25);
}

/* TABLET */

@media (max-width: 900px) {
    .hero-banner {
        min-height: 75vh;
        background-image:
            linear-gradient(to bottom, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.58)),
            url("../images/agoetiteam.jpg");
    }

    .hero-inner {
        padding: 90px 0;
    }

    .hero-text {
        max-width: 100%;
        text-align: center;
    }

    .hero-text h2 {
        font-size: 48px;
    }

    .hero-location {
        font-size: 28px;
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero,
    .locaties-hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 70px 0;
        min-height: auto;
    }

    .over-ons-page .hero {
        min-height: auto;
        padding-bottom: 30px;
    }

    .hero-content h2 {
        font-size: 42px;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-grid,
    .sports-grid,
    .membership-box,
    .contact-grid,
    .organization-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .membership-box {
        padding: 35px;
    }
}

/* TELEFOON */

@media (max-width: 700px) {
    .navbar {
        width: 92%;
    }

    .menu-btn {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 85px;
        left: 0;
        width: 100%;
        background-color: var(--dark-green);
        flex-direction: column;
        gap: 0;
        display: none;
        padding: 15px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a,
    .nav-links a.btn,
    .nav-links a.primary-btn,
    .nav-links a.menu-button {
        display: block;
        color: var(--white);
        background: transparent;
        padding: 14px;
        border-radius: 0;
        width: auto;
        box-shadow: none;
    }

    .nav-links a:hover,
    .nav-links a.btn:hover,
    .nav-links a.primary-btn:hover,
    .nav-links a.menu-button:hover {
        color: var(--gold);
        background: transparent;
        transform: none;
    }

    .logo-box h1 {
        font-size: 20px;
    }

    .logo-box p {
        font-size: 12px;
    }

    .logo {
        width: 52px;
        height: 52px;
    }

    .hero-banner {
        min-height: 72vh;
    }

    .hero-inner {
        padding: 70px 0;
    }

    .hero-text h2 {
        font-size: 37px;
    }

    .hero-location {
        font-size: 23px;
        margin-bottom: 20px;
        text-align: center;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero {
        padding: 55px 0;
        gap: 30px;
    }

    .over-ons-page .hero {
        padding-bottom: 15px;
    }

    .hero-content h2 {
        font-size: 34px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-image img {
        width: 240px;
        padding: 18px;
    }

    .section {
        padding: 55px 0;
    }

    .over-ons-page .about-history-section {
        padding-top: 25px;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .card,
    .text-card,
    .sport-card,
    .join-form,
    .contact-info,
    .membership-card,
    .organization-card {
        padding: 25px;
    }

    .membership-box {
        padding: 28px;
        border-radius: 20px;
    }

    .membership-text h2 {
        font-size: 28px;
    }

    .hero-buttons .btn,
    .membership-card .btn,
    .join-form .btn {
        width: 100%;
        text-align: center;
    }

    .map-wrapper {
        height: 300px;
    }

    .location-content {
        padding: 25px;
    }

    .location-content h3 {
        font-size: 24px;
    }
}