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

header {
    background-color: #333;
    color: #fff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
}

.hero {
    background-image: url('assets/banner.jpg'); /* Add another image */
    background-size: cover; /* Ensure both images cover the area */
    background-position: center; /* Position both images */
    /* height: 80vh; */
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #333;
    text-align: center;
    padding: 1rem;
    font-size: 3rem; /* h1 */
    font-size: 1.5rem; /* p */
}

.hero h1 {
    font-size: 6rem;
    margin-top: 20px;
    margin-bottom: 20%;
}

@media (max-width:600px){
    .hero h1{
        font-size: 4rem;
        margin-top: 20px;
        margin-bottom: 20%;
    }
}

.hero p {
    color:#333;
    font-size: 3rem;
    margin-bottom: 20px;
    z-index: 2;
}

/* Add a vignette to the bottom of the image */
.hero::after {
    content: '';
    position: absolute;
    bottom:0;
    left: 0;
    width: 100%;
    height: 50%; /* Adjust the height of the vignette as needed */
    background: linear-gradient(to top, #f4f4f4, rgba(255, 255, 255, 0));
    z-index: 1;
}

.content-section {
    padding: 2rem;
}

.content-section h2 {
    margin-top: 1.5rem;
}

ul {
    list-style: disc;
    padding-left: 1.5rem;
}

a {
    color: #007BFF;
    text-decoration: none;
}

body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    /* Prevents overall page horizontal scrollbar from appearing if gallery is wider than viewport */
    overflow-x: hidden; 
}

.gallery-container {
    display: flex;
    /* Allows horizontal scrolling */
    overflow-x: auto; 
    /* Hides the default scrollbar for a cleaner look, use JavaScript to add custom navigation if desired */
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none;  /* For Internet Explorer and Edge */
    padding: 20px;
    gap: 15px; /* Space between images */
    white-space: nowrap; /* Keeps all images on one line */
}

/* For Chrome, Safari, and Opera */
.gallery-container::-webkit-scrollbar {
    display: none; 
}

.gallery-container img {
    /* Ensures images maintain their aspect ratio and fill the container height */
    height: 300px; 
    /* Prevents images from stretching */
    width: auto; 
    /* Ensures images don't shrink to fit container if it's too narrow */
    flex-shrink: 0; 
    /* Optional styling for images */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    /* Smooth scrolling experience */
    scroll-snap-align: start; 
}
