/* =========================================
   GENERAL
========================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
    background: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    min-height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 110px;
    height: 110px;
    object-fit: contain;
    display: block;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s;
}

.main-nav a:hover {
    opacity: 0.6;
}

.menu-toggle {
    display: none;
    border: none;
    background: none;
    font-size: 28px;
    cursor: pointer;
}


/* =========================================
   HERO
========================================= */

.hero {
    min-height: 600px;
    display: flex;
    align-items: center;
    background: #f4f4f4;
}

.hero-content {
    max-width: 900px;
}

.hero-small-title {
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.hero h1 {
    font-size: 60px;
    line-height: 1.1;
    max-width: 850px;
    margin-bottom: 25px;
}

.hero-description {
    font-size: 18px;
    max-width: 700px;
    margin-bottom: 35px;
}

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


/* =========================================
   BUTTONS
========================================= */

.button {
    display: inline-block;
    padding: 13px 25px;
    background: #222;
    color: #ffffff;
    border: 1px solid #222;
    font-weight: 600;
    transition: 0.3s;
}

.button:hover {
    background: #ffffff;
    color: #222;
}

.button-outline {
    background: transparent;
    color: #222;
}


/* =========================================
   SECTIONS
========================================= */

.section {
    padding: 90px 0;
}

.section-light {
    background: #f7f7f7;
}

.section-heading {
    margin-bottom: 40px;
}

.section-label {
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.section-heading h2 {
    font-size: 40px;
    line-height: 1.2;
}

.intro-text {
    max-width: 850px;
    font-size: 18px;
}

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


/* =========================================
   CARDS
========================================= */

.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.card {
    background: #ffffff;
    padding: 30px;
    border: 1px solid #e5e5e5;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card-icon {
    font-size: 28px;
    margin-bottom: 20px;
}

.card h3 {
    margin-bottom: 10px;
    font-size: 22px;
}

.card p {
    color: #666;
}


/* =========================================
   CTA
========================================= */

.cta-section {
    padding: 100px 0;
    text-align: center;
    background: #222;
    color: #ffffff;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.cta-section p {
    margin-bottom: 30px;
}

.cta-section .button {
    background: #ffffff;
    color: #222;
    border-color: #ffffff;
}


/* =========================================
   FOOTER
========================================= */

.site-footer {
    background: #111;
    color: #ffffff;
}

.footer-container {
    padding: 50px 0;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-container h3 {
    margin-bottom: 10px;
}

.footer-container p {
    color: #aaaaaa;
}

.footer-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #cccccc;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #888;
    font-size: 14px;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 900px) {

    .hero h1 {
        font-size: 48px;
    }

    .cards {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 650px) {

    .header-container {
        min-height: 65px;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;
        background: #ffffff;
        border-bottom: 1px solid #eeeeee;
        flex-direction: column;
        gap: 0;
    }

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

    .main-nav a {
        padding: 15px 5%;
        border-top: 1px solid #eeeeee;
    }

    .hero {
        min-height: 550px;
    }

    .hero h1 {
        font-size: 40px;
    }

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

    .section {
        padding: 60px 0;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .footer-container {
        flex-direction: column;
    }

    .cta-section h2 {
        font-size: 32px;
    }

}
/* =========================================
   INNER PAGE HEADER
========================================= */

.page-header {
    padding: 100px 0;
    background: #f4f4f4;
}

.page-header h1 {
    font-size: 55px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.page-header p:not(.section-label) {
    max-width: 700px;
    font-size: 18px;
}


/* =========================================
   TWO COLUMN CONTENT
========================================= */

.content-two-column {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}

.content-two-column h2 {
    font-size: 40px;
    line-height: 1.2;
}

.content-text {
    font-size: 18px;
}

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


/* =========================================
   INNER PAGE MOBILE
========================================= */

@media (max-width: 650px) {

    .page-header {
        padding: 70px 0;
    }

    .page-header h1 {
        font-size: 42px;
    }

    .content-two-column {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .content-two-column h2 {
        font-size: 32px;
    }

}
/* =========================================
   EVENTS
========================================= */

.event-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.event-card {
    display: grid;
    grid-template-columns: 140px 1fr;
    border: 1px solid #e5e5e5;
    background: #ffffff;
}

.event-date {
    padding: 30px;
    background: #f4f4f4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.event-date span {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 2px;
}

.event-date strong {
    font-size: 28px;
}

.event-details {
    padding: 30px;
}

.event-details h3 {
    font-size: 25px;
    margin-bottom: 10px;
}

.event-details p {
    margin-bottom: 10px;
}

.event-meta {
    font-size: 14px;
    color: #666;
}


/* MOBILE */

@media (max-width: 650px) {

    .event-card {
        grid-template-columns: 1fr;
    }

    .event-date {
        padding: 20px;
    }

}
/* =========================================
   GALLERY
========================================= */

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

.gallery-item {
    background: #ffffff;
}

.gallery-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #eeeeee;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
    color: #777;

    margin-bottom: 15px;
}

.gallery-item h3 {
    font-size: 20px;
    margin-bottom: 3px;
}

.gallery-item p {
    color: #777;
    font-size: 14px;
}


/* GALLERY MOBILE */

@media (max-width: 900px) {

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 600px) {

    .gallery-grid {
        grid-template-columns: 1fr;
    }

}
/* =========================================
   MEMBERSHIP
========================================= */

.membership-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.membership-info h2 {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 25px;
}

.membership-info p {
    font-size: 17px;
    margin-bottom: 20px;
}

.membership-form-container {
    border: 1px solid #e5e5e5;
    padding: 35px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px;
    border: 1px solid #cccccc;
    background: #ffffff;
    font-family: inherit;
    font-size: 15px;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #222;
}

.form-message {
    margin-top: 20px;
    font-size: 15px;
}


/* MEMBERSHIP MOBILE */

@media (max-width: 800px) {

    .membership-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

}


@media (max-width: 600px) {

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .membership-form-container {
        padding: 25px;
    }

}
/* =========================================
   CONTACT
========================================= */

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
}

.contact-grid h2 {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 35px;
}

.contact-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-item p {
    color: #666;
}

.contact-message-box {
    background: #f4f4f4;
    padding: 40px;
}

.contact-message-box h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.contact-message-box p {
    margin-bottom: 30px;
}

.map-section {
    width: 100%;
}

.map-placeholder {
    height: 350px;
    background: #eeeeee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
}


/* CONTACT MOBILE */

@media (max-width: 800px) {

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

}


@media (max-width: 600px) {

    .contact-details {
        grid-template-columns: 1fr;
    }

}
/* =========================================
   BRAND DESIGN - BLUE + GOLD
========================================= */

:root {
    --brand-blue: #07558c;
    --brand-blue-dark: #033b63;
    --brand-blue-light: #eaf4fb;

    --brand-gold: #f5b400;
    --brand-gold-light: #fff4cc;

    --brand-white: #ffffff;
    --brand-light: #f7fafc;

    --brand-text: #222222;
    --brand-muted: #666666;
}


/* =========================================
   HEADER
========================================= */

.site-header {
    background: var(--brand-white);
    border-bottom: 3px solid var(--brand-gold);
}

.logo img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.main-nav a {
    color: var(--brand-blue-dark);
    position: relative;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 3px;
    background: var(--brand-gold);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}


/* =========================================
   HERO
========================================= */

.hero {
    min-height: 620px;

    background:
        linear-gradient(
            135deg,
            var(--brand-blue-dark),
            var(--brand-blue)
        );

    color: var(--brand-white);

    position: relative;
    overflow: hidden;
}

.hero::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    border: 35px solid rgba(245, 180, 0, 0.15);

    border-radius: 50%;

    right: -120px;
    bottom: -150px;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-small-title {
    color: var(--brand-gold);
}

.hero h1 {
    font-size: 60px;
    line-height: 1.08;
}

.hero-description {
    color: #f4f8fb;
}


/* =========================================
   BUTTONS
========================================= */

.button {
    background: var(--brand-gold);
    color: var(--brand-blue-dark);
    border-color: var(--brand-gold);
}

.button:hover {
    background: var(--brand-white);
    color: var(--brand-blue-dark);
    border-color: var(--brand-white);
}

.button-outline {
    background: transparent;
    color: var(--brand-white);
    border-color: var(--brand-white);
}

.button-outline:hover {
    background: var(--brand-white);
    color: var(--brand-blue-dark);
}


/* =========================================
   SECTION HEADINGS
========================================= */

.section-label {
    color: var(--brand-blue);
}

.section-heading h2 {
    color: var(--brand-blue-dark);
}


/* =========================================
   SECTIONS
========================================= */

.section-light {
    background: var(--brand-light);
}


/* =========================================
   CARDS
========================================= */

.card {
    border: 1px solid #dce7ef;
    border-top: 4px solid var(--brand-gold);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 12px 30px rgba(3, 59, 99, 0.12);
}

.card-icon {
    color: var(--brand-blue);
}

.card h3 {
    color: var(--brand-blue-dark);
}

.card p {
    color: var(--brand-muted);
}


/* =========================================
   PAGE HEADERS
========================================= */

.page-header {
    background:
        linear-gradient(
            135deg,
            var(--brand-blue),
            var(--brand-blue-dark)
        );

    color: var(--brand-white);

    border-bottom: 5px solid var(--brand-gold);
}

.page-header .section-label {
    color: var(--brand-gold);
}

.page-header h1 {
    color: var(--brand-white);
}

.page-header p:not(.section-label) {
    color: #f4f8fb;
}


/* =========================================
   CTA
========================================= */

.cta-section {
    background: var(--brand-blue-dark);
    border-top: 5px solid var(--brand-gold);
}

.cta-section .button {
    background: var(--brand-gold);
    color: var(--brand-blue-dark);
}


/* =========================================
   EVENTS
========================================= */

.event-card {
    border: 1px solid #dce7ef;
    overflow: hidden;
}

.event-date {
    background: var(--brand-blue);
    color: var(--brand-white);

    border-right: 4px solid var(--brand-gold);
}

.event-date span {
    color: var(--brand-gold);
}

.event-details h3 {
    color: var(--brand-blue-dark);
}


/* =========================================
   GALLERY
========================================= */

.gallery-placeholder {
    background: var(--brand-light);
    border: 1px solid #dce7ef;
}

.gallery-item h3 {
    color: var(--brand-blue-dark);
}


/* =========================================
   MEMBERSHIP FORM
========================================= */

.membership-form-container {
    border: 1px solid #dce7ef;
    border-top: 5px solid var(--brand-gold);

    background: var(--brand-white);

    box-shadow:
        0 10px 30px rgba(3, 59, 99, 0.06);
}

.form-group label {
    color: var(--brand-blue-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--brand-blue);

    box-shadow:
        0 0 0 2px var(--brand-blue-light);
}


/* =========================================
   CONTACT
========================================= */

.contact-message-box {
    background: var(--brand-light);
    border-top: 5px solid var(--brand-gold);
}

.contact-item h3 {
    color: var(--brand-blue);
}

.contact-item p {
    color: var(--brand-muted);
}

.map-placeholder {
    background: #e9f0f5;
}


/* =========================================
   FOOTER
========================================= */

.site-footer {
    background: var(--brand-blue-dark);
}

.footer-container h3 {
    color: var(--brand-gold);
}

.footer-container p {
    color: #dce8ef;
}

.footer-links a {
    color: #ffffff;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    color: #c7d6df;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .logo img { 
        width: 58px;
        height: 58px;
    }

    .main-nav {
        border-bottom: 3px solid var(--brand-gold);
    }

    .main-nav a {
        color: var(--brand-blue-dark);
    }

    .main-nav a::after {
        display: none;
    }

    .hero h1 {
        font-size: 40px;
    }

}
