/* Reset some default browser styles */
body, h1, p, ul, li, button, input {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'EB Garamond';
    font-size: 20px;
    color: white;
}

#video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    backdrop-filter: blur(15px); /* Apply blur effect */
}

.page {
    width: 100%;
    min-height: 100vh; /* Ensure each page takes at least the viewport height */
    overflow-y: auto; /* Enable vertical scrolling */
    scroll-snap-type: y mandatory; /* Enable snapping to each section */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

h1 {
    font-size: 4em;
    margin-bottom: 20px;
    text-align: center; /* Center the text horizontally */
    background: linear-gradient(to right, #745E45, #817B75, #8F9DA0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.intro {
    margin-bottom: 20px;
    text-align: center; /* Center the text horizontally */
}

.arrow-down {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 15px solid white;
    cursor: pointer; /* Add cursor pointer */
}

/* Style for top banner navigation */
.top-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.1); /* Semi-transparent background color */
    backdrop-filter: blur(15px); /* Apply blur effect */
    padding: 5px 0; /* Adjusted padding */
    height: 50px; /* Adjusted height */
}

.legal-info {
    background-color: rgba(0, 0, 0, 0.1); /* Semi-transparent background color */
    backdrop-filter: blur(15px); /* Apply blur effect */
    font-size: 15px;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    max-height: 40px; /* Adjust height as needed */
}

.top-banner nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.top-banner nav ul li {
    display: inline;
    margin-right: 20px;
}

.top-banner nav ul li a {
    color: white;
    text-decoration: none;
    font-family: 'EB Garamond', serif;
    font-size: 18px;
    transition: color 0.3s ease; /* Add smooth transition for color change */
}

.top-banner nav ul li a:hover {
    color: #ccc; /* Change color on hover */
}

.logo {
    max-height: 35px; /* Increase the size of the logo */
    margin-right: auto; /* Push the logo to the left */
    margin-left: 0px; /* Add some space from the left edge */
    margin-top: 10px; /* Move the logo slightly lower */
}