/* General Styles */
body {
    margin: 2vw;
    padding: 0;
    background-color: #f0f0f0;
    font-family: 'Open Sans', sans-serif;
}

/* Header */
.header {
    font-size: 2.5vw;
    font-family: 'Adventure', sans-serif;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1vh 1vw;
    position: relative;
    z-index: 10;
    gap: 10px;
}

.logo {
    height: 7vh;
    position: relative;
    z-index: 11;
}

/* Navigation */
.nav {
    display: flex;
    justify-content: space-around;
    padding: 2vh;
    margin-left: auto;
    position: relative;
    z-index: 10;
    white-space: nowrap;
}

.nav a {
    color: inherit;
    text-decoration: none;
    padding: 1vh 1.5vw;
    display: block;
    text-align: right;
}

/* Collapsible Menu */
.menu-toggle {
    display: none;
    font-size: 6vw;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    margin-left: auto;
    z-index: 12;
}

@media (max-width: 768px) {
    .header {
        flex-direction: row;
        justify-content: space-between;
    }

    .nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 0;
        right: 0;
        background: #f0f0f0;
        box-shadow: -4px 0 6px rgba(0, 0, 0, 0.2);
        padding-top: 10vh;
    }

    .nav a {
        padding: 1vh 2vw;
        display: block;
        text-align: right;
        font-size: 5vw;
    }

    .menu-toggle {
        display: block;
    }

    .nav.active {
        display: flex;
    }

    /* Mobile Dropdown Menu - Appears to the Left */
    .dropdown-content {
        right: 100%;
        top: 0;
    }
}

@media (min-width: 769px) {
    /* Desktop Dropdown Menu - Appears Below */
    .dropdown-content {
        left: 0;
        top: 100%;
    }
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
    z-index: 12;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    padding: 1vh 2vw;
    box-shadow: 0px 8px 16px #FFD700(0, 0, 0, 0.2);
    z-index: 15;
    text-align: left;
}

.dropdown-content a {
    color: black;
    padding: 1vh 1vw;
    text-decoration: none;
    display: block;
    text-align: left;
    width: auto;
    white-space: nowrap;
}

.dropdown-content a:hover {
    background-color: #FFD700;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Typography */
h1, h2 {
    font-family: 'Adventure', sans-serif;
    text-align: center;
    font-weight: normal;
}

h1 {
    font-size: clamp(24px, 4vw, 60px);
    padding: 2vh 0;
}

h2 {
    font-size: clamp(24px, 2vw, 36px);
    padding: 0vh 0;
    text-align: left;
}

p {
    text-align: left;
    font-family: 'Open Sans', sans-serif;
    line-height: 2;
    font-size: clamp(15px, 1.5vw, 36px);
    margin: 5vh 0;
}

.section-title {
    font-size: clamp(24px, 3vw, 40px);
    font-family: 'Adventure', sans-serif;
    text-align: center;
    padding: 2vh 0;
}

.name {
    font-size: 2vw;
    font-family: 'Adventure', sans-serif;
    text-align: center;
    padding: 2vh 0;
}

.role {
    font-size: 1.5vw;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    padding: 1vh 0;
}

.member {
    text-align: center;
    image-orientation: center;
}

/* Content Wrappers */
.content-wrapper {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    z-index: 3;
}

/* Footer */
footer {
    background-color: #000;
    color: #f0f0f0;
    text-align: center;
    padding: 2vh;
    font-family: 'Helvetica', sans-serif;
    font-size: 1vw;
}

/* Centered Block */
.centered-block {
    width: 80vw;
    margin: 0 auto 10vh;
    text-align: justify;
    line-height: 2;
    font-family: 'Helvetica', sans-serif;
    font-size: clamp(15px, 2vw, 24px);
}

/* Contact Section */
.contact-section {
    background-color: #fff;
    padding: 2vh;
    border-radius: 2vw;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 80vw;
    margin: 2vh auto;
    text-align: left;
}

.contact-section h2 {
    color: #333;
    font-size: 3vw;
}

.contact-section p {
    color: #666;
    font-size: 2vw;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10vw;
    justify-content: center;
    align-items: center;
}

.member img {
    width: 20vw;
    height: 20vw;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 2vh;
}

/* Forms */
form {
    display: flex;
    flex-direction: column;
    max-width: 80vw;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

input, textarea {
    padding: 1vh;
    margin-top: 1vh;
    border: 1px solid #ccc;
    border-radius: 1vw;
    font-family: 'Helvetica', sans-serif;
}

button {
    margin-top: 2vh;
    padding: 1vh 2vw;
    background-color: #FFD700;
    color: white;
    border: none;
    border-radius: 1vw;
    cursor: pointer;
    font-family: Arial, sans-serif;
    font-size: 2vw;
}

button:hover {
    background-color: #FFD700;
}

