/* --- GLOBAL DESIGN TOKENS --- */
:root {
    --deep-forest: #1F3F29;
    --moss-green: #4B6B4A;
    --sage-green: #8FAF7A;
    --off-white: #FAFBF9;
    --card-bg: #FFFFFF;
    --rich-black: #111111;
    --text-muted: #666666;
    --border-color: #EAEAEA;
    --header-font: 'Libre Baskerville', serif;
    --body-font: 'Montserrat', sans-serif;
    --size-header: 3.2rem;
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body {
    font-family: var(--body-font);
    background-color: var(--off-white);
    color: var(--rich-black);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- NAVIGATION & HERO (SYNCHRONIZED WITH OTHER PAGES) --- */
.Hero-mini {
    position: relative;
    background-color: var(--deep-forest);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    height: 45vh;
    width: 100%;
}

/* nav {
    font-family: var(--header-font);
    position: absolute;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 8%;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
}

nav ul {
    display: flex;
    list-style-type: none;
    gap: 40px;
}

nav img {
    height: 48px;
    width: auto;
    display: block;
}

nav a {
    color: white !important;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease;
}

nav a:hover {
    opacity: 0.75;
} */

/* DROPDOWN SYNC */
.aboutdrop, .committeedrop { 
    position: relative; 
}

.aboutcont, .committeecont {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 210px;
    background-color: rgba(17, 17, 17, 0.98);
    padding: 1rem;
    flex-direction: column;
    gap: 12px;
    text-align: left;
    box-shadow: 0px 10px 25px rgba(0,0,0,0.3);
    z-index: 1001;
    border-radius: 4px;
}

.aboutdrop:hover .aboutcont,
.committeedrop:hover .committeecont { 
    display: flex; 
}

.aboutcont a, .committeecont a {
    font-size: 0.78rem !important;
    font-family: var(--body-font);
    padding: 4px 0 !important;
    text-transform: none;
    letter-spacing: normal;
}

.header-title {
    position: relative;
    z-index: 1;
    padding-top: 40px;
}

.header-title h1 {
    font-family: var(--header-font);
    font-size: var(--size-header);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* --- MINIMALIST CONTENT SECTION --- */
.contact-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 90px 20px 120px 20px;
}

.contact-header-text {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px auto;
}

.contact-header-text .subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--moss-green);
    display: block;
    margin-bottom: 12px;
}

.contact-header-text h2 {
    font-family: var(--header-font);
    font-size: 2.2rem;
    color: var(--rich-black);
    line-height: 1.3;
    margin-bottom: 16px;
}

.contact-header-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    font-weight: 300;
}

/* --- CARDS GRID --- */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 40px 35px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.card-icon {
    width: 50px;
    height: 50px;
    background-color: var(--off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.card-icon i {
    font-size: 1.3rem;
    color: var(--deep-forest);
}

.contact-card h3 {
    font-family: var(--header-font);
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--rich-black);
}

.contact-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 28px;
    font-weight: 300;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--deep-forest);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.contact-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.contact-link:hover {
    color: var(--moss-green);
}

.contact-link:hover i {
    transform: translateX(4px);
}

/* --- FOOTER --- */
/* footer {
    background-color: var(--rich-black);
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-social a {
    color: var(--off-white);
    font-size: 1.5rem;
    margin: 0 18px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--sage-green);
} */
