* {
    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/about.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: 100vh;
    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) 50%, 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;
}

/* Style Founder section */
#founder {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 3rem 0;
    /* background-color: hsl(43, 32%, 80%); */
    background-image: url('./images/about-background-image.avif');
    background-size: cover;
    background-position: center;
    color: white;
    width: 100%;
    height: 100%;
}

.founder-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, .75) 50%, rgba(0, 0, 0, .75) 50%, rgba(0, 0, 0, 1) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#founder h3 {
    font-size: 2em;
    color: #fff;
}

#founder p {
    color: #fff;
    text-align: center;
    line-height: 2rem;
    width: 50vw;
}

/* 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;
    }
    footer {
        flex-direction: column;
    }
}