/* Top Navigation Bar */
.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: transparent;
    transition: background-color 0.3s ease;
    z-index: 3;
}

.nav-text{
    font-family: "Photograph Signature", sans-serif;
    font-weight: 100;
    font-size: 70px;
    text-decoration: none;
    color: #ffffff;
}

.nav-bar.scrolled {
    background-color: #4E544D;
    
    .nav-text{
        font-size: 50px;
    }

}

/* HEADER STYLES */
.header {
    height: calc(100vh - 40px);
    width: 100vw;
    position: relative;
    overflow: hidden;
    color: #f8f8f8;
}
.header-container {
    height: 85vh;
    width: 100%;
    display: flex;
    overflow: hidden;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
}

.swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-button.swiper-button-next, 
.swiper-button.swiper-button-prev {
    color: #ffffff; 
    width: 10px;
    height: 10px;
    padding: 0 10px;
}

.swiper-pagination .swiper-pagination-bullet {
    background-color: rgb(255, 255, 255) ; /* Make bullets black */
    width: 10px ;
    height: 5px ;
    border-radius: 0;
}
.swiper-pagination .swiper-pagination-bullet-active {
    height: 10px;
    transform: scale(1.2) !important; /* Enlarge the active bullet slightly */
    transition: transform 0.3s, background-color 0.3s !important; /* Smooth transition effect */
}

@media screen and (max-width:425px){
    .nav-text {
        font-size: 35px;
    }
    .nav-bar.scrolled {
        .nav-text{
            font-size: 35px;
            display: none;
        }
    }
}

@media screen and (max-width:375px){
    .nav-text {
        font-size: 25px;
    }
    .nav-bar.scrolled {
        .nav-text{
            font-size: 25px;
            display: none;
        }
    }
}