#bemutatkozas {
    width: calc(100% - 4rem);
    padding: 0 2rem;
    padding-top: 1rem;


}



: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 */

}


#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;
}


#bemutatkozas a {
    color: var(--main-text-color);
}



@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;
    }

}



#szobak {
    background-color: var(--secondary-bg-color);
    height: auto;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;

}






#szobak h1,
#velemenyek h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 4rem;
    font-weight: bold;
    color: var(--main-text-color);
    width: 90%;
}


#szobak-container {
    width: 90%;
    display: flex;
}

.szoba {
    width: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--main-bg-color);
    padding: 1.5rem 0.8rem;
    border-radius: 1.5rem;
    text-decoration: none;
    box-shadow: rgb(0, 0, 0, 0.25) 0.2rem 0.2rem 0.2rem;
    color: var(--main-text-color);
    transition: 0.3s ease-in;

}


.szoba:hover {
    transform: scale(102%);

}


.szoba img {
    width: 90%;
    border-radius: 1rem;
}


.szoba div {
    width: 100%;
    display: flex;
    justify-content: space-between;
    height: fit-content;
    align-items: center;
}


.szoba div h1 {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 1.5rem !important;
    padding: 0;
    margin: 1.5rem 0 1rem 1rem;
    width: max-content !important;
}


.szoba div h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.3rem;
    padding: 0;
    margin: 1.5rem 1rem 1rem 1rem;

}



#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) {

    #szobak-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;

    }

    .szoba {
        width: auto;
        margin: 1rem;
    }


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


}



#velemenyek {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}


#velemenyek-container {
    display: grid;
    grid-template-columns: 50% 50%;
    width: 90%;
}


.velemeny {
    border-radius: 2.25rem;
    background: var(--Secondary-Background, #F5F5F5);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    width: calc(100% - 2rem - 2rem);
    padding: 1.2rem 1rem;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}

@media screen and (orientation:landscape) {

    .velemeny:nth-child(odd) {
        margin-right: 1.5rem;
    }


    .velemeny:nth-child(even) {
        margin-left: 1.5rem;
    }
}

.velemeny p {
    color: #000;
    text-align: justify;

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


.velemeny div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.velemeny div h3 {
    color: #000;

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


.velemeny div small {
    color: #000;

    /* Accent */
    font-family: Montserrat;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}





@media screen and (orientation:portrait) {



    #velemenyek-container {
        display: flex;
        flex-direction: column;
        width: 90%;
    }

    .velemeny {
        border-radius: 2.25rem;

        width: calc(100% - 2rem);
        padding: 0.8rem 1rem;



    }





    .velemeny p {

        font-size: 1.5rem;

    }



    .velemeny div h3 {

        font-size: 1.5rem;

    }


    .velemeny div small {

        font-size: 1.3rem;

    }



}







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


.nyil.aktiv {
    transform: rotate(90deg);
    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);
}

@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;
    }

}



#contact {
    width: 90%;
    display: flex;
    justify-content: space-between;
    margin: 2rem 0;
}



#contact a {
    color: #000;
    font-family: Montserrat;
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}


#contact a svg {
    height: 15rem;
    margin-bottom: 2rem;
}


@media screen and (orientation:portrait) {
    #contact {
        width: 90%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }



    #contact a {
        color: #000;
        font-family: Montserrat;
        font-size: 1.5rem;
    }

    #contact a svg {
        height: auto;
        width: 50%;
        margin: 0;
        margin-top: 2rem;
    }

}