body{
    background-color: #2A2438;
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: 'Poppins', sans-serif;
    cursor: default;
}

.header{
    width: 100%;
    display: flex;
    position: fixed;
    background-color: #5C5470;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    z-index: 1;
}

.leftNav{
    width:10%;
    margin-left: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.leftNav a img{
    width: 55%;
}

.rightNav{
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
}

.rightNav .textNav{
    width: 100%;
    justify-content: center;
    position: relative;
}

.rightNav .textNav ul{
    align-items: center;
    justify-content: flex-end;
    position: relative;
    flex-grow: 1;
    display: flex;
}

.rightNav .textNav ul li{
    list-style: none;
    display: inline-flex;
    text-align: center;
    justify-content: center;
    margin: 0px 7.5px;
    padding: 2.5px;
    width: 12.5%;
    height: 100%;
    transition: all 0.3s ease;
}

.rightNav .textNav ul li:hover{
    cursor: pointer;
    background-color: #DBD8E3;
    border-radius: 5px;
    height: 200%;
    width: 12.5%;
    font-weight: bold;
}

.rightNav .textNav ul li:hover a{
    color: #2A2438;
}

.rightNav .textNav ul li a{
    color: #DBD8E3;
    text-decoration: none;
    font-size: 1em;
}

.rightNav .account a{
    color: #DBD8E3;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.rightNav .account a:hover{
    background-color: #DBD8E3;
    color: #2A2438;
    border-radius: 100%;
}

.menu-container{
    display: none;
}

.content{
    position: relative;
    z-index: 0;
    width: 100%;
}

.content-text{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 90%;
    position: absolute;
    text-align: center;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.content-text h1{
    color: #DBD8E3;
    margin: 0;
    font-size: 2.5em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.content-text h2{
    color: #DBD8E3;
    margin: 0;
    font-size: 1.75em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.content-background{
    position: relative;
    width: 100%;
    margin: 0;
}

.content-background img{
    width: 100%;
    height: auto;
    max-height: 40vh;
    object-fit: cover;
    border-radius: 0 0 15px 15px;
}

.content-blur{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(53, 47, 68, 0.45);
    filter: blur(5px);
    border-radius: 0 0 15px 15px;

}

.top-tier{
    padding-left: 25px;
    padding-right: 25px;
    margin: 0;
}

.top-tier h2{
    color: #DBD8E3;
    font-size: 1.75em;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.gallery-container{
    width: 100%;
    margin: 0;
    position: relative;
}

.gallery-images{
    display: flex;
    overflow: hidden;
}

.gallery-images img{
    width: 100%;
    display: none;
    opacity: 0;
    filter: drop-shadow(1px 1px 2px black);
    transition: opacity 0.3s ease;
}

.gallery-images img.active{
    display: block;
    opacity: 1;
}

.gallery-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
}

#prevBtn {
    background-color: rgba(219, 216, 227, 0.45);
    border: none;
    border-radius: 100%;
    cursor: pointer;
    color: #2A2438;
    padding: 0px;
    margin: 0;
    display: flex;
}

#nextBtn {
    background-color: rgba(219, 216, 227, 0.45);
    border: none;
    border-radius: 100%;
    cursor: pointer;
    color: #2A2438;
    padding: 0px;
    margin: 0;
    display: flex;
}

.material-symbols-outlined{
    align-self: center;
}

.gallery-dots {
    text-align: center;
    margin: 0;
    padding: 0;
    margin-top: 10px;
}

.gallery-dots .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #DBD8E3;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.gallery-dots .dot.active {
    background-color: #5C5470;
}

.featured{
    padding-left: 25px;
    padding-right: 25px;
    margin: 0;
}

.featured h2{
    color: #DBD8E3;
    font-size: 1.75em;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}


.slider-images{
    overflow-x: auto;
    white-space: nowrap;
}

.slider-images ul{
    width: 100%;
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    overflow-x: auto;
    white-space: nowrap;
    margin-bottom: 10px;
}

.slider-images ul li{
    margin: 0 5px;
    position: relative;
    flex: 0 0 auto;
    width: calc(20% - 10px);
    max-width: calc(20% - 10px);
    overflow: hidden;
    padding: 10px;
    box-sizing: border-box;
}

.slider-images ul li:hover .slider-info {
    transform: scale(1.1);
    transition: transform 0.3s ease;
    z-index: 100;
    overflow: visible;
    filter: drop-shadow(1px 1px 2px black);
}

.slider-images ul li:hover .slider-info p {
    font-weight: bold;
    transition: font-weight 0.3s ease;
}

.slider-info{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
    z-index: 100;
    height: auto;
    overflow: visible;
    word-wrap: break-word;
}

.slider-info img{
    width: 100%;
    transition: transform 0.3s ease;
    
}

.slider-info p {
    color: #DBD8E3;
    font-size: 1em;
    text-align: center;
    max-width: 100%;
    margin: 5px 0 0 0;
    transition: font-weight 0.3s ease;
}

.footer{
    text-align: center;
    align-items: center;
    justify-content: center;
    background-color: #5C5470;
    width: 100%;
    margin: 0;
    padding: 5px 0;
}

.footer h4{
    color: #DBD8E3;
    margin: 5px 0;
    font-size: 1em;
    font-weight: normal;
}

.footer ul{
    margin: 0;
    padding: 0;
}

.footer ul li{
    display: inline-flex;
    width: 5%;
    margin: 0 5px;
}

.footer ul li a{
    display: flex;
    justify-content: center;
    width: 100%;
}

.footer ul li a img{
    width: 50%;
    align-self: center;
    color: #DBD8E3;
}

@media only screen and (max-width: 480px) {
    .leftNav{
        margin-left: 12.5px;
    }
    
    .rightNav{
        margin-right: 12.5px;
        justify-content: flex-end;
        align-items: flex-start;
    }
    
    .rightNav .textNav{
        display: none;
    }
    
    .rightNav .account{
        display: none;
    }

    .menu-container {
        display: block;
        cursor: pointer;
    }

    .burger-menu .material-symbols-outlined {
        font-size: 18px;
        color: #DBD8E3;
    }

    .dropdown-content {
        display: none;
        opacity: 0;
        transition: opacity 0.3s ease; 
    }

    .dropdown-content.show {
        display: block;
        opacity: 1;
        position: absolute;
        background-color: #5C5470;
        z-index: 1;
        text-align: center;
        border-radius: 5px;
        padding: 0;
        right: 0;
    }

    .dropdown-content a {
        display: block;
        padding: 5px;
        text-decoration: none;
        color: #DBD8E3;
        font-size: 0.5em;
        width: auto;
        transition: all 0.3s ease;
    }

    .dropdown-content a:hover {
        background-color: #DBD8E3;
        color: #2A2438;
        font-weight: bold;
    }
    
    .content-text h1{
        font-size: 2em;
    }
    
    .content-text h2{
        font-size: 1em;
    }
    
    .content-background img{
        max-height: 25vh;
    }
    
    .top-tier{
        padding-left: 12.5px;
        padding-right: 12.5px;
    }
    
    .top-tier h2{
        font-size: 1em;
    }
    
    #prevBtn .material-symbols-outlined {
        font-size: 12px;
    }

    #nextBtn .material-symbols-outlined {
        font-size: 12px;
    }
    
    .gallery-dots {
        margin-top: 5px;
    }
    
    .gallery-dots .dot {
        width: 5px;
        height: 5px;
    }

    .featured{
        padding-left: 12.5px;
        padding-right: 12.5px;
    }
    
    .featured h2{
        font-size: 1em;
    }
    
    
    .slider-images ul{
        margin-bottom: 5px;
    }
    
    .slider-images ul li{
        margin: 0 2.5px;
        width: calc(20% - 5px);
        max-width: calc(20% - 5px);
        padding: 5px;
    }
  
    .slider-info p {
        font-size: 0.5em;
        margin: 2.5px 0 0 0;
    }
    
    .footer{
        padding: 2.5px 0;
    }
    
    .footer h4{
        margin: 2.5px 0;
        font-size: 0.5em;
    }
    
    .footer ul li{
        width: 7.5%;
        margin: 0 2.5px;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .leftNav{
        margin-left: 17.5px;
    }
    
    
    .rightNav{
        margin-right: 17.5px;
    }
    
    .rightNav .textNav ul li{
        margin: 0px 5px;
        padding: 1.25px;
        width: 12.5%;
    }
    
    
    .rightNav .textNav ul li a{
        font-size: 0.875em;
    }
    
    .content-text h1{
        font-size: 2.25em;
    }
    
    .content-text h2{
        font-size: 1.375em;
    }
    
    
    .content-background img{
        max-height: 25vh;
    }
    
    .top-tier{
        padding-left: 17.5px;
        padding-right: 17.5px;
    }
    
    .top-tier h2{
        font-size: 1.375em;
    }
    
    #prevBtn .material-symbols-outlined {
        font-size: 18px;
    }

    #nextBtn .material-symbols-outlined {
        font-size: 18px;
    }
    
    .gallery-dots {
        margin-top: 7.5px;
    }
    
    .gallery-dots .dot {
        width: 7.5px;
        height: 7.5px;
    }

    .featured{
        padding-left: 17.5px;
        padding-right: 17.5px;
    }
    
    .featured h2{
        font-size: 1.375em;
    }
    
    .slider-images ul{
        margin-bottom: 7.5px;
    }
    
    .slider-images ul li{
        margin: 0 3.75px;
        width: calc(20% - 7.5px);
        max-width: calc(20% - 7.5px);
        padding: 7.5px;
    }

    .slider-info p {
        font-size: 0.75em;
        margin: 3.75px 0 0 0;
    }
    
    .footer{
        padding: 3.75px 0;
    }
    
    .footer h4{
        margin: 3.75px 0;
        font-size: 0.75em;
    }
    
    .footer ul li{
        width: 8.75%;
        margin: 0 3.75px;
    }
    
    .footer ul li a{
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .footer ul li a img{
        width: 50%;
        align-self: center;
    }
    
}