/* Global Styles */
.content-section {
    background-color: #003161;
    padding: 0 20px;
    color: white;
}

.gold-strip {
    background-color: #bc9c22;
    height: 20px;
    width: 100vw;
    margin: 0;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #c0af6a;
    color: white;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #003161;
    color: white;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-sizing: border-box;
}

header .logo img {
    width: 300px;
    max-width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
}

nav {
    display: flex;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 60px;
}

/* Video Background */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
}

/* Hero Content Alignment */
.hero-content {
    position: relative;
    text-align: center;
    z-index: 1;
    color: white;
    padding: 20px;
    margin-top: 80px;
}

/* Center the button */
.cta-button {
    display: inline-block;
    margin-top: 20px;
    background-color: white;
    color: #0073e6;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    text-align: center;
}

.cta-button:hover {
    background-color: #005bb5;
    color: white;
}

/* Committee Section */
.committee-members {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px 0;
}

.member {
    text-align: center;
    color: white;
    flex-basis: 30%;
    margin-bottom: 20px;
}

.member img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    max-width: 100%;
}

/* Form Fields */
form input,
form textarea {
    width: 50%;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    color: black;
    box-sizing: border-box;
}

button {
    background-color: #004080;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #003366;
}

/* Resource Section Links */
#resources a {
    color: #90ee90;
    text-decoration: none;
}

#resources a:hover {
    text-decoration: underline;
}

/* Timeline Section */
.timeline-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 30px 0;
}

.timeline-item {
    background-color: #f5f5f5;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    flex-basis: 20%;
    text-align: center;
    color: #003161;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item h3 {
    color: #bc9c22;
}

.timeline-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Footer Styles */
footer {
    background-color: white;
    color: #003161;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5 px 5px;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 25px; /* Explicitly set the footer height to 20px */
    box-sizing: border-box;
    z-index: 1000;
    border-top: 2px solid #003161;
}

footer .left {
    flex: 1;
    text-align: left;
    font-size: 14px;
    color: #003161;
    padding-left: 10px;
}

footer .right {
    flex: 1;
    text-align: right;
    padding-right: 10px;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block;
}

footer ul li {
    display: inline;
    margin-left: 15px;
}

footer ul li a {
    color: #003161;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
}

footer ul li a:hover {
    text-decoration: underline;
}

/* Mobile and Small Screens */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 10px;
    }

    header .logo {
        margin-bottom: 10px;
    }

    .menu-toggle {
        display: block;
        font-size: 24px;
        cursor: pointer;
        margin-left: auto;
        color: white;
    }

    nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #003161;
        position: absolute;
        top: 60px;
        left: 0;
        padding: 10px 0;
    }

    nav.active {
        display: flex;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 10px 0;
        text-align: center;
    }

    nav ul li a {
        font-size: 18px;
        padding: 10px;
        display: block;
    }

    footer {
        flex-direction: column;
        height: auto;
        padding: 20px;
        text-align: center;
    }

    .hero {
        height: auto;
        min-height: 100vh;
        padding-top: 60px;
    }

    .hero-content {
        padding: 10px;
        margin-top: 50px;
    }

    .committee-members {
        flex-direction: column;
        align-items: center;
    }

    .timeline-container {
        flex-direction: column;
        align-items: center;
    }

    .member,
    .timeline-item {
        width: 90%;
    }

    form input,
    form textarea {
        width: 100%;
    }
}
