body {
    overflow-x: hidden; /* Hides horizontal overflow */
    box-sizing: border-box;
}

.navbar {
    background: transparent;
    position: fixed;
    width: 100%;
    z-index: 1000;

    .navbar-brand {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-grow: 1;

        img {
            height: 60px;
            width: 60px;
        }
    }

    .navbar-nav {
        flex-grow: 1;
        justify-content: space-between;
    }

    .nav-link {
        color: #FFD700 !important;

        &:hover {
            color: white !important;
        }
    }

    .navbar-toggler {
        border-color: white;

        .navbar-toggler-icon {
            &::before {
                content: '';
                display: block;
                width: 24px;
                height: 3px;
                background-color: white;
                margin: 5px 0;
            }

            &::after {
                content: '';
                display: block;
                width: 24px;
                height: 3px;
                background-color: white;
                margin: 5px 0;
            }
        }
    }
}
footer a:hover{
    color: #FFD700 !important;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    font-size: 30px;
}

.overlays {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;

    .overlay-content {
        text-align: center;
        color: white;
    }

    .closebtn {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 30px;
        color: white;
        cursor: pointer;
    }
}

.nav-name{
    font-size: 30px!important;
    text-decoration: none;
    color: #FFD700 !important;
}

.head-image {
    background-image: url("https://t3.ftcdn.net/jpg/08/12/40/42/360_F_812404223_m8xhpPrfakguIEgonaO8pBwrLq6hd7IH.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #444;
    position: relative;
    height: 80vh;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-blend-mode: overlay;
}

.intro{
    margin: auto;
    width: 500px;
    padding: 50px;
}

.image-container {
    position: relative;
    overflow: hidden;
}
.image-container img.flag {
    width: 100%;
    height: 400px; /* Ensures all images have the same height */
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 18px;
}
.image-container:hover img.flag {
    transform: scale(1.1);
}
.image-container:hover .overlay {
    opacity: 1;
}

.img{
    background-image: url("https://png.pngtree.com/thumb_back/fw800/background/20240703/pngtree-free-download-edit-pictures-hq-image-stock-photos-on-wallpaper-safari-image_15934736.jpg");
    background-position: center;
    background-size:cover;
    background-color:#444;
    max-width: 100%;
    padding: 50px;
    background-blend-mode: overlay;
}

img{
    max-width: 100%;
    height: auto;
    border-radius: 10%;
}

@media screen and (min-width:700px){
    .nav-name{
        font-size: 40px!important;
    }
}