@font-face {
    font-family: bigone;
    src: url(Kihim-Regular.otf);
}
@font-face {
    font-family: toptext;
    src: url(MiranoExtendedFreebie-Light.ttf);
}

@font-face {
    font-family: regular;
    src: url(Khand-Regular.otf);
}

@font-face {
    font-family: rbold;
    src: url(Khand-Medium.otf);
}

body{
    background-color: rgb(92, 148, 68);
}

.big-container{
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

h1{
    font-family: bigone;
    color: rgb(92, 148, 68);
    text-shadow: 5px 0 #fff, -5px 0 #fff, 0 5px #fff, 0 -5px #fff,
               4px 4px #fff, -4px -4px #fff, 4px -4px #fff, -4px 4px #fff;
    font-size: 100px;
    text-align: center;
}

h2{
    font-size: 50px;
    font-family: bigone;
    color: rgb(83, 132, 61);
    text-shadow: 2px 0 #fff, -2px 0 #fff, 0 2px #fff, 0 -2px #fff,
             1px 1px #fff, -1px -1px #fff, 1px -1px #fff, -1px 1px #fff;

}

.conditions{
    display: flex;
    justify-content: space-between;
}

.condition{
    font-family: rbold;
    color: #fff;
    font-size: 25px;
}

.background{
    background-image: url(background.gif);
    background-size: cover;
    filter: blur(5px);
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
}

#himself{
    zoom: 1.5;
    max-height: 80vh;
    z-index: 1;
    width: auto;
}

.topbar{
    margin-top: -5px;
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.icon{
    width: 28px;
    height: 28px;
}

.icon:hover{
    transform: scale(1.1);
    filter: brightness(1.5);
}

.top-text{
    width: 92%px;
    display: flex;
    justify-content: space-evenly;
    gap: 100px;
    font-size: 20px;
    font-family: rbold;
    margin-left: 40px;
    text-decoration: none;
    margin-bottom: 10px;
}

.switch{
    color: black;
    text-decoration: none;
}

.switch:hover{
    color: #fff;
    text-decoration: underline;
}

.socials{
    margin-bottom: 5px;
    width: 8%;
    display: flex;
    justify-content: space-between;
    z-index: 20;
}

#twt{
    margin-right: 3px;
}

.comms{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 900px;
}

.info{
    margin-right: 150px;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

footer{
    font-family: rbold;
    color: black;
    display: flex;
    justify-content: center;
    text-align: center;
    margin-top: 10px;
}

button{
    font-size: 25px;
    font-family: rbold;
    background-color: rgb(92, 148, 68);
    color: white;
    border-color: white;
    border-radius: 10px;
    width: 300px;
    cursor: pointer;
}

.bcontainer{
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.carousel-wrap {
    width: 100%;
    max-width: 1000px;
    margin: 1rem auto;
}
.carousel-track-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4/1;
}
.carousel-track {
    display: flex;
    transition: transform 0.4s ease;
    height: 100%;
}
.carousel-slide {
    min-width: 25%;
    padding: 0 10px;
    height: 100%;
    box-sizing: border-box;
    flex-direction: column;
}
.carousel-slide img {
    width: 100%;
    height: 90%;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.carousel-slide .image-label{
    height: 10%;
    background: rgb(92, 148, 68);
    color: #fff;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-family: rbold;
    font-size: 15px;
    margin-top: -5px;
    border-radius: 0 0 10px 10px;
    text-decoration: none;
}

.carousel-slide .image-label:hover{
    background-color: #fff;
    color: rgb(92, 148, 68);
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.85);
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    cursor: pointer;
    font-size: 18px;
    z-index: 2;
}

.arrow:hover { background: #fff; }

.arrow-left { left: 10px; }

.arrow-right { right: 10px; }

.dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background:  #fff;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: rgb(108, 183, 76);
}

.switch-info {
    margin-left: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.switch-info-selected, button:hover{
    background-color: white;
    color: rgb(92, 148, 68);
    border: 2px solid #fff;
}

.hide-info{
    display: none;
}

#bprints{
    margin-top: 35px;
}

@media (max-width: 720px) {

    #himself{
        display: none;
    }

    .top-text{
        font-size: 18px;
        gap: 50px;
        margin-left: 0px;
    }

    .socials{
        justify-content: end;
    }
    
    .button{
        width: 20px;
    }
    
    .comms{
        width: 400px;
        justify-content: center;
    }

    h1{
        font-size: 50px;
        text-shadow: 2px 0 #fff, -2px 0 #fff, 0 2px #fff, 0 -2px #fff,
             1px 1px #fff, -1px -1px #fff, 1px -1px #fff, -1px 1px #fff;
    }

    h2{
        font-size: 30px;
    }

    .carousel-slide{
        padding: 0 1px;
    }

    .carousel-slide .image-label{
        font-size: 13px;
    }

    .condition{
        font-size: 18px;
        margin-left: 10px;
    }

    .carousel-track-container {
        aspect-ratio: 2/1;
    }

    button{
        font-size: 18px;
        width: 150px;
    }

    .big-container{
        height: 1150px;
    }

    .carousel-wrap{
        margin: 0.5rem auto;
        max-height: none;
        width: 95%;
    }

    .bcomms button{
        margin-left: 20px;
    }

    .carousel-slide .image-label{
        height: 21%;
    }

    .carousel-slide img {
        height: 79%;
    }

    .carousel-slide{
        min-width: 33.33%;
    }

    .switch-info{
        display: none;
    }

    .prints.hide-info, .comms.hide-info{
        display: block !important;
    }

    .info {
        margin-right: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 30px;
    }
}