
:root {
    --main-bg-color: #FFFFFF; /* White */
    --main-text-color: #333333; /* Dark Gray */
    --secondary-bg-color: #F5F5F5; /* Light Gray */
    --accent-teal: #008080; /* Teal */
    --accent-blue: #87CEEB; /* Soft Blue */
    --accent-beige: #F5DEB3; /* Warm Beige */
    --highlight-green: #98FB98; /* Soft Green */
    --highlight-coral: #FF7F50; /* Coral */
    --secondary-bg-color-70: rgb(245, 245, 245, 0.7); /* Light Gray */

}


#titlebox {
    margin-bottom: 0;
    padding: 2rem 2rem 2rem 3rem !important;
}

#titlebox h2 {
    color:var(--main-text-color);
    font-family: Montserrat;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 0.5rem;
}


section {
    width: 90%;
}

#bemutatkozas {
    padding-top: 1rem;

}

#bemutatkozas small {
    font-family: 'Montserrat', sans-serif;
    color: var(--main-text-color);
    font-variant: small-caps;
    font-weight: 600;
}

#bemutatkozas p {
    font-family: 'Montserrat', sans-serif;
    color: var(--main-text-color);
    margin: 0.5rem 0;
    text-align: justify;
}



@media screen and (orientation:landscape) {
    #bemutatkozas small {
        font-size: 1.4rem;
    }
    
    #bemutatkozas p {
        font-size: 1.5rem;
    }


}



@media screen and (orientation:portrait) {
    #bemutatkozas small {
        font-size: 1.2rem;
    }
    
    #bemutatkozas p {
        font-size: 1.2rem;
    }

}





#felszereltseg {
    width: 100vw !important;
    background-color: var(--secondary-bg-color);
    display: flex;
    flex-direction: column;
    align-items: center;

}




#felszereltseg h1 {
    color: var(--main-text-color, #333);

    /* Main */
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    width: 90%;
}



.lenyilo {

    width: calc(90% - 2rem);
    border-radius: 1rem;
    background-color: var(--main-bg-color);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 1rem;
    margin-bottom: 2rem;
}



.felso {
    font-family: 'Montserrat', sans-serif;

    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    cursor: pointer;
}



.felso h2 {
    color: var(--main-text-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 0;
}


.felso img {
    height: 2rem;
}



.also li {
    color: var(--main-text-color);

/* Secondary */
font-family: Noto Sans;
font-size: 1.5rem;
font-style: normal;
font-weight: 600;
line-height: normal;
}


.nyil {
    transition: 0.3s ease-in;
}


.nyil.aktiv {
    transform: rotate(90deg);
    transition: 0.3s ease-in;
}


.also {
    max-height: 0;
    transition: 0.3s ease-in;
    overflow-y: hidden;
    margin: 0;

}

.also.aktiv {
    max-height: 200vh;
    transition: 0.3s ease-in;
}




#galeriacim {
    color: var(--main-text-color, #333);

    /* Main */
    font-family: Roboto;
    font-size: 3rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    width: 90%;
    margin-top: 0;
}



#galeria {
    display: grid;
    width: 100%;
    grid-template-columns: 5% 30% 30% 30% 5%;
}


#galeria img {
    width: 94%;
    display: none;

}


.img-container:nth-child(2) img {
    margin: 0 !important;
    margin-right: 6% !important;
}

.img-container:nth-child(3) img {
    margin: 0 3% !important;
}

.img-container:nth-child(4) img {
    margin: 0 !important;
    margin-left: 6% !important;
}







.img-container {
    width: 100%;
}


.img-container img {
    display: block !important;
}


.gallery-arrow {
    display: block !important;
    width: 2rem !important;
    height: auto !important;
    text-align: center;
    margin: auto;
    cursor: pointer;
}


.gallery-arrow:nth-child(1) {
    transform: rotate(180deg);
}




#foglalas {
    font-family: 'Montserrat', sans-serif;

    font-weight: bold;
    color: var(--main-bg-color);
    background-color: var(--accent-teal);
    padding: 1rem 2rem;
    font-size: 3rem;
    border-radius: 5rem;
    text-decoration: none;
    margin: 3rem 0;
    transition: 0.3s ease-in;
}


#foglalas:hover {
    transform: scale(102%);
}



@media screen and (orientation:portrait) {

    #galeria {
        display: none;
    }

    #foglalas {
        font-size: 2rem;
        margin: 1rem 0;
    }


}





#mobil-galeria {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 97%;
}



.mobil-kep {
    width: 80vw;
    height: auto;
}


.gallery-arrow-mobile {
    display: block !important;
    width: 6vw !important;
    height: auto !important;
    text-align: center;
    margin: auto;
    cursor: pointer;
}


.gallery-arrow-mobile:nth-child(1) {
    transform: rotate(180deg);
}




@media screen and (orientation:landscape) {

    #mobil-galeria {
        display: none;
    }

}