/* --- VARIABLES & RESET --- */
:root {
    --deep-forest: #2F4F3A;
    --moss-green: #4B6B4A;
    --muted-green: #6F8F62;
    --sage-green: #8FAF7A;
    --off-white: #F5F7F5;
    --rich-black: #0F0F0F;
    --header-font: 'Libre Baskerville', serif;
    --body-font: 'Montserrat', sans-serif;
    --size-header: 3.5rem;
}

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

body {
    font-family: var(--body-font);
    background-color: var(--off-white);
    color: var(--rich-black);
    overflow-x: hidden;
}

/* --- HERO & BACKGROUND --- */
.Hero {
    position: relative;
    height: 60vh; /* Shorter than home page hero */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
    width: 100%;
}

.background-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    z-index: -1;
    filter: brightness(40%);
}

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

.content h1 {
    font-family: var(--header-font);
    font-size: var(--size-header);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

/* --- NAVIGATION UNIFICATION --- */
/* 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.8), rgba(0, 0, 0, 0));
}

nav ul {
    list-style: none;
    display: flex;
    gap: 50px;
}

nav img {
    height: 50px;
    width: auto;
    display: block;
}

nav a {
    color: white !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    border: none !important;
    padding: 0 !important;
    background: none !important;
    transition: opacity 0.3s ease;
}

nav a:hover {
    opacity: 0.7;
} */

/* DROPDOWNS SYNC */
.aboutdrop, .committeedrop { 
    position: relative; 
}

.aboutcont, .committeecont {
    display: none;
    position: absolute;
    top: 100%;
    right: 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 0px rgba(0,0,0,0.5);
    z-index: 1001;
}

.aboutdrop:hover .aboutcont,
.committeedrop:hover .committeecont { 
    display: flex; 
}

.aboutcont a, .committeecont a {
    font-size: 0.75rem !important;
    font-family: var(--body-font);
    padding: 5px 0 !important;
    border: none !important;
    text-transform: none;
    letter-spacing: normal;
}
/* --- PREPARATION CONTENT --- */
.Prepcont {
    padding: 80px 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    background-color: var(--off-white);
}

.Prepcont p {
    font-size: 1.1rem;
    margin-bottom: 10px;
    text-align: center;
}

.res1, .res2 {
    width: 100%;
    max-width: 600px;
    padding: 1.5rem 2rem;
    background: white;
    border-left: 5px solid var(--moss-green);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.res1:hover, .res2:hover {
    transform: translateX(10px);
}

/* .Prepcont a {
    color: var(--moss-green);
    font-weight: 600;
    text-decoration: none;
    border: none;
    padding: 0;
}

.Prepcont a:hover {
    text-decoration: underline;
} */

.header {
    position: relative;
    color: #2F4F3A;
}

.header::after{
    content: "";
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(to right, #2d4a3e, transparent);
    border-radius: 50%;
}

.guides {
    margin: 15px;
    padding: 8px;
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.guides a {
    display:flex;
    color: var(--rich-black);
    font-weight: 600;
    justify-content: center;
    font-size: 17px;
    border-left: 6px solid var(--moss-green);
    border-radius: 6px;
    padding: 17px;
    width: 100%;
    margin-bottom: 20px;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease;
}

.guides a:hover {
    transform: scale(1.05);
    color: rgba(0, 0, 0, 0.5);
}

.video-grid {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
}

.card {
    margin: 15px;
    padding: 8px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    overflow: hidden;

    width: 100%;
    max-width: 400px;
    transition: 0.3s ease;
}

.card a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.card:hover {
    transform: scale(1.1);
}

.card p {
    padding: 12px;
    text-align: center;
    margin: 0;
    font-weight: 500;

    min-height: 3em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card a:hover {
    color: rgba(0,0,0,0.5);
}

.card img {
    border-radius: 6px;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
}

/* --- FOOTER UNIFICATION --- */
/* footer {
    background-color: var(--rich-black);
    padding: 60px 0;
    text-align: center;
}

.footer-social a {
    color: var(--off-white);
    font-size: 1.8rem;
    margin: 0 20px;
    border: none !important;
    background: none !important;
    padding: 0 !important;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--sage-green);
} */
