/* --- VARIABLES & RESET --- */
:root {
    --deep-forest: #2F4F3A;
    --moss-green: #4B6B4A;
    --muted-green: #6F8F62;
    --sage-green: #8FAF7A;
    --off-white: #F5F7F5;
    --rich-black: #0F0F0F;
    --card-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    --hover-shadow: 0 15px 35px rgba(47, 79, 58, 0.2);
    --header-font: 'Libre Baskerville', serif;
    --body-font: 'Montserrat', sans-serif;
    --size-header: 3.2rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    background-color: var(--off-white);
    color: var(--rich-black);
    line-height: 1.6;
}

/* --- HERO SECTION --- */
.Hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 50vh;
    min-height: 380px;
    width: 100%;
    text-align: center;
    overflow: hidden;
    color: white;
    background: linear-gradient(rgba(15, 15, 15, 0.65), rgba(15, 15, 15, 0.65)), 
                url('https://images.unsplash.com/photo-1541872703-74c5e44368f9?auto=format&fit=crop&w=1600&q=80') no-repeat center/cover;
}

.header h1 {
    font-family: var(--header-font);
    font-size: var(--size-header);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
    padding: 0 5%;
}

/* --- NAV & DROPDOWNS --- */
/* nav {
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    z-index: 1000;
}

nav img {
    height: 50px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--sage-green);
} */

.aboutdrop, .committeedrop { 
    position: relative; 
}

.aboutcont, .committeecont {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background-color: rgba(15, 15, 15, 0.95);
    padding: 1rem;
    flex-direction: column;
    gap: 10px;
    text-align: left;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.5);
    z-index: 1001;
    border-radius: 4px;
}

.aboutdrop:hover .aboutcont,
.committeedrop:hover .committeecont { 
    display: flex; 
}

/* --- MAIN CONTAINER & SECTION HEADINGS --- */
.section-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 5%;
}

.category-block {
    margin-bottom: 60px;
}

.category-block h2 {
    font-family: var(--header-font);
    font-size: 1.8rem;
    color: var(--deep-forest);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.heading-line {
    border: none;
    height: 3px;
    background-color: var(--sage-green);
    margin: 12px 0 30px 0;
    width: 80px;
}

/* --- GRID & CARDS --- */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.single-card {
    grid-template-columns: repeat(auto-fill, minmax(280px, 360px));
}

.card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid #EAEAEA;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
    border-color: var(--sage-green);
}

.card-img-wrap {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-img-wrap img {
    transform: scale(1.08);
}

.card h3 {
    font-family: var(--header-font);
    font-size: 1.25rem;
    color: var(--deep-forest);
    padding: 20px 15px;
    text-align: center;
    width: 100%;
}

/* --- MEDIA QUERIES --- */
@media (max-width: 900px) {
    :root {
        --size-header: 2.4rem;
    }

    nav ul {
        display: none; /* Controlled by mobile JS nav script */
    }

    .grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 600px) {
    :root {
        --size-header: 1.8rem;
    }

    .Hero {
        height: 40vh;
    }

    .category-block h2 {
        font-size: 1.4rem;
    }

    .grid, .single-card {
        grid-template-columns: 1fr;
    }

    .card-img-wrap {
        height: 180px;
    }
}

/* --- FOOTER --- */
/* footer {
    background-color: var(--rich-black);
    padding: 40px 0;
    text-align: center;
}

.footer-social a {
    color: var(--off-white);
    font-size: 1.6rem;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--sage-green);
} */
