/* 

|| THEME ||

black: #000000
light black: #151515
light orange: #f8a145
orange: #f07900
dark orange: #d35100 

*/

/* GLOBAL */

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.row{
    display: flex;
    flex-direction: row;
}
.column{
    display: flex;
    flex-direction: column;
}
/* MAIN CONTAINER */

.container{
    width: 100%;
    overflow: hidden;
}


@keyframes linksHoverAnimation{
    from {
        opacity: 0;
        bottom: -12.5px;
    }
    to{
        opacity: 1;
        bottom: -40px;
    }
}


/* IMAGES SLIDER CONTAINER */
.images-slider{
    justify-content: center;
    overflow: hidden;
}
.images{
    width: 100vw;
    height: auto;
    max-height: 100vh;
    justify-content: flex-start;

    -ms-overflow-style: none; /* for Internet Explorer, Edge */
    scrollbar-width: none; /* for Firefox */
    overflow: hidden;
    overflow-x: scroll; 

    -moz-user-select: none;    /* TO DISABLE IMAGE SELECT */
    -webkit-user-select: none;
    user-select: none;

    -webkit-overflow-scrolling: touch;    /* Enable Safari touch scrolling physics */
}
.images::-webkit-scrollbar {
    display: none; /* for Chrome, Safari, and Opera */
}
.image-container{
    position: relative;
    min-width: 100vw;
    height: 100%;

    display: flex;
    /* justify-content: center;
    align-items: center; */
    overflow: hidden;
}
.image-container img{
    width: 100vw;
    min-width: 100vw;
    height: 100%;
    margin-top: 0px;
}
.images-overlay{
    display: inline-block;
    position: relative;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    min-width: 100vw;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
}
@keyframes sliderInfoAnimation{
    from{
        bottom: -12.5rem;
        opacity: 0;
    }
    to{
        bottom: 0;
        opacity: 1;
    }
}
@keyframes sliderInfoBorderAnimation{
    from{
        left: -7.5rem;
        opacity: 0;
    }
    to{
        left: -1rem;
        opacity: 1;
    }
}
.slider-info{
    position: relative;
    color: #fff;
    margin-left: 95px;
    justify-content: center;
    align-items: flex-start;
    max-width: 75ch;
    padding-left: 2rem;
    padding-bottom: .73rem;
    animation-name: sliderInfoAnimation;
    animation-duration: 1.8s;
    animation-timing-function: ease;
}
.slider-info-border{
    position: absolute;
    width: 8px;
    height: 100%;
    background-color: #bb1c2a;
    top: 0;
    left: -1rem;
    animation-name: sliderInfoBorderAnimation;
    animation-duration: 1.3s;
    animation-timing-function: ease;
}
.slider-info h1{
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 48px;
    font-weight: 700;
    padding-bottom: 1rem;
}
.slider-info p{
    line-height: 1.5;
    letter-spacing: 1px;
    font-size: 18px;
    font-weight: 400;
    text-shadow: -0.5px 0.5px 3px #00000042;
    padding-bottom: 1rem;
}
.slider-info-button{
    width: auto;
    font-size: 17px;
    font-weight: 300;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    padding: .75rem 1.25rem;
    letter-spacing: 1.5px;
    background-color: #000000;
    transition: all .5s ease;
}
.slider-info-button:hover{
    color: #F0502B;
    background-color: #ffffff;
}

/* USE .zoom-animation CLASS FOR SLOW IMAGE ZOOM IN ANIMATION */
@keyframes slowZoom{
    0%{
        transform: scale(1);
    }
    100%{
        transform: scale(1.09);
    }
}

.zoom-animation{
    animation-name: slowZoom;
    animation-duration: 5s;
    animation-fill-mode: forwards;
}

/* SLIDER FOOTER */
.images-slider-footer{
    position: relative;
    top: 85px;
}

 /* slider footer buttons animations */
@keyframes leftToRightButtonAnimation{
    0%{
        opacity: 0;
        left: -10rem;
    }
    100%{
        opacity: 1;
        left: 0;
    }
}
#leftToRight{
    position: relative;
    animation-name: leftToRightButtonAnimation;
    animation-duration: 1.5s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
}

@keyframes topToBottomButtonAnimation{
    0%{
        opacity: 0;
        top: -5rem;
    }
    100%{
        opacity: 1;
        top: 0;
    }
}
#topToBottom{
    opacity: 0;
    position: relative;
    animation-name: topToBottomButtonAnimation;
    animation-duration: 1.5s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
}

/* SLIDER BUTTONS */
.slider-buttons{
    position: absolute;
    left: 47.45%;
    width: 100px;
    justify-content: center;
    align-items: center;
    justify-self: center;
}
.slider-buttons i{
    opacity: .4;
    color: white;
    font-size: 13px;
    padding: .2rem;
}
.slider-buttons a:nth-child(1)  i{ /* selecting first slide button */
    opacity: 1;
}




@media (max-width: 767px) {
    /* HEADER */
    .header{
        max-height: 60px;
    }
    .images-slider {
        overflow: hidden;
        margin: 0;
    }
    #home{
        /* margin-top: 80px; */
        height: 450px;
    }
    .image-container img,
    .image-container video { /* Apply for images or videos */
        min-width: 100vw;
        height: 30vh; /* Video height set to 30% of viewport height */
        overflow: hidden;
        position: relative; /* Necessary for overlay positioning */
    }
    .image-container img,
    .image-container video { /* Apply for images or videos */
        width: 100vw;
        height: 30%; /* Full height of container */
        object-fit: cover;
        margin: 0;
    }
    .slider-info {
        max-width: 50%;
        color: #fff;
        z-index: 2; /* Ensure text stays above video */
        margin-top: -450px;
        margin-left: -30px;
    }
    .slider-info h1 {
        font-size: 14px;
        margin-left: -20px;
    }
    .slider-info-button{
        margin-left: -20px;
    }
    .slider-info p {
        font-size: 10px;
        margin-right: 40px;
        margin-top: -5px;
    }

    /* IMAGES SLIDER CONTAINER */
    .images{
        height: 100vh;
        scroll-snap-type: x mandatory;
    }
    .image-container{
        scroll-snap-align: center;
    }

    /* SLIDER INFO */
    @keyframes sliderInfoBorderAnimation{
        from{
            left: -7.5rem;
            opacity: 0;
        }
        to{
            left: 0.2rem;
            opacity: 1;
        }
    }
    .slider-info{
        margin-left: 20px;
        max-width: 38ch;
        padding-bottom: .53rem;
    }
    .slider-info-border{
        width: 5px;
        left: 0.2rem;
        top: -.2rem;
    }
    .slider-info h1{
        font-size: 18px;
        padding-bottom: .8rem;
    }
    .desktop-content{
        font-size: 12px;
        font-weight: 300;
        padding-bottom: .8rem;
    }
    .slider-info-button{
        font-size: 10px;
        font-weight: 300;
        padding: .5rem .6rem;
    }

    /* SLIDER BUTTONS */
    .slider-buttons{
        position: absolute;
        left: 40%;
        width: 100px;
        justify-content: center;
        align-items: center;
        justify-self: center;
    }
}



@media (max-width: 1200px) and (min-width: 768px) {

    .header{
        max-height: 60px;
    }
    .images-slider {
        overflow: hidden;
        margin: 0;
    }
    #home{
        height: 400px;
    }
    .image-container img,
    .image-container video { /* Apply for images or videos */
        min-width: 100vw;
        height: 30vh; /* Video height set to 30% of viewport height */
        overflow: hidden;
        position: relative; /* Necessary for overlay positioning */
    }
    .image-container img,
    .image-container video { /* Apply for images or videos */
        width: 100vw;
        height: 30%; /* Full height of container */
        object-fit: cover;
        margin: 0;
    }
    .slider-info {
        max-width: 90%;
        color: #fff;
        z-index: 2; /* Ensure text stays above video */
        margin-top: -550px;
    }
    .slider-info h1 {
        font-size: 16px;
    }

    .slider-info p {
        font-size: 12px;
        margin: 0.5rem 0;
    }


    /* SLIDER INFO */
    @keyframes sliderInfoBorderAnimation{
        from{
            left: -7.5rem;
            opacity: 0;
        }
        to{
            left: -.2rem;
            opacity: 1;
        }
    }
    .slider-info{
        margin-left: 35px;
        max-width: 60ch;
    }
    .slider-info-border{
        width: 5px;
        top: -.1rem;
        left: -.2rem;
    }
    .slider-info h1{
        font-size: 26px;
        padding-bottom: .6rem;
    }
    .slider-info p{
        font-size: 12px;
        font-weight: 300;
        padding-bottom: .6rem;
    }
    .slider-info-button{
        font-size: 10px;
        font-weight: 200;
        padding: .5rem .8rem;
    }

    /* SLIDER BUTTONS */
    .slider-buttons{
        left: 45%;
    }

    /* IMAGES SLIDER CONTAINER */
    .images{
        scroll-snap-type: x mandatory;
    }
    .image-container{
        scroll-snap-align: center;
    }

}



/* Hide mobile content by default */
.mobile-content {
    display: none; /* Hide mobile content by default */
}

/* Media query for mobile devices */
@media (max-width: 768px) {
    .desktop-content {
        display: none; /* Hide desktop content on mobile */
    }
    .mobile-content {
        margin-left: -20px;
        display: block; /* Show mobile content */
    }
}



@media (max-width: 1200px) and (min-width: 768px) {

    /* Header */
    .header {
        max-height: 60px;
    }
    .images-slider {
        overflow: hidden;
        margin: 0;
    }
    #home {
        height: 600px;
    }
    
    /* Image Container */
    .image-container img,
    .image-container video {
        width: 100vw;
        min-width: 100vw;
        height: 100%;
        margin-top: 0px;
        object-fit: cover;
        margin: 0;
        position: relative; /* Overlay positioning */
    }
    /* Slider Information */
    .slider-info {
        max-width: 80%;
        color: #fff;
        z-index: 2;
        margin-top: 20px;
        margin-left: 20px; /* Slight margin for spacing */
        padding: 0 10px;
    }
    .slider-info h1 {
        font-size: 22px;
    }
    .slider-info p {
        font-size: 14px;
        margin: 0.5rem 0;
    }
    .slider-info-button {
        font-size: 12px;
        font-weight: 300;
        padding: .6rem .8rem;
    }
    
    
    /* Slider Info Animation */
    @keyframes sliderInfoBorderAnimation {
        from {
            left: -7.5rem;
            opacity: 0;
        }
        to {
            left: -.2rem;
            opacity: 1;
        }
    }
    .slider-info {
        margin-left: 35px;
        max-width: 60ch;
    }
    .slider-info-border {
        width: 5px;
        top: -.1rem;
        left: -.2rem;
    }
    .slider-info h1 {
        font-size: 22px;
        padding-bottom: .6rem;
    }
    .slider-info p {
        font-size: 14px;
        font-weight: 300;
        padding-bottom: .6rem;
    }
    .slider-info-button {
        font-size: 12px;
        font-weight: 200;
        padding: .5rem .8rem;
    }
    
    /* Slider Buttons */
    .slider-buttons {
        left: 45%;
    }
    
    /* Images Slider Container */
    .images {
        scroll-snap-type: x mandatory;
    }
    .image-container {
        scroll-snap-align: center;
    }
}














