@font-face {
    font-family: 'DosisExtraLight'; 
    src: url('/assets/fonts/static/Dosis-ExtraLight.ttf') format('opentype'); 
    font-weight: normal; 
    font-style: normal;
}

body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    background-color: #2b2b2b;
    font-family: 'DosisExtraLight', sans-serif;
    scroll-behavior: smooth;
}

.slideshow-container {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: fadeZoom 30s infinite, slideShow 30s infinite;
}

.slide1 {
    background-image: url('/assets/img/18.webp');
    animation-delay: 0s;
}

.slide2 {
    background-image: url('/assets/img/23.webp');
    animation-delay: 6s;
}

.slide3 {
    background-image: url('/assets/img/14.webp');
    animation-delay: 12s;
}

.slide4 {
    background-image: url('/assets/img/31.webp');
    animation-delay: 18s;
}

.slide5 {
    background-image: url('/assets/img/26.webp');
    animation-delay: 24s;
}

@keyframes slideShow {
    0% { opacity: 0; }
    8% { opacity: 1; }
    20% { opacity: 1; }
    28% { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes fadeZoom {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.aboutVilin{
    background-image: url(/assets/img/saunaBack70.webp);
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 20px;
    margin-bottom: 20px;
}

.aboutVilin-container{
    display: flex;
    flex-direction: column;
    width: 60%;
    margin: 0 auto;
    color: white;
    text-align: center;
}

.aboutVilin-container h1{
    margin: 15% 0 2% 0;
    font-size: 3vw;
}

.aboutVilin-container p{
    margin: 0 0 10% 0;
    font-size: 1.4vw;
}

.aboutVilin-cta-buttons{
    display: flex;
    gap: 110px !important;
    margin-bottom: 2%;
}

.btn {
    position: relative;
    background: none;
    border: 2px solid white;
    color: white;
    font-size: 1.2rem;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    transition: all 0.3s;
    font-family: 'DosisExtraLight', sans-serif;
  }
  .half-description a{
    text-decoration: none;
    color: white;
    display: flex;
    justify-content: center;
  }
  .btn::before {
    content: "";
    height: 0%;
    width: 0%;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    z-index: -1;
    position: absolute;
    background-color: #f1c40f;
    transition: all 0.3s;
  }
  .btn:hover {
    border: 2px solid #c79f00;;
    color: white;
    cursor: pointer;
    scale: 1.2;
  }
  .btn:hover::before {
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 0.3rem;
  }



.vilin-lounge{
    height: 50vh; /* Sekcija zauzima 50% visine ekrana */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #2b2b2b;
    padding: 0 5%;
}

.vilin-lounge-container{
    display: flex;
    width: 100%;
    height: 100%;
}

.half-photo{
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.half-photo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.half-description{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    background: #242424;
    text-align: left;
}

.half-description button{
    width: 50%;
    margin: 20px auto 0 auto;
}

.half-description h3{
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.half-description p{
    font-size: 1.1rem;
    color: #d3d3d3;
    line-height: 1.6;
}


@media (max-width: 600px) {
    /*About Vilin*/
    .aboutVilin{
        background-image: url(/assets/img/back2.webp);
        height: 100%;
    }
    
    .aboutVilin-container{
        width: 90%;
    }
    
    .aboutVilin-container h1{
        margin: 15% 0 10% 0;
        font-size: 8vw;
    }
    
    .aboutVilin-container p{
        font-size: 4vw;
        text-align: justify;
    }
    
    .aboutVilin-cta-buttons{
        display: flex;
        justify-content: space-between;
        gap: 20px !important;
        margin-bottom: 8%;
    }

    .aboutVilin-cta-buttons .btn{
        font-size: 14px;
    }

    /*About Vilin*/
    /*Vilin Lounge*/

    .vilin-lounge{
        height: auto; /* Sekcija zauzima 50% visine ekrana */
        width: 95%;
        margin: 0 auto 20px auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: #2b2b2b;
        padding: 0;
    }
    
    .vilin-lounge-container{
        display: flex;
        flex-direction: column;
        margin: 0 auto;
        width: 100%;
        height: 100%;
    }
    
    .half-photo{
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
    
    .half-photo img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .half-description{
        width: 95%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 10px;
        background: #242424;
        text-align: left;
        margin: 0 auto;
    }
    
    .half-description button{
        width: 50%;
        margin: 20px auto 0 auto;
    }
    
    .half-description h3{
        font-size: 1.5rem;
        color: #ffffff;
        margin: 0px;
    }
    
    .half-description p{
        font-size: 1.1rem;
        color: #d3d3d3;
        line-height: 1.6;
        margin: 5px 0;
    }

    .vilin-lounge .btn{
        width: 80%;
        margin-bottom: 20px;
        font-size: 16px;
    }

    /*Vilin Lounge*/

    .btn {
        position: relative;
        background: none;
        border: 2px solid white;
        color: white;
        font-size: 1.2rem;
        padding: 1rem 2rem;
        border-radius: 0.5rem;
        transition: all 0.3s;
        font-family: 'DosisExtraLight', sans-serif;
      }
      .btn::before {
        content: "";
        height: 0%;
        width: 0%;
        border-radius: 50%;
        top: 50%;
        left: 50%;
        z-index: -1;
        position: absolute;
        background-color: transparent;
        transition: all 0.3s;
      }
      .btn:hover {
        border: 2px solid white;
        color: white;
        cursor: pointer;
        scale: 1;
      }

}

@media (min-width: 601px) and (max-width: 1000px) {
    /*About vilin*/
    .aboutVilin{
        background-image: url(/assets/img/back2.webp);
        height: 100%;
    }
    
    .aboutVilin-container{
        width: 80%;
    }
    
    .aboutVilin-container h1{
        margin: 15% 0 10% 0;
        font-size: 6vw;
    }
    
    .aboutVilin-container p{
        font-size: 3vw;
        text-align: justify;
    }
    
    .aboutVilin-cta-buttons{
        display: flex;
        justify-content: space-between;
        gap: 50px !important;
        margin-bottom: 8%;
    }

    .aboutVilin-cta-buttons .btn{
        font-size: 16px;
    }

    /*About Vilin*/
    /*Vilin Lounge*/

    .vilin-lounge{
        height: auto; /* Sekcija zauzima 50% visine ekrana */
        width: 70%;
        margin: 0 auto 20px auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: #2b2b2b;
        padding: 0;
    }
    
    .vilin-lounge-container{
        display: flex;
        flex-direction: column;
        margin: 0 auto;
        width: 100%;
        height: 100%;
    }
    
    .half-photo{
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
    
    .half-photo img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .half-description{
        width: 95%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 10px;
        background: #242424;
        text-align: left;
        margin: 0 auto;
    }
    
    .half-description button{
        width: 50%;
        margin: 20px auto 0 auto;
    }
    
    .half-description h3{
        font-size: 1.5rem;
        color: #ffffff;
        margin: 0px;
    }
    
    .half-description p{
        font-size: 1.1rem;
        color: #d3d3d3;
        line-height: 1.6;
        margin: 5px 0;
    }

    .vilin-lounge .btn{
        width: 80%;
        margin-bottom: 20px;
        font-size: 16px;
    }

    /*Vilin Lounge*/

    .btn {
        position: relative;
        background: none;
        border: 2px solid white;
        color: white;
        font-size: 1.2rem;
        padding: 1rem 2rem;
        border-radius: 0.5rem;
        transition: all 0.3s;
        font-family: 'DosisExtraLight', sans-serif;
      }
      .btn::before {
        content: "";
        height: 0%;
        width: 0%;
        border-radius: 50%;
        top: 50%;
        left: 50%;
        z-index: -1;
        position: absolute;
        background-color: transparent;
        transition: all 0.3s;
      }
      .btn:hover {
        border: 2px solid white;
        color: white;
        cursor: pointer;
        scale: 1;
      }

}

@media (min-width: 1001px) and (max-width: 1500px) {
    /*About Vilin*/
    .aboutVilin{
        background-image: url(/assets/img/back2.webp);
        height: 100%;
    }
    
    .aboutVilin-container{
        width: 70%;
    }
    
    .aboutVilin-container h1{
        font-size: 5vw;
    }
    
    .aboutVilin-container p{
        font-size: 2vw;
    }

    /*About Vilin*/
    /*Vilin Lounge*/

    .half-description{
        padding: 0 15px;
    }

    .half-description h3{
        font-size: 1.7rem;
    }

    .half-description .btn{
        width: 60%;
        font-size: 16px;
        margin-top: 0;
    }

    /*Vilin Lounge*/

    .btn {
        position: relative;
        background: none;
        border: 2px solid white;
        color: white;
        font-size: 1.2rem;
        padding: 1rem 2rem;
        border-radius: 0.5rem;
        transition: all 0.3s;
        font-family: 'DosisExtraLight', sans-serif;
      }
      .btn::before {
        content: "";
        height: 0%;
        width: 0%;
        border-radius: 50%;
        top: 50%;
        left: 50%;
        z-index: -1;
        position: absolute;
        background-color: transparent;
        transition: all 0.3s;
      }
      .btn:hover {
        border: 2px solid white;
        color: white;
        cursor: pointer;
        scale: 1;
      }

}