:root{
--primary:#ff3c3c;
--accent:#ff8c00;
--dark:#0e0e0e;
--dark-soft:#171717;
--light:#ffffff;
--gray:#aaaaaa;
--radius:18px;
--transition:.4s cubic-bezier(.4,0,.2,1);
}

*{margin:0;padding:0;box-sizing:border-box}

body{
font-family:'Inter',sans-serif;
background:var(--dark);
color:var(--light);
overflow-x:hidden;
}

body {
    margin: 0;
}

.custom-cursor{
position:fixed;
top:0;
left:0;
pointer-events:none;
width:40px;
height:40px;

background:url('/assets/cursor/burger.webp') no-repeat center/contain;

pointer-events:none;

z-index:9999999;

will-change:transform;
transform:translate3d(-100px,-100px,0);
}
body {
   cursor: none; 
}
.container{
width:90%;
max-width:1200px;
margin:auto;
}

section{
padding:120px 0;
}



/* NAVBAR */
.navbar{
position:fixed;
width:100%;
z-index:1000;
background:rgba(0,0,0,.5);
backdrop-filter:blur(15px);
transition:var(--transition);
}

.navbar.scrolled{
background:rgba(0,0,0,.9);
}

.nav-inner{
display:flex;
justify-content:space-between;
align-items:center;
height:80px;
}

.logo img {
    height: 48px;
    width: auto;
    display: block;
    transition: .3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links{
list-style:none;
display:flex;
gap:35px;
}

.nav-links a{
text-decoration:none;
color:white;
position:relative;
font-weight:600;
}

.nav-links a::after{
content:"";
position:absolute;
bottom:-6px;
left:0;
width:0;
height:2px;
background:var(--primary);
transition:.3s;
}

.nav-links a:hover::after{
width:100%;
}

.mobile-toggle{
display:none;
cursor:pointer;
}

/* HERO */
.hero{
    position:relative;
    height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;
}
.hero-video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:0;
}

.hero-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.7);
    z-index:1;
}

/* EN KRİTİK KISIM */
.hero-content{
    position:relative;
    z-index:2;
}

/* ============================= */
/* ULTRA PREMIUM HERO TITLE */
/* ============================= */

@font-face {
    font-family: 'Bebas Neue';
    src: url('../assets/fonts/BebasNeue-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

.hero h1 {
    font-family: 'Bebas Neue', serif;
    font-size: clamp(78px, 20vw, 125px);
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    background: linear-gradient(
        120deg,
        #ffffff 0%,
        #ff3c3c 30%,
        #ff8c00 60%,
        #ffffff 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 6s linear infinite;
    text-shadow: 
        0 5px 20px rgba(0,0,0,0.6),
        0 10px 40px rgba(255,60,60,0.3);
}

/* Shimmer Effect */
@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}

/* Altındaki küçük glow */
.hero h1::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 8px;
    background: radial-gradient(circle, rgba(255,60,60,.6), transparent);
    filter: blur(15px);
}

.hero span{
color:var(--primary);
}

.hero p{
color:var(--gray);
margin-bottom:35px;
font-size:20px;
}

/* ============================= */
/* PREMIUM BUTTONS */
/* ============================= */

.btn-primary, .btn-outline {
    position: relative;
    padding: 16px 40px;
    border-radius: 60px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    overflow: hidden;
    transition: .4s ease;
    backdrop-filter: blur(10px);
}

/* Liquid Gradient Button */
.btn-primary {
    background: linear-gradient(135deg,#ff3c3c,#ff8c00);
    color: #fff;
    box-shadow: 0 15px 40px rgba(255,60,60,.35);
}

.btn-primary::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 100%;
    background: linear-gradient(120deg,transparent,rgba(255,255,255,.4),transparent);
    transform: translateX(-100%);
    transition: .7s;
}

.btn-primary:hover::before {
    transform: translateX(100%);
}

.btn-primary:hover {
    transform: translateY(-6px) scale(1.03);
}

/* Outline Neon Button */
.btn-outline {
    border: 2px solid var(--primary);
    color: white;
}

.btn-outline:hover {
    background: var(--primary);
    box-shadow: 0 0 25px var(--primary);
    transform: translateY(-5px);
}

/* CARDS */


/* ============================= */
/* PREMIUM GLASS CARDS */
/* ============================= */



.food-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,transparent,rgba(255,60,60,.1));
    opacity: 0;
    transition: .4s;
}

.food-card:hover::before {
    opacity: 1;
}

.food-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: .5s ease;
}

.food-card:hover img {
    transform: scale(1.08);
}

.food-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 25px 60px rgba(0,0,0,.6);
}



/* CAMPAIGN */
.campaign{
background:
linear-gradient(rgba(0,0,0,.8),rgba(0,0,0,.8)),
url('../assets/images/burger2.jpg') center/cover fixed;
text-align:center;
}

.campaign h2{
font-size:55px;
margin-bottom:20px;
}

/* BRANCHES */
.branch-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:40px;
}

@media (max-width:768px){
.branch-grid{
grid-template-columns:1fr;
}
}
/* ============================= */
/* PREMIUM BRANCH CARDS */
/* ============================= */

.branch-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    cursor: pointer;
    transition: .5s;
    border: 1px solid rgba(255,255,255,0.1);
}

.branch-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: .6s;
}

.branch-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 25px;
    border: 2px solid transparent;
    transition: .4s;
}

.branch-card:hover::after {
    border-color: var(--primary);
    box-shadow: 0 0 30px var(--primary);
}

.branch-card:hover img {
    transform: scale(1.1);
}

.branch-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 35px;
    background: linear-gradient(to top,rgba(0,0,0,.95),transparent);
}

.branch-overlay h3 {
    font-size: 22px;
}

.branch-overlay p {
    font-size: 14px;
    color: #ccc;
}




/* ============================= */
/* FLOATING BURGERS PRO VERSION */
/* ============================= */

.floating-burgers {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0; /* içerik üstte kalacak */
}

.burger {
    position: absolute;
    top: -80px;
    font-size: 30px;
    opacity: 0.35; /* Daha saydam */
    animation: fall linear forwards;
    will-change: transform;
}

/* Daha akıcı animasyon */
@keyframes fall {
    from {
        transform: translateY(-80px) rotate(0deg);
    }
    to {
        transform: translateY(110vh) rotate(360deg);
    }
}

/* ============================= */
/* TOGGLE BUTTON FIXED */
/* ============================= */

.burger-toggle {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(135deg,#111,#222);
    color: #fff;
    border: none;
    padding: 14px 26px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    z-index: 9999; /* diğer butonlarla çakışmaz */
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    transition: all .3s ease;
}

.burger-toggle:hover {
    background: linear-gradient(135deg,#d62828,#ff4d4d);
    transform: translateY(-3px);
}

/* Mobile */
@media(max-width:768px){
    .burger {
        font-size: 20px;
    }

    .burger-toggle {
        bottom: 15px;
        right: 15px;
        padding: 10px 18px;
        font-size: 14px;
    }
}

/* ============================= */
/* PREMIUM TYPOGRAPHY SYSTEM */
/* ============================= */

h1, h2, h3 {
    letter-spacing: -1px;
    line-height: 1.1;
}





/* ============================= */
/* PREMIUM UIVERSE STYLE TOGGLE */
/* ============================= */

.toggle-switch {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 38px;
    z-index: 9999;
}

.toggle-switch input {
    display: none;
}

.slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: #222;
    border-radius: 50px;
    transition: .4s;
    box-shadow: inset 0 0 10px rgba(0,0,0,.5);
}

.slider::before {
    content: "🍔";
    position: absolute;
    height: 30px;
    width: 30px;
    left: 4px;
    top: 4px;
    background: linear-gradient(135deg,#ff3c3c,#ff8c00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: .4s;
    box-shadow: 0 5px 15px rgba(255,60,60,.4);
}

input:checked + .slider {
    background: linear-gradient(135deg,#ff3c3c,#ff8c00);
}

input:checked + .slider::before {
    transform: translateX(32px);
    background: #111;
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    outline: none;
    background: #1a1a1a;
    color: #fff;
}

.newsletter-form button {
    padding: 0 20px;
    border: none;
    background: #ff3c00;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter-form button:hover {
    background: #ff5722;
}

.contact-info {
    margin-top: 20px;
    font-size: 14px;
    color: #aaa;
}

.contact-info i {
    margin-right: 8px;
    color: #ff3c00;
}

/* BOTTOM */



.legal-links a {
    color: #aaa;
    margin-left: 20px;
    text-decoration: none;
    transition: 0.3s;
}

.legal-links a:hover {
    color: #ff3c00;
}

/* MENU HERO */

/* HERO */

/* ============================= */
/* MENU PAGE */
/* ============================= */
/* MENU TITLE */

@font-face{
font-family:'LocaleHead';
src:url('/assets/fonts/amsi-pro-aks-condensed-w03-blk.otf') format('opentype');
font-weight:normal;
font-style:normal;
font-display:swap;
}

.sub-hero h1{

font-family:'LocaleHead', sans-serif;

font-size:clamp(60px,10vw,110px);
letter-spacing:2px;
text-transform:capitalize;

background:linear-gradient(
120deg,
#ffffff,
#FFB400,
#b3b3b3,
#ffffff
);

background-size:200% auto;

background-clip:text;
-webkit-background-clip:text;

color:transparent;
-webkit-text-fill-color:transparent;

animation:menuShine 6s linear infinite;

position:relative;

}

/* gradient animasyonu */

@keyframes menuShine{
to{
background-position:200% center;
}
}

/* ALT IŞIK ÇİZGİSİ */

.sub-hero h1::after{

content:"";

position:absolute;

left:50%;
bottom:-18px;

transform:translateX(-50%);

width:140px;
height:6px;

background:radial-gradient(circle,rgba(255,180,0,.8),transparent);

filter:blur(10px);

}

.sub-hero{
padding-top:80px;
min-height:60vh;

display:flex;
align-items:center;
justify-content:center;
flex-direction:column;

text-align:center;

background:
radial-gradient(circle at 50% 30%, rgba(255,180,0,0.25), transparent 60%),
linear-gradient(180deg,#0f0f0f 0%, #000 100%);
}
/* HERO */

.menu-hero{
height:60vh;

background:
linear-gradient(rgba(0,0,0,.7),rgba(0,0,0,.7)),
url('../assets/images/menu-bg.jpg') center/cover;

display:flex;
flex-direction:column;
justify-content:center;
align-items:center;

color:#fff;
text-align:center;
}

.menu-hero h1{
font-size:70px;
letter-spacing:5px;
font-weight:900;
}

.menu-hero p{
font-size:20px;
margin-top:10px;
opacity:.8;
}


/* CATEGORY */

.menu-categories{
display:flex;
justify-content:center;
gap:20px;
padding:40px 0;
background:#111;
}

.menu-categories button{
padding:12px 28px;

border:1px solid #333;
background:transparent;

color:#fff;
cursor:pointer;

transition:all .25s ease;
}

.menu-categories button.active,
.menu-categories button:hover{
background:#FFB400;
border-color:#FFB400;
}


/* SECTION */

.menu-section{
background:#0e0e0e;
padding:80px 6%;
}


/* GRID */

.menu-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:55px;
}


/* CARD */

.menu-card{

background:rgba(255,255,255,0.05);

border-radius:20px;
overflow:hidden;

border:1px solid rgba(255,255,255,0.08);

transition:
transform .25s ease,
box-shadow .25s ease,
border-color .25s ease;

will-change:transform;
}

.menu-card:hover{

transform:translateY(-6px);

border-color:#FFB400;

box-shadow:
0 10px 35px rgba(0,0,0,.45),
0 0 0 1px rgba(255,180,0,.35);

}


/* IMAGE */

.menu-card img{

width:100%;
height:230px;

object-fit:cover;
display:block;

transition:transform .35s ease;
}

.menu-card:hover img{
transform:scale(1.05);
}


/* CONTENT */

.menu-info{
padding:25px;
}

.menu-info h3{
font-size:22px;
margin-bottom:15px;
}

.menu-info p{
font-size:14px;
color:var(--soft);
line-height:1.6;
}


/* RESPONSIVE */

@media(max-width:992px){

.menu-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

.menu-grid{
grid-template-columns:1fr;
}

.menu-hero h1{
font-size:50px;
}

}

.menu-category{
margin-bottom:120px;
}

.menu-category h2{
font-family:'Anton',sans-serif;
font-size:38px;
letter-spacing:3px;
margin-bottom:50px;

display:flex;
align-items:center;
gap:15px;
}

.menu-category h2 i{
color:#FFB400;
}
/* ===== franchise SECTION ===== */
.lb-franchise-cta{
    position: relative;
    width: 100%;
    min-height: 520px;
    background-image: url("/assets/images/local-hero.png");
    background-size: cover;
    background-position: center;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* overlay */
.lb-franchise-cta::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.65);
    backdrop-filter:blur(3px);
}

/* içerik kutusu */
.lb-franchise-box{
    position:relative;
    z-index:2;
    max-width:900px;
    padding:80px 30px;
    text-align:center;
}

/* başlık */
.lb-franchise-title{
    font-family:'Bebas Neue', sans-serif;
    font-size:64px;
    letter-spacing:3px;
    color:white;
    margin-bottom:35px;
}

/* açıklama */
.lb-franchise-text{
    font-family:'Poppins', sans-serif;
    font-size:20px;
    line-height:1.9;
    color:#eeeeee;
    margin-bottom:50px;
}

/* buton */
.lb-franchise-button{
    display:inline-block;
    padding:18px 55px;
    font-family:'Bebas Neue', sans-serif;
    font-size:22px;
    letter-spacing:2px;
    background:#d62828;
    color:white;
    text-decoration:none;
    border-radius:60px;
    transition:all .3s ease;
}

.lb-franchise-button:hover{
    background:#ff3c3c;
    transform:translateY(-3px);
}
/*html {
    cursor: none !important;
} */

html,
body,
a,
button,
input,
textarea,
select,
label,
[role="button"],
[class*="btn"],
[class*="card"]{
cursor:none;
}

.custom-cursor{
pointer-events:none;
user-select:none;
}

body {
    caret-color: transparent;
}

.hero{
    position:relative;
    height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

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

.hero-overlay{
    pointer-events:none;
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:linear-gradient(
        to bottom,
        rgba(0,0,0,0.6),
        rgba(0,0,0,0.85)
    );
    z-index:-1;
}

/* ============================= */
/* ULTRA PREMIUM BRANCH TITLE */
/* ============================= */

.section-title{
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 8vw, 90px);
    letter-spacing: 4px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 70px;

    background: linear-gradient(
        120deg,
        #ffffff 0%,
        #ff3c3c 30%,
        #ff8c00 60%,
        #ffffff 100%
    );
    background-size: 200% auto;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: shimmerTitle 6s linear infinite;

    text-shadow: 
        0 5px 20px rgba(0,0,0,0.6),
        0 15px 40px rgba(255,60,60,0.3);

    position: relative;
}

/* Gradient hareketi */
@keyframes shimmerTitle {
    to {
        background-position: 200% center;
    }
}

/* Alt glow efekti */
.section-title::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:-18px;
    transform:translateX(-50%);
    width:160px;
    height:8px;
    background: radial-gradient(circle, rgba(255,60,60,.7), transparent);
    filter:blur(14px);
}

.feedback-area{
    text-align:center;
}

.feedback-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:14px 28px;
    font-size:16px;
    font-weight:600;
    text-decoration:none;
    color:#fff;
    background:linear-gradient(45deg,#ff7a00,#ff3c00);
    border-radius:50px;
    box-shadow:0 8px 25px rgba(255,100,0,0.4);
    transition:all 0.3s ease;
}

.feedback-btn i{
    font-size:18px;
}

.feedback-btn:hover{
    transform:translateY(-3px) scale(1.05);
    box-shadow:0 12px 30px rgba(255,100,0,0.6);
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

/* Firefox */
html {
    scrollbar-width: none;
}

/* Internet Explorer */
body {
    -ms-overflow-style: none;
}

@font-face{
font-family:'AmsiProBlack';
src:url('/assets/fonts/amsi-pro-aks-condensed-w03-blk.woff2') format('woff2');
font-weight:900;
font-style:normal;
font-display:swap;
}

.menu-lazy{
opacity:0;
transition:opacity .4s ease;
}

.menu-lazy.loaded{
opacity:1;
}

/*BAYİ OL BUTONU */

.franchise-flow-btn{
    position:fixed;
    bottom:20px;
    left:20px;
    display:flex;
    align-items:center;
    gap:10px;
    padding:12px 20px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    font-size:14px;
    color:#fff;
    z-index:9999;

    /* daha premium gradient */
    background: linear-gradient(135deg,#ff3c3c,#ff6a00,#ff8c00);

    /* derin shadow */
    box-shadow:
        0 10px 30px rgba(0,0,0,0.6),
        0 0 15px rgba(255,100,0,0.4);

    overflow:hidden;
    transition: all 0.3s ease;
}

/* ICON */
.franchise-flow-btn .icon i{
    font-size:16px;
    transition:0.3s;
}

/* IŞIK AKIŞI */
.franchise-flow-btn::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:100%;
    height:100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.6),
        transparent
    );
    transition:0.6s;
}

/* HOVER */
.franchise-flow-btn:hover::before{
    left:120%;
}

.franchise-flow-btn:hover{
    transform: translateY(-3px) scale(1.06);

    box-shadow:
        0 15px 40px rgba(0,0,0,0.8),
        0 0 25px rgba(255,120,0,0.8);
}

/* icon hafif zıplasın */
.franchise-flow-btn:hover .icon i{
    transform: scale(1.2) rotate(-5deg);
}

/* NEFES EFEKTİ (ASIL WOW) */
@media (max-width:768px){
    .franchise-flow-btn{
        animation: breathe 3s ease-in-out infinite;
    }
}

@keyframes breathe{
    0%{
        transform: scale(1);
        box-shadow:
            0 0 0 0 rgba(255,120,0,0.4);
    }
    50%{
        transform: scale(1.05);
        box-shadow:
            0 0 25px 5px rgba(255,120,0,0.5);
    }
    100%{
        transform: scale(1);
        box-shadow:
            0 0 0 0 rgba(255,120,0,0.4);
    }
}