/* Custom Fonts */
@font-face {
    font-family: "AGG";
    src: url(./fonts/AGG/ITC\ Avant\ Garde\ Gothic\ Pro-Book.otf);
}

@font-face {
    font-family: "AON";
    src: url(/fonts/AON/AON.otf);
}

/* Root Variables */
:root {
    --bg-color-light: #fffff9;
    --bg-color-dark: #131313;
    --text-color-light: black;
    --text-color-dark: white;
    /* --main-color: #bd44fa; */
    --main-color: #e47239;
    --brand-color: #0BCE83;

}
.slideshow-container {
    position: relative;
    width: 100%;
    /* max-width: 800px; */
    margin: auto;
    max-width: 1200px;
    height: auto;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); */
}

.slideshow {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 50px;
    margin-right: 50px;
    max-width: 1200px;
}

.slide {
    display: none;
}

.slide1 img {
    width: 85%;
    height: auto;
    display: block; 
    margin: 0 auto; 

}
.slide2 img {
    width: 70%;
    height: auto;
    display: block; 
    margin: 0 auto;
    
}


.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--brand-color);
    padding: 12px;
    cursor: pointer;
    font-size: 40px;
    z-index: 10;
}

.prev {
    left: 0px; 
}

.next {
    right: 0px; 
}

.fade {
    animation: fadeEffect 1s ease;
}

@keyframes fadeEffect {
    from {opacity: .4}
    to {opacity: 1}
}

.buttons-container {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 30px;
}

.slideshow-button {
    font-family:"AGG";
    cursor: pointer;
    padding: 8px 10px;
    margin: 0 7px;
    background-color: #ffffff;
    border:1.5px var(--main-color);
    border-radius: 5px;
    font-size: 14px;
}

.slideshow-button.active {
    border:1.5px;
    border-color: var(--main-color);
    background-color: var(--brand-color);
    color: white;
    font-weight: 500;
}

@media screen and (min-width: 1800px) {
    .prev {
        left: -80px; 
    }
    
    .next {
        right: -80px; 
    }
    .slideshow-container {
        position: relative;
        width: 100%;
        /* max-width: 800px; */
        margin: auto;
        max-width: 1200px;
        height: auto;
        /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); */
    }
    
    .slideshow {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: 50px;
        margin-right: 50px;
        max-width: 1200px;
    
    }
}


@media (max-width: 800px){
    .prev {
        left: -20px; 
    }
    
    .next {
        right: -20px; 
    }
}
    
@media (max-width: 468px){
    .buttons-container {
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 20px;
    }
}