body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    height: 100%;
    color: black;
    background-color: #fff;
}

header {
    background: transparent;
    padding: 1% 5%;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav #logo {
    height: 150px;
}

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

nav ul li {
    padding: 0 1vw;
}

nav ul li a {
    text-decoration: none;
    color: black;
    font-weight: bold;
}

#background-container {
    position: relative;
    background-image: url('backgroundhome.png');
    background-size: cover;
    background-position: center;
    min-height: 70vh;
}

#slogan, #about, #quote {
    position: absolute;
    color: white;
    width: 30%; /* Adjust width based on container size */
}

#slogan {
    top: 43%;
    left: 9%;
    font-size: 20px;
}

#about {
    top: 29%;
    left: 30%;
    font-size: 20px;
    color: black;
}

#quote {
    top: 40%;
    right: 10%;
    font-size: 16px;
}

footer {
    background-color: transparent;
    text-align: center;
    padding: 10px 0;
    width: 100%;
}

/* Media Queries for responsiveness */
@media (max-width: 768px) {
    #slogan, #about, #quote {
        width: 50%; /* Increases width for smaller devices */
        font-size: 90%; /* Smaller text on smaller screens */
    }
}
nav ul li a:hover {
    color: #505050; /* Darken color on hover */
    text-decoration: underline;
}
#slogan, #about, #quote {
    font-size: calc(0.7vw + 0.6vh + 0.4vmin);
}
@media (max-width: 1024px) {
    #slogan, #about, #quote {
        width: 60%; /* Adjust width for medium devices */
        font-size: 95%; /* Slightly smaller text on medium screens */
    }
}

@media (max-width: 480px) {
    nav ul li {
        padding: 0 3vw;
    }
    nav #logo {
        height: 100px; /* Smaller logo on smaller screens */
    }
}
.full-width-image {
    width: 100%; /* Ensures the image takes the full width of the viewport */
    height: auto; /* Maintains the aspect ratio of the image */
    display: block; /* Removes any extra space below the image */
}
.founder-container {
    display: flex;
    align-items: stretch; /* Aligns children's height */
    justify-content: center;
    margin: 20px 0;
}

.founder-image {
    width: 40%; /* Adjusts the width of the image to take half of the container */
    height: auto; /* Maintains aspect ratio */
    object-fit: cover; /* Ensures the image covers the area without distorting */
}

.founder-message {
    padding: 20px;
    width: 60%; /* Adjusts the width to take the remaining half of the container */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centers the text vertically */
    text-align: justify;
    font-size: 16px;
    line-height: 1.6;
}
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); /* Creates a responsive grid layout */
    grid-gap: 15px; /* Space between images */
    padding: 20px; /* Padding around the grid */
    margin: 0 auto; /* Center the grid horizontally */
    width: 90%; /* Adjust width of the gallery container */
}

.gallery-item img {
    width: 100%; /* Make images fill their containers */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px; /* Optional: adds rounded corners to images */
}
.contact-container {
    padding: 20px;
    text-align: center;
}

.contact-info p {
    font-size: 18px;
    line-height: 1.6;
}

.map-container {
    margin-top: 20px;
    text-align: center;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}
