/* ===== GLOBAL STYLE ===== */

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #F7F5F2;
    color: #222;
}

/* ===== NAVBAR CLEAN VERSION ===== */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #183152;
    color: white;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {

    .hamburger {
        display: block;
        font-size: 32px;
        cursor: pointer;
    }

    .nav-links {
        display: none !important;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #183152;
        text-align: center;
        z-index: 9999;
    }

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

    .nav-links a {
        padding: 15px;
        display: block;
    }
}

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

.hero {
    height: 80vh;

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

    text-align: center;

    background-image: url("Images/ffa-background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: white;

    position: relative;
}

/* DARK OVERLAY */

.hero::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background: rgba(0, 0, 0, 0.5);
}

/* KEEP TEXT ABOVE OVERLAY */

.hero h1,
.hero p,
.hero button {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 50px;
    margin: 0;
}

.hero p {
    font-size: 20px;
    margin-top: 15px;
}

/* ===== BUTTON ===== */

.btn {
    background-color: #F2B134;
    color: #183152;

    padding: 12px 24px;

    border: none;
    border-radius: 5px;

    margin-top: 20px;

    font-size: 16px;
    font-weight: bold;

    cursor: pointer;

    transition: 0.3s;
}

.btn:hover {
    background-color: #d99a22;
}

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

.section {
    padding: 50px 20px;

    max-width: 1000px;

    margin: auto;
}

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

.card {
    background: white;

    padding: 30px;

    margin-top: 30px;

    border-left: 5px solid #F2B134;

    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

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

.footer {
    background-color: #183152;

    color: white;

    text-align: center;

    padding: 20px;

    margin-top: 40px;
}
/* ===== OFFICER FEATURE SECTION ===== */

.officer-feature-section {
    padding: 60px 20px;

    display: flex;
    justify-content: center;
}

.officer-feature-card {
    background: white;

    width: 90%;
    max-width: 1100px;

    display: flex;
    align-items: center;

    border-radius: 20px;

    overflow: hidden;

    box-shadow: 0 6px 18px rgba(0,0,0,0.15);

    transition: 0.4s;
}

/* HOVER EFFECT */

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

    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* IMAGE */

.officer-image {
    width: 45%;
    height: 400px;

    object-fit: cover;
}

/* CONTENT AREA */

.officer-content {
    padding: 40px;
    flex: 1;
}

.officer-content h2 {
    font-size: 38px;

    color: #183152;

    margin-bottom: 15px;
}

.officer-content p {
    font-size: 18px;

    line-height: 1.6;

    color: #444;

    margin-bottom: 25px;
}

/* BUTTON */

.officer-btn {
    background-color: #F2B134;

    color: #183152;

    border: none;

    padding: 14px 28px;

    font-size: 16px;
    font-weight: bold;

    border-radius: 8px;

    cursor: pointer;

    transition: 0.3s;
}

.officer-btn:hover {
    background-color: #d99a22;

    transform: scale(1.05);
}

/* ===== OFFICERS PAGE HEADER ===== */

.officer-page-header {
    text-align: center;

    padding: 70px 20px 40px 20px;

    background-color: #F7F5F2;
}

.officer-page-header h1 {
    font-size: 48px;

    color: #183152;

    margin-bottom: 15px;
}

.officer-page-header p {
    font-size: 20px;

    color: #555;

    max-width: 800px;

    margin: auto;
}

/* ===== OFFICERS GRID ===== */

.officer-grid {
    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

    gap: 30px;

    padding: 40px;

    max-width: 1300px;

    margin: auto;
}

/* ===== OFFICER CARD ===== */

.officer-card {
    background: white;

    border-radius: 20px;

    overflow: hidden;

    text-align: center;

    box-shadow: 0 6px 18px rgba(0,0,0,0.15);

    transition: 0.4s;
}

/* HOVER EFFECT */

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

    box-shadow: 0 10px 28px rgba(0,0,0,0.22);
}

/* OFFICER IMAGE */

.officer-photo {
    width: 100%;

    height: 320px;

    object-fit: cover;
}

/* OFFICER NAME */

.officer-card h2 {
    color: #183152;

    margin-top: 20px;

    font-size: 28px;
}

/* OFFICER POSITION */
 
.officer-card h3 {
    color: #F2B134;

    margin-bottom: 25px;

    font-size: 20px;
}
```
 
--- 
/* ===== HERO ===== */

.awards-hero {
    background: linear-gradient(rgba(24,49,82,0.85), rgba(24,49,82,0.85)),
                url("awards-background.jpg");

    background-size: cover;
    background-position: center;

    color: white;

    text-align: center;

    padding: 90px 20px;
}

.awards-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    text-align: center;
}

.awards-hero p {
    font-size: 20px;
    max-width: 800px;
    margin: auto;
}

/* ===== SECTION TITLES ===== */

.section-title {
    text-align: center;
    font-size: 34px;
    color: #183152;
    margin-bottom: 30px;
}

/* ===== GRID LAYOUTS ===== */

.awards-grid,
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

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

.info-card,
.event-card,
.highlight-card {
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    transition: 0.3s;
}

.info-card:hover,
.event-card:hover {
    transform: translateY(-6px);
}

/* ===== EVENT CARD TEXT ===== */

.event-card h3 {
    color: #183152;
    margin-bottom: 10px;
}

.event-card p {
    color: #555;
}

/* ===== HIGHLIGHT SECTION ===== */

.highlight-card {
    text-align: center;
    border-left: 6px solid #F2B134;
}

.highlight-card h2 {
    color: #183152;
}
/* ===== SECTION BANNER IMAGES ===== */

.section-banner {
    width: 100%;

    max-height: 600px;

    object-fit: cover;

    border-radius: 16px;

    margin-bottom: 25px;

    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
/* ===== JOIN HERO ===== */

.join-hero {
    height: 80vh;

    background: url("join-hero.jpg");
    background-size: cover;
    background-position: center;

    position: relative;

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

.join-hero-overlay {
    background: rgba(24,49,82,0.75);

    width: 100%;
    height: 100%;

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

    text-align: center;

    color: white;

    padding: 20px;
}

.join-hero h1 {
    font-size: 60px;

    margin-bottom: 10px;
}

.join-hero p {
    font-size: 20px;

    max-width: 700px;

    line-height: 1.6;
}

.join-hero-btn {
    margin-top: 25px;

    padding: 14px 30px;

    border: none;

    background-color: #F2B134;

    color: #183152;

    font-weight: bold;

    font-size: 16px;

    cursor: pointer;

    border-radius: 8px;

    transition: 0.3s;
}

.join-hero-btn:hover {
    transform: scale(1.05);

    background-color: #d99a22;
}

/* ===== GLASS CARD ===== */

.glass-card {
    background: white;

    padding: 40px;

    border-radius: 18px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.12);

    max-width: 900px;

    margin: auto;
}

/* ===== REQUIREMENTS GRID ===== */

.requirements-grid {
    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

    gap: 20px;
}

.info-panel {
    background: white;

    padding: 25px;

    border-radius: 14px;

    box-shadow: 0 6px 18px rgba(0,0,0,0.10);

    transition: 0.3s;
}

.info-panel:hover {
    transform: translateY(-6px);
}

/* ===== FEATURE SPLIT SECTION ===== */

.feature-split {
    display: flex;

    gap: 30px;

    align-items: center;

    flex-wrap: wrap;
}

.feature-text {
    flex: 1;
}

.feature-text h2 {
    font-size: 36px;

    color: #183152;
}

.feature-text p {
    font-size: 18px;

    line-height: 1.6;

    color: #444;
}

.feature-text ul {
    margin-top: 15px;

    padding-left: 20px;
}

.feature-image img {
    width: 500px;

    max-width: 100%;

    border-radius: 16px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* ===== FINAL HIGHLIGHT ===== */

.highlight-join {
    text-align: center;

    background: #183152;

    color: white;

    padding: 60px 30px;

    border-radius: 18px;
}

.highlight-join h2 {
    font-size: 40px;
}

.highlight-join p {
    font-size: 18px;

    max-width: 900px;

    margin: auto;

    line-height: 1.6;
}
/* ===== CONTACT HERO ===== */

.contact-hero {
    height: 55vh;

    background: linear-gradient(rgba(24,49,82,0.8),
                rgba(24,49,82,0.8)),
                url("contact-background.jpg");

    background-size: cover;
    background-position: center;

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

    text-align: center;

    color: white;
}

.contact-overlay h1 {
    font-size: 56px;

    margin-bottom: 15px;
}

.contact-overlay p {
    font-size: 20px;

    max-width: 700px;

    margin: auto;

    line-height: 1.6;
}

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

.contact-grid {
    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

    gap: 30px;
}

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

.contact-card {
    background: white;

    padding: 35px;

    border-radius: 18px;

    box-shadow: 0 8px 24px rgba(0,0,0,0.12);

    transition: 0.3s;
}

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

    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

.contact-card h2 {
    color: #183152;

    font-size: 30px;

    margin-bottom: 25px;

    border-bottom: 3px solid #F2B134;

    padding-bottom: 10px;
}

.contact-label {
    font-weight: bold;

    color: #183152;

    margin-top: 20px;

    margin-bottom: 5px;
}

.contact-card p {
    color: #444;

    line-height: 1.6;
}
/* ===== ABOUT HERO ===== */

.about-hero {
    height: 60vh;

    background: linear-gradient(rgba(24,49,82,0.75),
                rgba(24,49,82,0.75)),
                url("about-background.jpg");

    background-size: cover;
    background-position: center;

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

    text-align: center;

    color: white;
}

.about-overlay h1 {
    font-size: 58px;

    margin-bottom: 15px;
}

.about-overlay p {
    font-size: 20px;

    max-width: 700px;

    line-height: 1.6;
}

/* ===== ABOUT IMAGE ===== */

.about-image {
    width: 100%;

    max-width: 1100px;

    display: block;

    margin: auto;

    border-radius: 18px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.18);
}

/* ===== ABOUT CARD ===== */

.about-card {
    background: white;

    padding: 45px;

    border-radius: 18px;

    box-shadow: 0 8px 24px rgba(0,0,0,0.12);

    max-width: 1100px;

    margin: auto;
}

.about-card h2 {
    color: #183152;

    font-size: 40px;

    margin-bottom: 25px;
}

.about-card p {
    font-size: 18px;

    line-height: 1.9;

    color: #444;

    margin-bottom: 20px;
}

/* ===== CREED SECTION ===== */

.creed-card {
    background: #183152;

    color: white;

    padding: 50px;

    border-radius: 18px;

    max-width: 1100px;

    margin: auto;

    box-shadow: 0 10px 28px rgba(0,0,0,0.18);
}

.creed-card h2 {
    font-size: 42px;

    margin-bottom: 30px;

    text-align: center;
}

.creed-card p {
    font-size: 18px;

    line-height: 1.9;

    margin-bottom: 22px;
}

/* =========================
   RESPONSIVE DESIGN (MOBILE FIX)
   ========================= */

@media (max-width: 768px) {

    /* ----- GLOBAL SPACING ----- */
    body {
        overflow-x: hidden;
    }

    .section {
        padding: 20px 15px;
    }

    /* ----- NAVBAR ----- */
    .navbar {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .nav-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-top: 10px;
    }

    .nav-links a {
        font-size: 18px;
    }

    /* ----- HERO TEXT ----- */
    .awards-hero h1,
    .about-overlay h1,
    .contact-overlay h1,
    .join-hero h1 {
        font-size: 32px;
    }

    .awards-hero p,
    .about-overlay p,
    .contact-overlay p,
    .join-hero p {
        font-size: 16px;
        padding: 0 10px;
    }

    /* ----- GRID LAYOUTS STACK ----- */
    .card-grid,
    .awards-grid,
    .contact-grid,
    .officer-grid,
    .requirements-grid {
        grid-template-columns: 1fr;
    }
    .card-grid,
    .officer-grid,
    .awards-grid,
    .contact-grid,
    .requirements-grid {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;
    }
    .officer-feature-card {
        flex-direction: column;
    }

    .officer-image {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }

    .officer-content {
        padding: 20px;
        text-align: center;
    }

    .officer-content h2 {
        font-size: 28px;
    }

    /* ----- CARDS ----- */
    .event-card,
    .info-card,
    .contact-card,
    .officer-card,
    .award-card {
        width: 100%;
    }

    /* ----- OFFICER IMAGES ----- */
    .officer-photo {
        height: 250px;
    }

    /* ----- HERO HEIGHTS ----- */
    .join-hero,
    .about-hero,
    .contact-hero,
    .awards-hero {
        height: auto;
        min-height: 50vh;
        padding: 60px 20px;
    }

    /* ----- FEATURE SECTIONS ----- */
    .feature-split {
        flex-direction: column;
        text-align: center;
    }

    .feature-image img {
        width: 100%;
    }

    /* ----- BUTTONS ----- */
    button {
        width: 100%;
        max-width: 300px;
    }

}