html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    height: 100%;
}

body {
    background-color: #00274C;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.bold {
    font-weight: bold;
}

header {
    position: relative;
    width: 100%;
}

.logo {
    position: absolute;
    left: 4rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: bold;
    z-index: 1;
}

.logo a {
    color: #fff;
    text-decoration: none;
}


nav {
    height: 80px;
    background: linear-gradient(rgba(255, 203, 5, 0.6), rgba(255, 203, 5, 0.6));
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.nav-links ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 3rem;
}

.nav-links ul li {
    display: flex;
    align-items: center;
}

.nav-links ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 12px;
    transition: all 0.3s ease;
}
.nav-links ul li a:hover {
    color: #00274C;
}

.nav-links a.active {
    text-decoration: underline;
}


.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0 calc((100vw - 1300px) / 2);
    margin: 0;
}

.hero {
    height: 30px;
}

.center {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px 30px 32px;
}

.center h1 {
    font-size: 3.5rem;
    color: #fff;
    margin: 0 0 32px 0;
    text-align: center;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 0 0 40px 0;
    width: 100%;
}

.image-box {
    position: relative;
    width: 100%;
    padding-top: 66.67%;
    /* This creates a 3:2 aspect ratio */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
    overflow: hidden;
}

.image-box:hover {
    transform: translateY(-5px);
}

.image-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #fff;
    margin: 0 0 24px 0;
}

iframe {
    margin: 40px 0 40px 0;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.dropbtn {
    background-color: #00274C;
    color: white;
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(0, 39, 76, 0.9);
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 10px;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: center;
}

.dropdown-content a:hover {
    background-color: rgba(255, 203, 5, 0.6);
    border-radius: 10px;
}

.dropdown:hover .dropbtn {
    background-color: #00274C;
}

.dropdown:hover .dropdown-content,
.dropdown-content:hover {
    display: block;
}

@media screen and (max-width: 1024px) {
    .image-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .content {
        padding: 16px 16px 16px 16px;
    }

    .center {
        padding: 0 16px 0 16px;
    }

    .center h1 {
        font-size: 2.5rem;
        margin: 0 0 24px 0;
    }

    .image-gallery {
        grid-template-columns: 1fr;
    }

    .nav-links ul {
        position: absolute;
        top: 100%;
        left: 0;
        background: rgba(0, 39, 76, 0.9);
        width: 100%;
        display: none;
    }

    .nav-links.active ul {
        display: block;
    }

    .nav-links ul li {
        display: block;
        text-align: center;
    }

    .nav-links ul li a {
        font-size: 12px;
    }
}