/*LIBRE BASKERVILLE FONT*/
@font-face {
    font-family: baskervilleBold;
    src: url(../fonts/LibreBaskerville/LibreBaskerville-Bold.ttf);
}

/*JOST FONT*/
@font-face {
    font-family: jostRegular;
    src: url(../fonts/Jost/Jost-Regular.ttf);
}

.header{
    height: 599px;
}

.header-text-container{
    background: linear-gradient(-57deg, #1E3A8A, #1F1D54);
    background-size: 200% 200%;
    animation: gradient 15s ease infinite;
    display: flex;
}

.header-text{
    margin: auto 0;
    padding-left: 40px;
}

.header-title{
    font-family: baskervilleBold;
    text-shadow: 1px 1px 2px #000;
    font-size: clamp(35px, 4.5vw, 60px);
    color: #fff;
}

.header-subtitle{
    font-family: jostRegular;
    font-size: clamp(14px, 2vw, 20px);
    text-shadow: 1px 1px 2px #000;
    color: #fff;
}

.header-image-container{
    width: clamp(300px, 37vw, 420px);
    display: flex;
    margin-left: clamp(-70px, -5vw, -20px);
}

.header-image{
    margin: auto 0;
    overflow: hidden;
}

.header-image ul {
    display: flex;
    padding: 0;
    width: 1300%;
    margin: 0;
    animation: slide 65s infinite alternate ease-in-out;
}

.header-image ul li {
    width: 100%;
    list-style: none;
}

.header-image-wrapper {
    position: relative; 
    display: inline-block; 
}

.header-image-wrapper img {
    display: block; 
    width: clamp(300px, 37vw, 420px);
    height: clamp(390px, 37vw, 520px);
    object-fit: fill;
}

.header-image-text {
    position: absolute; 
    bottom: 10px; 
    left: 50%; 
    transform: translateX(-50%); 
    color: white; 
    background-color: rgba(0, 0, 0, 0.5); 
    padding: 5px 10px; 
    border-radius: 5px; 
    font-family: jostRegular; 
    font-size: clamp(12px, 2vw, 16px);
    text-align: center; 
}


@keyframes slide {
    0% {margin-left: 0;}
    7% {margin-left: 0;}
    8% {margin-left: -100%;}
    15% {margin-left: -100%;}
    16% {margin-left: -200%;}
    23% {margin-left: -200%;}
    24% {margin-left: -300%;}
    31% {margin-left: -300%;}
    32% {margin-left: -400%;}
    39% {margin-left: -400%;}
    40% {margin-left: -500%;}
    47% {margin-left: -500%;}
    48% {margin-left: -600%;}
    55% {margin-left: -600%;}
    56% {margin-left: -700%;}
    63% {margin-left: -700%;}
    64% {margin-left: -800%;}
    71% {margin-left: -800%;}
    72% {margin-left: -900%;}
    79% {margin-left: -900%;}
    80% {margin-left: -1000%;}
    87% {margin-left: -1000%;}
    88% {margin-left: -1100%;}
    95% {margin-left: -1100%;}
    96% {margin-left: -1200%;}
    100% {margin-left: -1200%;}
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@media (max-width: 768px){
    .header{
        display: block!important;
    }
    
    .header-text-container{
        height: 55%;
    }

    .header-text{
        text-align: center;
        padding: 30px 0 30px 0;
        margin: auto;
    }

    .header-image-container{
        margin: -50px auto 0 auto;
    }
}