* {
    box-sizing: border-box;
    font-family: Lora;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #000;
}

/* Style the header */
header {
    background-color: hsla(0, 0%, 0%, .0);
    color: #fff;
    padding: 10px;
    text-align: center;
    position: fixed;
    width: 100vw;
    z-index: 2;
    display: inline-flex;
    justify-content: space-between;
}

.home-btn {
    margin: 10px;
    font-size: clamp(1vw, 3vw, 1rem);
}
.home-logo {
    -webkit-filter: invert(100%); /* Safari/Chrome */
    filter: invert(100%);
    height: auto;
    width: 5vw;
}

nav {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: hsla(0, 0%, 0%, 0);
    padding: 10px;
    align-items: center;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

li {
    margin-right: 20px;
}

a {
    color: white;
    text-decoration: none;
}

.menu-btn {
    background-color: hsla(0, 0%, 0%, 0);
    color: #fff;
    border: 1px solid #fff;
    display: block;
    padding: 12px 16px;
    text-decoration: none;
}
.menu-btn:hover {
    cursor: pointer;
}

/* Dropdown styles */
.dropdown {
    display: none;
    position: relative;
    background-color: hsla(0, 0%, 0%, 0);
    /* box-shadow: 0 8px 16px hsla(0, 0%, 0%, 0.2); */
}

.dropdown a {
    display: block;
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    border: 1px solid #fff;
}

/* Style the Landing page (Hero section) */

#backgroundSection {
    background-image: url('./images/bratticanpictures/ambassadors.jpg'); /* Replace with your actual background image path */
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 0px 0; /* Adjust padding as needed */
    position: relative;
    height: 130vh;
    transition: background-image 0.5s ease-in-out;
}

.overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, .6) 0%, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0) 90%, rgba(0, 0, 0, 1) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h2 {
    letter-spacing: 2px;
    font-size: clamp(1vw, 1rem + 4vw, 5rem);
    margin: 0;
    text-shadow:   -1px 1px 0 #000, 
                    1px 1px 0 #000, 
                    1px -1px 0 #000, 
                    -1px -1px 0 #000;
}

/* Ambassador Section */

.ambassador-container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    text-shadow:   -1px 1px 0 #000, 
                    1px 1px 0 #000, 
                    1px -1px 0 #000, 
                    -1px -1px 0 #000;
}

.ambassador {
    display: flex;
    flex-direction: column;
    width: 40vw;
    align-items: center;
    text-align: left;
    list-style-position: inside;
}
.ambassador-about-list {
    list-style-type: disc;
}
.ambassador ul {
    list-style: disc;
    display: flex;
    flex-direction: column;
}

.ambassador h3 {
    margin-bottom: .5rem;
    text-transform: uppercase;
}
.margin0 {
    margin-top: 0;
}

.apply-btn {
    border: 1px solid #fff;
    padding: 1rem;
    margin: 1rem 0;
}
.apply-btn:hover {
    background-color: #fff;
    color: #000;
    cursor: pointer;
}

/* Style the footer */
footer {
    background-color: hsla(0, 0%, 0%, 1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    padding: 10px;
}

.socials {
    margin-left: 1rem;
    font-size: 2rem;
}

.powered {
    margin-right: 1rem;
}

/* Responsive design for smaller screens */
@media screen and (max-width: 768px) {
    .home-logo {
        width: 10vw;
    }
    .ambassador-container {
        display: flex;
        flex-direction: column;
        /* height: 70vh; */
    }
    .ambassador-req {
        text-align: left;
    }
    .ambassador-benefit {
        text-align: center;
    }
    .ambassador {
        width: 95vw;
        /* font-size: small; */
        align-self: center;
    }
    footer {
        flex-direction: column;
    }
}