 html{
            scroll-behavior:smooth;
            overflow-x: hidden;
        }

        body{
            scroll-snap-type:y mandatory;
            overflow-y:scroll;
            overflow-x: hidden;
        }

        .section{
            min-height:100vh;
            scroll-snap-align:start;
            display:flex;
            align-items:center;
            justify-content:center;
        }

        .navbar{
            background: rgba(0,0,0,0.5);
            border-bottom: none !important;
            border: none !important;
            box-shadow: none !important;
        }

        .hero{
            position:relative;
            color:white;
        }

        .hero::before{
            content:"";
            position:absolute;
            inset:0;
            background:rgba(0,0,0,.65);
        }

        .hero-content{
            position:relative; 
            z-index:2;
            text-align:center;
        }

        .hero h1{
            font-size:5rem;
            font-weight:700;
        }

        .hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

        .btn-brand{
            background:#b97734;
            border:none;
            color:white;
            padding:14px 35px;
            border-radius:50px;
        }

        .btn-brand:hover{
            background:#9f6426;
            color:white;
        }

        .side-nav{
            position:fixed;
            left:30px;
            top:50%;
            transform:translateY(-50%);
            z-index:999;
        }

        .dot{
            display:block;
            width:12px;
            height:12px;
            background:white;
            border-radius:50%;
            margin:20px 0;
            opacity:.4;
            transition:.3s;
        }

        .dot.active{
            background:#dcccb6;
            opacity:1;
            transform:scale(1.4);
        }

        .section-title{
            font-size:3rem;
            font-weight:700;
            margin-bottom:20px;
            color: #b97734;
        }

        .bg-light-custom{
            background:#f8f5f2;
        }


        /* Hero szekció */
.hero-content {
    text-align: center;
    padding: 2rem 1rem;
}

/* Felső szöveg */
.hero-content .text-warning {
    font-size: clamp(0.9rem, 2vw, 1.4rem);
    line-height: 1.6;
    max-width: 1000px;
    margin: 0 auto 1.5rem;
}

/* Főcím */
.hero-content h1 {
    font-size: clamp(1.8rem, 5vw, 4rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* Alcím */
.hero-content .lead {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    margin-bottom: 2rem;
}

/* Gomb */
.hero-content .btn-lg {
    font-size: clamp(1rem, 2vw, 1.25rem);
    padding: 0.8rem 2rem;
}


/* Navbar */
.navbar {
    padding: 0.8rem 0;
    background: #ffffff; /* opcionális */
}

/* Logó */
.navbar-brand {
    font-size: clamp(1.3rem, 3vw, 2rem);
    white-space: nowrap;
}

/* Menüpontok */
.navbar-nav .nav-link {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    padding: 0.75rem 1rem;
    white-space: nowrap;
    
}

.link-warning:hover {
    color: #b97734 !important;
}




/* Mobil nézet */
@media (max-width: 991.98px) {

    .navbar-brand {
        font-size: 1.4rem;
    }

    .navbar-collapse {
        text-align: center;
        padding-top: 1rem;
        background: #f1e8dc;
        color:#6d4e35 !important;
        backdrop-filter: blur(10px);
        border-radius: 12px;
        margin-top: 10px;
        padding: 15px;
    }

     .navbar-collapse:hover {
        color:#c49a6c !important;
    }

    .navbar-nav .nav-link {
        font-size: 1.1rem;
        padding: .75rem 0;
    }
}


@media (max-width:991.98px){

    .navbar-collapse .nav-link{
        color:#6d4e35 !important;
    }

    .navbar-collapse .nav-link:hover{
        color:#c49a6c !important;
    }

}


/* Kis mobilok */
@media (max-width: 576px) {

    .navbar {
        padding: 0.5rem 0;
    }

    .navbar-brand {
        font-size: 1.2rem;
        max-width: 75%;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .navbar-toggler {
    border-color: rgba(255,255,255,.5);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
}

/* Szekció */
#how {
    padding: 100px 0;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 60px;
}

/* Kártya */
.step-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 40px 25px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: all .3s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,.12);
}

/* Sorszám */
.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: #809671;
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Cím */
.step-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

/* Leírás */
.step-card p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Mobil */
@media (max-width: 768px) {

    #how {
        padding: 70px 0;
    }

    .step-card {
        padding: 30px 20px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .step-card h4 {
        font-size: 1.1rem;
    }
}


.process-section {
    padding: 100px 0;
    background: #111;
    color: #fff;
}

.process-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 70px;
    padding: 0px 100px;
}

.process-wrapper::before {
    content: "";
    position: absolute;
    top: 38px;
    left: 8%;
    width: 84%;
    height: 3px;
    background: rgba(255,255,255,.15);
}

.process-step {
    position: relative;
    z-index: 2;
}

.process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 75px;
    height: 75px;

    border-radius: 50%;
    border: 1px solid white;
    background: black;

    color: #000;
    font-size: 1.5rem;
    font-weight: 700;

    margin-bottom: 25px;
}

.process-step h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.process-step p {
    color: rgba(255,255,255,.8);
    line-height: 1.7;
}

@media (max-width: 992px) {

    .process-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .process-wrapper::before {
        display: none;
    }

    .process-step {
        padding-left: 25px;
        border-left: 3px solid #809671;
    }
}

.main_logo {
    max-width: 35%;
    height: auto;
    display: block;
}


 
.side-nav{
    position:fixed;
    left:32px;
    top:50%;
    transform:translateY(-50%);
    z-index:1000;

    display:flex;
    flex-direction:column;
    gap:22px;
}

.side-nav::before{
    content:"";
    position:absolute;
    left:7px;
    top:0;
    bottom:0;
    width:1px;
    background:rgba(255,255,255,.15);
}

.progress-line{
    position:absolute;
    left:7px;
    top:0;
    width:2px;
    height:0;
    background:linear-gradient(
        to bottom,
        #d6a66a,
        #8b5e3c
    );
    transition:.25s;
}
.nav-dot{

    position:relative;

    display:block;

    width:16px;
    height:16px;

    border-radius:50%;

    background:rgba(255,255,255,.35);
    border:2px solid rgba(255,255,255,.35);

    transition:.35s ease;

    text-decoration:none;

}

.nav-dot:hover{

    transform:scale(1.15);
    

   
    

}

.nav-dot.active{

    background:#d6a66a;
    border-color:#d6a66a;


    box-shadow:
        0 0 12px rgba(214,166,106,.45),
        0 0 28px rgba(214,166,106,.25);
    
}





.nav-dot::after{

    content:attr(data-label);

    position:absolute;

    left:34px;
    top:50%;

    transform:translateY(-50%) translateX(-12px);

    background:#d39554;

    color:#fff;

    padding:10px 18px;

    border-radius:40px;

    font-size:10px;
    font-weight:600;

    letter-spacing:.3px;

    white-space:nowrap;

    opacity:0;

    transition:.35s;

    pointer-events:none;

}

.nav-dot:hover::before,
.nav-dot.active::before{

    width:25px;
    height: 25px;

}

.nav-dot:hover::after{

    opacity:1;

    transform:translateY(-50%) translateX(0);

}

.nav-dot.active::before{

    content:"";

    position:absolute;

    inset:-6px;

    border-radius:50%;

    border:1px solid rgba(214,166,106,.45);

    animation:pulse 2s infinite;

    pointer-events:none;

}

@keyframes pulse{
    0%{
        transform:scale(1);
        opacity:.7;
    }
    100%{
        transform:scale(1.6);
        opacity:0;
    }
}

/* Mobilon ne jelenjen meg */

@media (max-width: 992px){
    .side-nav{
        display:none;
    }
}



.cta-btn{
    position: relative;
    overflow: hidden;
    transition: all .3s ease;
}

.cta-btn:hover{
    transform: translateY(-3px);
    box-shadow:
        0 10px 30px rgba(214,166,106,.35);
}

/* végigfutó fénycsík */

.cta-btn::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:60%;
    height:100%;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.4),
        transparent
    );

    transform:skewX(-25deg);
    animation:shine 4s infinite;
}

@keyframes shine{
    0%{
        left:-120%;
    }
    25%{
        left:130%;
    }
    100%{
        left:130%;
    }
}

.savings-comparison{
    background:#faf8f5;
}

.comparison-table{
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    background:#fff;
}

.comparison-header{
    display:grid;
    grid-template-columns:1fr 1fr;
    background:#6b4128;
    color:#fff;
    font-weight:700;
}

.comparison-header div{
    padding:20px;
    text-align:center;
}

.comparison-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    border-bottom:1px solid #eee;
}

.comparison-row:last-child{
    border-bottom:none;
}

.comparison-row div{
    padding:24px;
    display:flex;
    align-items:center;
    line-height:1.6;
}

.negative{
    background:#fff8f8;
}

.positive{
    background:#f7fcf7;
    font-weight:600;
}

@media(max-width:768px){

    .comparison-header{
        display:none;
    }

    .comparison-row{
        grid-template-columns:1fr;
    }

    .negative{
        border-bottom:1px dashed #ddd;
    }
}

/* ===== AJÁNLATKÉRŐ SZEKCIÓ ===== */

#quote-request {
    padding: 80px 0;
    background: #f8f9fa;
}

#quote-request .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 15px;
}

#quote-request .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: #666;
}

#quote-request form {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

/* Címsorok */

#quote-request h4 {
    margin-top: 35px;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 600;
    color: #222;
}

/* Inputok */

#quote-request .form-control,
#quote-request .form-select {
    height: 52px;
    border-radius: 12px;
    border: 1px solid #ddd;
    transition: all .25s ease;
}

#quote-request textarea.form-control {
    height: auto;
    min-height: 120px;
    padding-top: 12px;
}

#quote-request .form-control:focus,
#quote-request .form-select:focus {
    border-color: #d6a66a;
    box-shadow: 0 0 0 4px rgba(13,110,253,.15);
}

/* Checkboxok */

#quote-request .form-check {
    margin-bottom: 10px;
}

#quote-request .form-check-label {
    cursor: pointer;
    color: #444;
}

/* Elválasztó */

#quote-request hr {
    margin: 40px 0;
    opacity: .15;
}

/* Gomb */

#quote-request .btn-primary {
    background: #d6a66a;
    border: none;
    border-radius: 50px;
    padding: 15px 45px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all .3s ease;
}

#quote-request .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(214, 166, 106);
}

/* Szekció blokkok */

.quote-box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
}

/* Mobil */

@media (max-width: 768px) {

    #quote-request {
        padding: 60px 0;
    }

    #quote-request form {
        padding: 25px;
    }

    #quote-request .section-title {
        font-size: 2rem;
    }

    #quote-request h4 {
        font-size: 1.15rem;
    }

    #quote-request .btn-primary {
        width: 100%;
    }
}

#opening-hours .active-day {
    color: #b97734;
    font-weight: 700;
}

#opening-hours .today-label {
    color: inherit;
    font-size: 0.9em;
}

.custom-footer{
background:linear-gradient(180deg,#f8f3ed,#f1e8dc);
border-top:1px solid #e5d8c8;
padding:70px 0 30px;
}

.footer-brand{
display:flex;
justify-content:center;
margin-bottom:50px;
}

.main_logo_2{
width:100%;
max-width:320px;
height:auto;
}

.footer-partners{
display:grid;
grid-template-columns:repeat(6,1fr);
gap:25px;
align-items:center;
max-width:850px;
margin:0 auto 50px;
}

.footer-partners img{
    width:100%;
    max-width:160px;
    height:75px;
    margin:auto;
    object-fit:contain;
    opacity:.75;
    transition:.3s;
}

.footer-partners img:hover{
opacity:1;
transform:translateY(-3px);
}

.footer-social{
display:flex;
justify-content:center;
gap:15px;
margin-bottom:40px;
}

.footer-social a{
width:50px;
height:50px;
border-radius:50%;
background:#fff;
display:flex;
align-items:center;
justify-content:center;
text-decoration:none;
color:#6d4e35;
box-shadow:0 5px 15px rgba(0,0,0,.08);
transition:.3s;
}

.footer-social a:hover{
background:#c49a6c;
color:#fff;
transform:translateY(-3px);
}

.footer-bottom{
border-top:1px solid #ddd0c1;
padding-top:25px;
text-align:center;
}

.footer-links{
display:flex;
justify-content:center;
gap:25px;
margin-bottom:12px;
}

.footer-links a{
text-decoration:none;
color:#6d4e35;
font-weight:600;
}

.footer-links a:hover{
    color:#c49a6c;
}

.footer-bottom p{
    margin:0;
    color:#8a7058;
}

@media(max-width:768px){

.main_logo_2{
    max-width:260px;
}

.footer-partners{
    grid-template-columns:repeat(2,1fr);
    max-width:240px;
    gap:20px;
}

}

@media(max-width:480px){

.footer-partners{
    grid-template-columns:repeat(2,1fr);
    max-width:220px;
    gap:18px;
}

.footer-links{
    flex-direction:column;
    gap:10px;
}

}


#navbar {
    transition: transform 0.3s ease;
}

#navbar.nav-hidden {
    transform: translateY(-100%);
}


.back-to-top{
    display:inline-block;
    padding:10px 20px;
    background: #d6a66a;
    color:#9f6426;
    text-decoration:none;
    border-radius:5px;
    transition:0.3s;
}

.back-to-top:hover{
    background:#555;
}


#navbar{
    transition: all .35s ease;
    padding: 20px 0;
}

#navbar.nav-hidden{
    transform: translateY(-100%);
    opacity: 0;
}

#navbar.nav-small{
    transform: translateY(0);
    opacity: 1;
    padding: 6px 0;
    background: #6d4e35 !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,.25);
}

#navbar.nav-small .container{
    max-width: 1200px;
}

#navbar.nav-small .main_logo{
    height: 80px;      /* eredeti helyett kisebb logó */
    width: 250px;
    transition: .35s;
}

#navbar.nav-small .nav-link{
    font-size: .92rem;
}

#nyitvatartas-status {
    font-size: 20px;
    font-weight: bold;
}

.nyitva {
    color: #809671;
}

.zarva {
    color: #dc3545;
}


.hero_text {
    color: #d6a66a;
    font-size: clamp(0.8rem, 2.2vw, 1.6rem);
    line-height: 1.7;
}

.rolunk_text {
    color: #809671;
}

.ossz_bg {
    background-color: #809671;
}


.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
}

.carousel-inner {
    border-radius: 20px;
    overflow: hidden;
}


.gallery-section{
    background:#f8f9fa;
}

.gallery-wrapper{
    position:relative;
    max-width:950px;
    margin:auto;
}

.gallery-main{
    display:flex;
    justify-content:center;
    align-items:center;
}

.gallery-main img{
    max-width:100%;
    max-height:80vh;
    width:auto;
    height:auto;
    object-fit:contain;
    border-radius:20px;
}

.gallery-main img.animate{
    transform:scale(1.08);
}


.gallery-arrow{

    position:absolute;
    top:50%;
    transform:translateY(-50%);

    width:55px;
    height:55px;

    border:none;
    border-radius:50%;

    background:rgba(255,255,255,.95);

    box-shadow:0 10px 30px rgba(0,0,0,.2);

    cursor:pointer;

    z-index:10;

    transition:.3s;
}

.gallery-arrow:hover{

    background:#c89b3c;
    color:#fff;

}

.gallery-arrow.left{

    left:-25px;

}

.gallery-arrow.right{

    right:-25px;

}

.gallery-thumbnails{

    display:flex;
    justify-content:center;
    gap:15px;

    margin-top:30px;

    flex-wrap:wrap;

}

.thumb{

    width:120px;
    height:80px;

    object-fit:cover;

    border-radius:12px;

    cursor:pointer;

    opacity:.55;

    transition:.3s;

    border:3px solid transparent;

}

.thumb:hover{

    opacity:1;

    transform:translateY(-3px);

}

.thumb.active{

    opacity:1;

    border-color:#c89b3c;

}

@media(max-width:768px){

.gallery-main img{

height:300px;
border-radius:20px;

}

.thumb{

width:70px;
height:50px;

}

.gallery-arrow{

width:45px;
height:45px;

}

.gallery-arrow.left{

left:5px;

}

.gallery-arrow.right{

right:5px;

}

}

#loading-screen{
    position:fixed;
    inset:0;
    background:#111;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:999999;

    opacity:0;
    visibility:hidden;

    transition:.4s;
}

#loading-screen.show{
    opacity:1;
    visibility:visible;
}

.loader{
    text-align:center;
    color:#fff;
}

.spinner{

    width:70px;
    height:70px;

    border-radius:50%;

    border:4px solid rgba(255,255,255,.15);

    border-top:4px solid #c59b45;

    animation:spin .8s linear infinite;

    margin:auto;

}

@keyframes spin{

    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }

}

.loader h4{
    margin-top:25px;
    letter-spacing:1px;
}