/* ===========================================================
   STREET BITE demó kiegészítés · Conen DIGITAL Studio
   Az eredeti MegaOne food stílus marad az alap.
   Itt a logó, a hero badge, a fotóillesztés és a jelvény van.
   =========================================================== */

/* Logo: egyszerű szöveges logó helyett SVG-t használunk.
   Desktopon nagyobb és vastagabb – a bátor STREET BITE felirat. */
header a.logo img,
.top-header-area a.logo img{
    width: auto !important;
    height: 40px;
    max-width: 200px;
}
.footer-logo a.logo img{
    width: auto !important;
    height: 48px;
    max-width: 220px;
}

/* Nav menü – fehér, vastag, nagybetűs */
header .navbar .navbar-nav .nav-link,
.top-header-area .navbar-nav .nav-link{
    color: #ffffff !important;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-size: 16px;
}
header .navbar .navbar-nav .nav-link:hover,
.top-header-area .navbar-nav .nav-link:hover{
    color: #ff5606 !important;
}

/* Scrolled header: sötét navbar, különben a fehér STREET és a fehér
   linkek eltűnnének a template fehér hátterén. */
.header-appear .navbar-top-default{
    background: #2d2d2d !important;
}
header .side-nav-btn span{
    background: #ffffff;
}
header .social_icons li a{
    color: #ffffff;
}
header .social_icons li a:hover{
    color: #ff5606;
}

/* Hero badge – a Revolution slider szövege helyett egy tiszta kártya */
.hero-badge{
    background: #ffffff;
    color: #2d2d2d;
    text-align: center;
    padding: 30px 36px 26px;
    border-radius: 24px;
    box-shadow: 0 22px 50px -24px rgba(45,45,45,.4);
    font-family: 'Roboto', sans-serif;
    white-space: normal !important;
    max-width: 680px;
}
.hero-badge span{
    display: block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #ff5606;
    margin-bottom: 8px;
}
.hero-badge strong{
    display: block;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.1;
    color: #2d2d2d;
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
}
.hero-badge p{
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.55;
    color: #444;
    font-weight: 400;
}
.hero-badge .btn{ margin: 0; }
.hero-badge,
.hero-badge *{ white-space: normal !important; }

/* A slider eredeti szövegeit elrejtjük */
#rev_slider_1_1 .tp-caption{ display: none !important; }

/* Hero háttérkép – a Revolution slider mögé */
#home{
    background: url("/assets/collection/landings/food/img/gen/hero-burger.png") center center / cover no-repeat;
    overflow: hidden;
}
#home::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(45,45,45,.55) 0%, rgba(45,45,45,.35) 50%, rgba(45,45,45,.65) 100%);
    z-index: 10;
}
#home .rev_slider_wrapper{ position: relative; z-index: 2; }

/* Hero effekt: lassú, folyamatos zoom a slider SAJÁT háttérképén.
   A kép cover-rel tölti ki a slider területét, ezért az effekt
   mindig a látható képen dolgozik – a méret konzisztens. */
#rev_slider_1_1 .tp-bgimg{
    transform-origin: center center;
    animation: streetbite-hero-zoom 30s linear infinite alternate;
}
@keyframes streetbite-hero-zoom{
    from{ transform: scale(1); }
    to{ transform: scale(1.08); }
}
@media (prefers-reduced-motion: reduce){
    #rev_slider_1_1 .tp-bgimg{
        animation: none;
        transform: none;
    }
}

/* Hero overlay – a badge a slider fölé kerül */
.hero-overlay{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
    display: flex;
    align-items: center;
    pointer-events: none;
}
.hero-overlay .container,
.hero-overlay .row,
.hero-overlay .col-lg-8,
.hero-overlay .col-md-10{
    height: 100%;
    display: flex;
    align-items: center;
}
.hero-overlay .hero-badge{ pointer-events: auto; }

/* Fotóillesztés */
.rare-box img,
.about-img{
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}
.item-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.deal-img img{
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 9 / 7;
}
.img-blog img{
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 3 / 2;
}

/* Testimonial képek */
.testimonial .img-fill img,
.client-thumbnails .img-fill img{
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
}

/* Demó jelvény */
.demo-badge{
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 18px 11px 14px;
    background: rgba(45,45,45,.92);
    color: #fff;
    border-radius: 50px;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 12.8px;
    letter-spacing: .2px;
    text-decoration: none;
    box-shadow: 0 10px 30px -10px rgba(45,45,45,.55);
    transition: transform .4s ease, background .3s ease;
}
.demo-badge:hover{
    transform: translateY(-3px);
    background: #2d2d2d;
    color: #fff;
    text-decoration: none;
}
.demo-badge .demo-dot{
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff5606;
    box-shadow: 0 0 0 4px rgba(255,86,6,.25);
    animation: demoPulse 2.4s infinite;
}
.demo-badge strong{ font-weight: 700; }
@keyframes demoPulse{
    0%,100%{ box-shadow: 0 0 0 3px rgba(255,86,6,.3); }
    50%{ box-shadow: 0 0 0 8px rgba(255,86,6,0); }
}

/* Toast */
.demo-toast{
    position: fixed;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%) translateY(12px);
    background: #2d2d2d;
    color: #fff;
    padding: 12px 18px;
    border-radius: 50px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    opacity: 0;
    pointer-events: none;
    z-index: 1040;
    transition: .4s ease;
}
.demo-toast.is-on{
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Mobil */
@media (max-width: 767px){
    header a.logo img,
    .top-header-area a.logo img{ height: 46px; }
    .hero-badge{ padding: 22px 18px 20px; border-radius: 18px; }
    .hero-badge strong{ font-size: 28px; }
    .hero-badge p{ font-size: 14px; }
    .demo-badge{ display: none; }
}
