@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oxanium:wght@200..800&family=Quicksand:wght@300..700&family=Roboto:ital,wght@0,100..900;1,100..900&family=Satisfy&display=swap');

body {
    font-family: "Roboto", sans-serif;
    text-align: center;
}

h1 {
    color: #2A4D69;
    font-family: "Quicksand", sans-serif;
}

h2 {
    color: #7E6CA8;
    font-family: "Oxanium", sans-serif;

}

.logo {
    margin-left: 1rem;
    height: 100%;
}

.banner {
    margin-bottom: 1rem;
    position: relative;
}

.banner img {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    width: 100%;
}

.banner-text {
    position: absolute;
    top: 50%;
    width: 50%;
    transform: translateY(-50%);
    color: white;

}

.banner-text h1 {
    color: white;
    font-family: "Aleo", serif;

    font-size: 3vw;
    margin: 0;
    text-transform: uppercase;
}

.banner p {
    margin-top: 10px;
    font-size: 2vw;
    font-family: "Montserrat", serif;

}

header {
    background: rgba(135, 206, 235, 0.6);
    display: flex;
    align-items: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    gap: 1rem;
    height: 10vh;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

nav {
    color: white;
    margin-left: auto;
    margin-right: 1rem;
    list-style-type: none;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav li {
    margin: 0;
    padding: 0;
}

nav li a {
    color: white;
    background-color: rgba(255, 255, 255, 0.05);
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    display: inline-block;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

nav li a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.current-page {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: white;
    font-weight: 700;
}

label {
    font-family: "Roboto", serif;
    font-weight: bold;
}

.hidden {
    display: none;
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}