@import url('https://fonts.googleapis.com/css2?family=Oxanium:wght@200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');



/* Box sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Alap */
html {
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Roboto', sans-serif;
    background: var(--bs-white);
    color: var(--bs-dark);
    overflow-x: clip;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}


input,
button,
textarea,
select {
    font: inherit;
}


::selection {
    background: rgba(var(--bs-info-rgb), 0.3);
}

::placeholder {
    color: #ccc;
}


a{
    color: var(--bs-primary);
    text-decoration: none;
    outline-width: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.text-infant{
    font-family: "Cormorant Infant", serif;
}


strong{
    font-weight: 700;
}

h1,h2,h3,h4,h5,h6{
    font-family: "Oxanium", sans-serif;
}



.main-content{
    min-height: 65vh;
}


.container-fluid.ws-container{
    max-width: 100rem;
    padding-left: 2rem;
    padding-right: 2rem;
}


.ws-title {
    overflow: hidden;
    font-weight: 800;
    text-align: left;
    position: relative;
    padding-bottom: 1em;
    color: var(--bs-primary);
    text-transform: uppercase;
}

.ws-title::after {
    content: '';
    display: block;
    width: 5rem;
    height: 3px;
    position: relative;
    bottom: -1rem;
    background: var(--bs-secondary);
    transition: width .3s ease-in-out;
}

.ws-title.ws-title-center{
    text-align: center !important;
}

.ws-title.ws-title-center::after{
    margin: 0 auto;
}

.ws-title > small{
    display: block;
    font-size: 60%;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
}

.ws-title > small.lighter{
    font-weight: 400;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

.quote{
    display: block;
    height: 100% !important;
    position: relative;

    color: var(--bs-primary);
    padding: 0 2rem;
}

.quotes-container{
    position: relative;
    padding: 3rem 2rem;
}

.quotes-container::before{
    content: "\201C";
    font-family: Georgia, serif;
    font-weight: normal;
    color: var(--bs-primary);
    position: absolute;
    font-size: 16rem;
    line-height: 1em;
    left: 1rem;
    top: 1rem;
    opacity: 0.1;
}

.ws-blockquote{
    display:block;
    font-size: 1rem;
    line-height: 1.2rem;
    text-align: justify;
    z-index: 999;
    font-style: italic;
    position: relative;
    min-height: 5rem;
}

.ws-blockquote-footer p{
    font-weight: 300;
}

ul.list-custom{
    list-style: none;
    padding: 0;
}

ul.list-custom > li{
    position: relative;
    padding: 0.2rem 0.2rem 0.2rem 1.75rem;
    font-weight: 500;
}

.special-offer{
    display: block;
    width: 80%;
    max-width: 20rem;
    margin: 0 auto;
}

ul.list-custom > li:before{
    position: absolute;
    left: 0;
    top: 0;
    font-family: "bootstrap-icons";
    content: "\F271";
    padding-right: 0.5rem;
    color: var(--bs-primary);
    font-size: 1.2rem;
}

.video-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 50vh;
    background: var(--bs-primary);
}

/* háttér video */
.youtube-cover-embed {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    opacity: 0.65;
    background: var(--bs-primary);
}

/* iframe skálázása cover módra */
.youtube-cover-embed iframe {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 200%;
    height: 200%;

    transform: translate(-50%, -50%);
    pointer-events: none;
}



.video-gradient-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;

    background: linear-gradient(
        90deg,
        rgb(var(--bs-primary-rgb)) 0%,
        rgba(var(--bs-primary-rgb), 0.8) 15%,
        rgba(var(--bs-primary-rgb), 0.15) 50%,
        rgba(var(--bs-primary-rgb), 0.8) 85%,
        rgba(var(--bs-primary-rgb), 1) 100%
        );
}

.video-content{
    position: relative;
    max-width: 70rem;
    margin: 0 auto;
    color: var(--bs-light);
    width: 100%;
    z-index: 3;
    padding: 5rem 1rem 2rem 1rem;
    text-align: center;
}

.video-content h1{
    text-align: center;
    text-transform: uppercase;
}


.video-content p{
    display: block;
    margin: 0 auto;
    font-size: 1.2rem;
}



.article-ul ul{
    list-style: none;
    padding: 0;
}

.article-ul ul li{
font-size: 1.2rem;
}

.article-ul ul li::before {
    content: "○";
    color: var(--bs-primary);
    display: inline-block;
    font-size:1.2rem;
    width: 1.2em;
}

.article-img{
    display: block;
    width: 100%;
    border-radius: 0.25rem;
}


.promo-img{
    display: block;
    width: 100%;
    padding: 2rem;
    border: 1px solid var(--bs-light);
    background: #fff;
    box-shadow: 0 0 10rem rgba(var(--bs-dark-rgb),0.1);
}


.promo-img > img{
    display: block;
    width: 100%;
}

.ws-img-responsive{
    display: block;
    width: 100%;
    max-width: 40rem;
    margin: 1rem auto;
}

.section{
    position: relative;
    padding: 5rem 0;
}

.section-light{
    background: var(--bs-light);
}

.section-light{
    color: var(--bs-dark) !important;
}

.section-dark{
    background: var(--bs-dark);
    color: var(--bs-white) !important;
}


.main-footer{
    position: relative;
    background: var(--bs-light);
    padding: 10rem 0;
}


.foo-content p{
    font-size: 0.9rem;
    text-align: center;
    padding: 0;
    margin: 0;
}


.foo-links-section{
    padding: 2rem 0 1.5rem 0;
    background: var(--bs-primary);
}

.foo-links{
    list-style: none;
    text-align: center;
    padding: 0;
}

.foo-links li{
    display: inline-block;
    padding: .2rem 1rem;
}

.foo-links li > a{
    display: block;
    color: #fff;
    text-decoration: none;
    outline-width: 0;
}

.foo-links li > a:hover{
    color: #fff;
}

.foo-logo{
    height: 5rem;
    max-width: 100%;
    display: block;
    margin: 2rem auto;
}

.map-title{
    text-align: left;
    padding: 2rem 0;
    background: var(--bs-primary);
}

.map-title h4{
    color: #fff;
    padding: 0;
    margin: 0;
}

.map-title p{
    color: #ebc977;
    padding: 0;
    margin: 0;
}

#map-canvas{
    display: block;
    width: 100%;
    height: 30rem;
}

#map-content{
    padding: 0.5rem;
}

#map-dest{
    display: block;
    width: 100%;
    height: 50rem;
}




.ws-flex-row{
    display: -ms-flexbox !important;
    display: flex !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
    margin: -0.25rem;
    list-style: none;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.ws-flex-row > .ws-flex-item{
    display: block;
    width: 100%;
    height: 100%;
}

ul.ws-gallery{
    display: -ms-flexbox !important;
    display: flex !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
    list-style: none !important;
    align-items: center;
    justify-content: start;
    width: 100%;
    padding: 0 !important;
}

ul.ws-gallery > li.gallery-item{
    width: 50%;
    display: block;
    padding: 0.25rem;
    height: 12rem;
    overflow: hidden;
    
}

a.gallery-link{
    display: block;
    height: 100%;
    border: 2px solid var(--bs-success);
    padding-top: 40%;
    text-align: center;
    text-transform: uppercase;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    
}

.sample-gallery-cover{
    display: block;
    width: 100%;
    display: block;
    padding: 0.25rem;
}

.sample-gallery-cover > a > img{
    display: block;
    width: 100%;
}


ul.ws-gallery > li.gallery-item > a{
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
    border-radius: 0.75rem;
}

ul.ws-gallery > li.gallery-item > a > img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}
ul.ws-gallery > li.gallery-item > a > img:hover{
    transform: scale(1.1);
}



.home-intro{
    background: #fff;
    padding: 2rem;
    text-align: justify;
}


.section-title > h3{
    font-weight: 900;
    font-size: 2rem;
    margin: 0;
    padding: 2rem 0;
    text-transform: uppercase;
}

.main-services{
    padding: 0 0 4rem 0;
}

.service-item{
    height: 100%;
}



.si-img{
    display: block;
    width: 6rem;
    height: 6rem;
    object-fit: scale-down;
    margin: 1rem;

}

.si-desc{
    padding-left: 0.5rem;
}

.si-title{
    font-size: 1.5rem;
    margin: 0;
    padding-bottom: 0.25rem;
    color: var(--bs-primary);
    font-weight: 800;
    min-height: 4.2rem;
}

.benefit > i{
    font-size: 2rem;
    line-height: 1em;
    color:  var(--bs-primary);
    padding-right: 1rem;
}

.benefit > h4{
    font-size: 1.2rem;
    color: #514737;
    font-weight: 600;
}

.benefit > h4 > small{
    font-size: 1rem;
    font-weight: 400;
}

.text-justify{
    text-align: justify;
}

.benefits{
    background: #fff;
    border-radius: 0.3rem;
    padding: 2rem;
    text-align: justify;
}

.lead-text{
    max-width: 80rem;
    display: block;
    margin: 0 auto;
    text-align: center;
}

.lead-text p{
    margin: 0;
    padding: 0;
    text-align: justify;
    text-align-last: center;
    font-size: 1.2rem;
    line-height: 2em;
}

.parallax-container{
    display: block;
    width: 100%;
    max-height: 30rem;
    overflow: hidden;
    border-radius: 0.25rem;
}

.parallax-img{
    width: 100%;
    display: block;
}

.contact-data h3,.contact-data h4, .contact-data h5{
    color:  #514737;
}

.contact-data p{
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
    padding: 0;
}

.contact-data i{
    color: #85a540;
}



.margin-flow{
    margin-right: -5rem;
    z-index: 99;
}

.dishes img{
    display: block;
    width: 100%;
}

.dishes-left img{
    display: block;
    width: 100%;
    height: 30rem;
    object-fit: cover;
}


.dishes-desc {
    padding: 2rem 0;
}

.dishes-desc p{
    text-align: justify;
    font-size: 1.2rem;
}


.table td{
    padding: 0.75rem 1rem;
    color: var(--bs-primary);
}

.pricing-table {
    width: 100%;
    margin-bottom: 0;
    border-color: rgba(var(--bs-primary-rgb), 0.2);
}

.pricing-table thead th {
    background: var(--bs-primary);
    color: #fff;
    font-weight: 600;
    border-color: rgba(var(--bs-primary-rgb), 0.1);
    white-space: nowrap;
    text-align: left;
    padding: 1rem;
}

.pricing-table tbody td {
    padding: 1rem;
    vertical-align: middle;
    text-align: left;
}

.pricing-table.table-striped {
    --bs-table-striped-bg: #ffffff;
}


.pricing-table tbody td:first-child {
    font-weight: 400;
}

.contact-person-img{
    display: block;
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .pricing-table {
        min-width: 650px;
    }
}

.lighter{
    font-weight: 300;
    color: var(--bs-primary);
}


.contact-lg{
    font-size: 1.4rem;
    border: 1px solid var(--bs-success);
    padding: 1rem 1.5rem;
    display: inline-block;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    min-width: 21rem;
    text-align: left;
}

/*.contact-lg > i{
    color: var(--bs-primary);
}*/





@media (max-width: 440px){
    html{
        font-size: 85%;
    }
}


@media (min-width: 576px){


}

@media (min-width: 768px){


    .ws-container{
        padding-left: 2rem;
        padding-right: 2rem;
    }


    .article{
        display: block;
        margin: 0 auto;
        max-width: 100rem;
        padding: 2rem;
    }

    ul.ws-gallery > li.gallery-item{
        width: 33.3333%;
    }



}


@media (min-width: 992px){
    

    .page-title{
        padding: 2rem 1.5rem;
    }

    .social-icons{
        text-align: left;
        transition: all 0.5s ease;
    }


    ul.ws-gallery > li.gallery-item{
        width: 33.3333%;
        height: 20rem;
    }

    .sample-gallery-cover{
        display: inline-block;
        max-width: 30rem;
    }

    .sample-gallery-cover > a > img{
        display: block;
        width: 100%;
        height: 39.5rem;
        object-fit: cover;
    }

    .ws-flex-row > .ws-flex-item{
        width: 33.333%;
    }


    .section {
        padding: 6rem 0;
    }

    .section-pb{
        padding-bottom: 12rem;
    }


    .section-img > img{
        height: 16rem;
    }

    .article-img{
        display: block;
        width: 100%;
        max-height: 30rem;
        object-fit: cover;
        margin: 1rem 0;
    }

.video-content{
        padding: 12rem 1rem 2rem 1rem;
    }

}

@media (min-width: 1200px){
    .ws-flex-row > .ws-flex-item{
        width: 25%;
    }
    .section-relative{

        height: 10rem;
        background: var(--bs-primary);
    }

    .section-relative > div{
        position: relative;
    }

    .home-intro{
        position: absolute;
        right: 2rem;
        bottom: -10rem;
        z-index: 99;
        background: #fff;
        border-radius: 0.3rem;
        padding: 2rem;
        width: 70%;
        max-width: 50rem;
        text-align: justify;
    }



    .benefits{
        position: absolute;
        bottom: -10rem;
        right: 2rem;
        z-index: 99;
        background: #fff;
        border-radius: 0.3rem;
        padding: 2rem;
        width: 100%;
        max-width: 70rem;
        text-align: justify;
    }

    .foo-logo{
        max-width: 100%;
        display: block;
        margin: 0 2rem 0 0;
    }



    .dishes-left img{
    display: block;
    
    width: 30rem;
    height: auto;
    object-fit: cover;
}

    .dishes-right img{
        width: 100%;
    }

    .dishes-desc{
        padding: 3rem 0rem 2rem 8rem;
    }
    ul.ws-gallery.gallery-wide > li.gallery-item{
        width: 25%;
    }

}

@media (min-width: 1440px){

    .ws-flex-row > .ws-flex-item{
        width: 20%;
    }
    .section {
        padding: 8rem 0;
    }
    .section-pb{
        padding-bottom: 16rem;
    }


    .section-img{
        bottom: -7rem;
    }

    .section-img > img{
        height: 24rem;
    }
    .service-img{
        height: 32rem;
    }

    .video-wrapper {
    min-height: 70vh;
    }

    

}

@media (min-width: 1600px){

    .dishes-left img{
        width: 40rem;
        min-width: 40rem;
    }
 ul.ws-gallery.gallery-wide > li.gallery-item{
        width: 20%;
    }

}
/********* THEME ********/



.btn-with-icon{
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    padding-right: 1.2rem;
}

.btn-with-icon:hover{
    padding-right: 0.8rem;
}

.btn-with-icon i{
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    margin-left: 0.4rem;
}

.btn-with-icon:hover > i{
    margin-left: 0.8rem;
}

.btn-animate{
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    transition: all .3s ease-in-out;
    display: inline-flex;
    align-items: center;
    text-align: left;
}

.btn-animate:hover{
    padding-right: 1.75rem;
}

.btn-animate i{
    padding-left: 1.5rem;
    transition: padding-left .3s ease-in-out;
}

.btn-animate:hover > i{
    padding-left: 2rem;
}


.ws-btn{
    display: inline-block;
    position: relative;
    height: 100%;
    background: none;
    text-align: left;
    position: relative;
    color: var(--bs-light);
    transition: all 0.3s ease-in-out;
    border-bottom:  2px solid transparent;
    border-left:  2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 1.25rem 1.75rem;
    text-decoration: none;
    outline-width: 0;
    font-weight: 600;
    white-space: nowrap;
}

.ws-btn:hover{
    z-index: 99;
    cursor: pointer;
    color: var(--bs-light);
    border-color: var(--bs-light);
    padding-left: 2.5rem;
}

.ws-btn > i{
    font-size: 120%;
    transition: all 0.3s ease-in-out;
    padding-left: 0.5rem;
}

.ws-btn:hover > i{
    padding-left: 1.75rem;
}


.ws-btn::after {
    position: absolute;
    width: 35%;
    height: 2rem;
    content: "";
    right: 0;
    top: 0;
    border-right: 2px solid var(--bs-light);
    border-top: 2px solid var(--bs-light);
    transition: all 0.3s ease-in-out;

}

.ws-btn:hover::after{
    width: 100%;
    height: 100%;
}

.ws-btn::before {
    position: absolute;
    width: 35%;
    height: 2rem;
    content: "";
    left: 0;
    bottom: 0;
    border-left: 2px solid var(--bs-light);
    border-bottom: 2px solid var(--bs-light);
    transition: all 0.3s ease-in-out;
}

.ws-btn:hover::before{
    width: 100%;
    height: 100%;
}

hr.divider{

    height: 2px;
    display: block;
    width: 100%;
    margin: 2rem 0;
    border: none;
    border-bottom: 1px solid var(--bs-info);
}


