/* 🔥 RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 🔥 ROOT COLORS */
:root {
  --black: #0B0B0B;
  --orange: #FF4D00;
  --red: #FF1A1A;
  --yellow: #FFC300;
  --white: #FFFFFF;
  --grey: #1A1A1A;
}

@font-face {
  font-family: 'Blanka';
  src: url('../assets/fonts/Blanka-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

/* GLOBAL */
body {
  font-family:'Poppins', sans-serif;
  /*background: linear-gradient(135deg, #ffffff, #7c3806, #1a1212);*/
  background: rgba(196, 154, 108);
  color: var(--black);
}

/* =========================
   NAVBAR SUPPORT
========================= */

.navbar{

    position:sticky;

    top:0;

    z-index:99999;

    backdrop-filter:blur(12px);

    background:
    rgba(0,0,0,.55);

    transition:.3s;
}

.navbar.shrink{

    background:
    rgba(0,0,0,.95);

    box-shadow:
    0 10px 30px rgba(0,0,0,.5);
}


h1,
h2,
h3,
.section-title,
.coming-soon,
.brand-tagline{
    font-family:'Anton', sans-serif;
}

/* 🔥 NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 50px;
  background: transparent;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.navbar.shrink {
  padding: 10px 50px;
  background: rgba(0, 0, 0, 0.95);
  box-shadow: 0 5px 20px rgba(0,0,0,0.6);
}

.logo {
  font-family: 'Anton', sans-serif;
  font-size: 32px;
  color: var(--orange);
  transition: 0.3s;
}

.navbar.shrink .logo {
  font-size: 24px;
}

.navbar a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  transition: 0.3s;
}

.navbar.shrink a {
  font-size: 14px;
}

#nav-menu a {
  position: relative;
  display: inline-block;
}

#nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;

  width: 0%;
  height: 3px;

  background: linear-gradient(
    90deg,
    #FF1A1A,
    #FF4D00,
    #FFC300
  );

  border-radius: 10px;

  transition: width 0.3s ease;
}

#nav-menu a:hover::after {
  width: 100%;
}

#nav-menu a:hover::after {
  box-shadow:
    0 0 8px #FF4D00,
    0 0 15px #FF1A1A,
    0 0 25px #FFC300;
}

#nav-menu a:hover::after {
  animation: flameFlicker 0.3s infinite alternate;
}

@keyframes flameFlicker {
  from {
    opacity: 0.8;
    transform: scaleX(1);
  }
  to {
    opacity: 1;
    transform: scaleX(1.05);
  }
}


/* 🔥 BUTTON */
.btn-primary {
  background: linear-gradient(90deg, #fff72d, #ff8c04, #ff1700);
  border: none;
  padding: 12px 25px;
  color: black;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
}

.btn-primary:hover {
  box-shadow: 0 0 15px #FF4D00, 0 0 30px #FF1A1A;
  transform: scale(1.05);
}

.navbar.shrink .btn-primary {
  padding: 8px 15px;
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* 🔥 COMMON */
.layer {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  pointer-events: none;
  will-change: transform;
}

/* 🔥 BACKGROUND */
.bg {
  background: url('../images/bg2.png') center/cover no-repeat;
  z-index: 1;
}

/* 🔥 FIRE */
.fire {
  background: url('../images/fire.png') center/cover no-repeat;
  z-index: 99999;
  opacity: 0.5;
}

/* 🔥 LOGO (FIXED POSITION) */
/* 🔥 LOGO VIDEO LAYER */
.hero-logo {
  position: absolute;
  top: 35%;
  left: 40%;
  transform: translate(-50%, -50%); /* ✅ perfect center */
  z-index: 3;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px; /* spacing between elements */

  pointer-events: none;
}



/* 🎥 VIDEO STYLE */
.logo-video {
  width: clamp(50px, 10vw, 1350px);
  aspect-ratio: 1 / 1;
  height: auto;

  /* 🔥 REMOVE DARK BACKGROUND (HACK) */
  mix-blend-mode: screen;

  filter: brightness(1.2) contrast(1.3);
}

/* 🔥 FOOD (ABOVE LOGO) */
.food {
  /*background: url('../images/food.png') center/contain no-repeat;*/
  z-index: 9999; /* ✅ above logo */
}

/* 🔥 OVERLAY (DON’T BLOCK LOGO TOO MUCH) */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2); /* 🔥 reduced from 0.6 */
  z-index: 5;
}

/* 🔥 CONTENT */
/* 🔥 HERO CONTENT */
.hero-content {
  position: absolute;
  top: 80%;
  left: 40%;   /* 🔥 LEFT SIDE */
  transform: translateY(-50%);
  z-index: 10;

  text-align: left;  /* 🔥 LEFT ALIGN */
  max-width: 500px;
}

.logo-style{
    margin: 0px;
    transform: translate(60px,230px);
    z-index: 99999;
  }
  .burgerimage{
    transform: translate(70px,80px);
  }

/* 🔥 TEXT BASE */
.flame-text {
  font-family: 'Blanka', sans-serif;
  font-size: clamp(8px, 2vw, 8px);
  letter-spacing: 2px;   
  background: linear-gradient( 70deg, #fff72d, #ff8c04, #ff1700);
  -webkit-background-clip: text;
  color: transparent;

  text-shadow:
    0 0 8px rgba(255,255,255,0.3);

  opacity: 0;
  
  animation: slideFade 1s ease forwards;
  transform: translateX(-60px) rotate(-10deg);
}

/* 🔥 SUBTEXT */
.flame-sub {
  margin-top: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.75);

  letter-spacing: 1px;
  line-height: 1.6;

  opacity: 0;
  transform: translate(-40px,300px);

  animation: slideFade 1.2s ease forwards;
}

@keyframes slideFade {
  to {
    transform: translate(0px, -100px);
    opacity: 1;
  }
}

.hero-content::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  margin-top: 15px;

  /*background: linear-gradient(
    90deg,
    #FFC300,
    #FF4D00
  );

  border-radius: 10px;

  box-shadow:
    0 0 10px #FFC300,
    0 0 20px #FF4D00;

  opacity: 0;
  transform: translateX(-40px);

  animation: slideFade 1.4s ease forwards;*/
}


/* 🔥 LOGO IMAGE .hero-logo img {
  width: clamp(300px, 45vw, 650px);  🔥 bigger + responsive 
  max-width: 90%;
  will-change: transform;
  filter: drop-shadow(0 0 30px rgba(255, 77, 0, 0.9));
}

.hero-logo img {
  width: clamp(250px, 40vw, 600px);
}
@media (max-width: 768px) {
  .hero-logo img {
    width: 250px;
  }
}
*/

/* 🔥 PARTICLES CONTAINER */
.particles {
  position: fixed;
  inset: 0;
  z-index: 7;
  pointer-events: none;
  overflow: hidden;
}

/* 🔥 PARTICLE */
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #FF4D00;
  border-radius: 50%;
  opacity: 0.8;
  animation: floatUp linear infinite;
}
/* 🔥 HEAT LAYER */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 8;

  background: radial-gradient(
    circle at center,
    rgba(255, 77, 0, 0.15),
    transparent 70%
  );

  mix-blend-mode: screen;
  animation: heatWave 3s infinite ease-in-out;
}

@keyframes heatWave {
  0% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.05); opacity: 0.6; }
  100% { transform: scale(1); opacity: 0.3; }
}
/* 🔥 ANIMATION */
@keyframes floatUp {
  from {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  to {
    transform: translateY(-200px) scale(0.5);
    opacity: 0;
  }
}

/* 🔥 SPARKS */
.spark {
  position: absolute;
  width: 6px;
  height: 6px;
  background: radial-gradient(circle, #FFC300, #FF4D00);
  border-radius: 50%;
  pointer-events: none;
  box-shadow: 0 0 10px #FF4D00;
  animation: sparkMove 1s ease-out forwards;
}

@keyframes sparkMove {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(var(--x), var(--y)) scale(0.5);
    opacity: 0;
  }
}

/* 🌫️ SMOKE */
.smoke-particle {
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.4); /* 🔥 brighter */
  border-radius: 50%;
  filter: blur(15px);
  pointer-events: none;
  animation: smokeRise 2s ease-out forwards;
}

.particles,
.sparks,
.smoke {
  position: fixed;   /* 🔥 KEY FIX */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;     /* 🔥 ABOVE EVERYTHING */
}

@keyframes smokeRise {
  0% {
    transform: translateY(0) scale(0.8);
    opacity: 0.6;
  }
  100% {
    transform: translateY(-80px) scale(1.5);
    opacity: 0;
  }
}

/* 🍔 MENU */
.menu {
  padding: 60px;
  color: white;
}

.menu-grid {
  display: flex;
  gap: 20px;
}

/* 🔥 CARD */
.card {
  background: var(--grey);
  padding: 20px;
  border-radius: 10px;                                         
  transition: 0.3s;
  cursor: pointer;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 0 20px rgba(255, 77, 0, 0.6);
}

.card img {
  width: 100%;
  border-radius: 10px;
  transition: 0.3s;
}

.card:hover img {
  transform: scale(1.1);
}

/* 🔥 DEALS */
.deals {
  padding: 60px;
  text-align: center;
}

.deal-box {
  background: linear-gradient(90deg, #FF1A1A, #FF4D00);
  padding: 30px;
  border-radius: 10px;
}

/* 🧠 ABOUT */
.about {
  padding: 60px;
  text-align: center;
}

/* 🔥 CTA */
.cta {
  padding: 60px;
  text-align: center;
}

/* ⚫ FOOTER */
footer {
  padding: 20px;
  text-align: center;
  background: #000;
}

/* 🔥 FADE-UP ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* 🍔 HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: white;
  margin: 4px 0;
  transition: 0.3s;
}

/* 🔥 NAV MENU */
#nav-menu {
  display: flex;
  align-items: center;
}

/* 🔥 OVERLAY */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* 🍔 HAMBURGER ANIMATION */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* 📱 MOBILE */
@media (max-width: 768px) {

  .navbar {
    flex-direction: column;
    gap: 10px;
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero h1 {
    font-size: 12px;
  }

  .menu-grid {
    flex-direction: column;
  }

  .menu, .deals, .about, .cta {
    padding: 30px 20px;
  }

  .hamburger {
    display: flex;
  }

  .desktop-btn {
    display: none;
  }

  #nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    background: #0B0B0B;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.4s ease;
  }

  #nav-menu.active {
    right: 0;
  }

  #nav-menu a {
    margin: 15px 0;
    font-size: 20px;
  }

  .mobile-btn {
    margin-top: 20px;
  }
}

/* =========================
   SETTINGS MENU
========================= */

.settings-menu-wrap{
    position:relative;
    margin-left:15px;
}

.settings-btn{
    width:48px;
    height:48px;
    border:none;
    border-radius:50%;
    background:#111;
    color:#ff6a00;
    font-size:20px;
    cursor:pointer;
    border:1px solid rgba(255,120,0,0.25);
    transition:0.3s;
}

.settings-btn:hover{
    transform:rotate(90deg);
    box-shadow:0 0 20px rgba(255,100,0,0.35);
}

.settings-dropdown{
    position:absolute;
    top:60px;
    right:0;
    width:220px;
    background:#111;
    border-radius:18px;
    overflow:hidden;
    border:1px solid rgba(255,120,0,0.15);

    opacity:0;
    visibility:hidden;
    transform:translateY(10px);

    transition:0.3s;
    z-index:9999;
}

.settings-dropdown.active{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.settings-user{
    padding:18px;
    color:#ff7a00;
    font-weight:600;
    border-bottom:1px solid rgba(255,255,255,0.08);
}

.settings-dropdown a{
    display:block;
    padding:16px 18px;
    color:white;
    text-decoration:none;
    transition:0.3s;
}

.settings-dropdown a:hover{
    background:#1b1b1b;
    color:#ff7a00;
}

.floaing-cart{
  z-index: 99999999;
}

/* =========================
   COOKIE CONSENT
========================= */

.cookie-banner{
    position:fixed;
    bottom:20px;
    left:50%;
    transform:translateX(-50%);

    width:min(95%,700px);

    background:#111;
    border:1px solid rgba(255,120,0,0.2);
    border-radius:20px;

    padding:20px;

    z-index:999999;

    box-shadow:
        0 0 25px rgba(255,100,0,0.25);

    display:none;
}

.cookie-banner.show{
    display:block;
    animation:cookieSlide .4s ease;
}

@keyframes cookieSlide{
    from{
        opacity:0;
        transform:translate(-50%,30px);
    }

    to{
        opacity:1;
        transform:translate(-50%,0);
    }
}

.cookie-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.cookie-text{
    color:white;
    line-height:1.6;
    flex:1;
    font-family:'Poppins',sans-serif;
    font-size:14px;
}

.cookie-buttons{
    display:flex;
    gap:10px;
}

.cookie-btn{
    border:none;
    padding:12px 20px;
    border-radius:10px;
    cursor:pointer;
    font-weight:600;
    transition:.3s;
}

.cookie-btn.accept{
    background:linear-gradient(90deg,#fff72d,#ff8c04,#ff1700);
    color:black;
}

.cookie-btn.reject{
    background:#222;
    color:white;
}

.cookie-btn:hover{
    transform:translateY(-2px);
}

@media(max-width:768px){

    .cookie-content{
        flex-direction:column;
        align-items:flex-start;
    }

    .cookie-buttons{
        width:100%;
    }

    .cookie-btn{
        flex:1;
    }
}

/* ==========================
   CHAR&CO BRAND REVEAL
========================== */

.brand-modal{
    position:fixed;
    inset:0;

    display:none;
    justify-content:center;
    align-items:center;

    z-index:9999999;
}

.brand-modal.show{
    display:flex;
}

.brand-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.85);
    backdrop-filter:blur(8px);
}

.brand-popup{
    position:relative;

    width:min(90%,820px);
    

    background:
        linear-gradient(
            145deg,
            #111,
            #1b1b1b
        );

    border:2px solid rgba(255,140,0,.5);

    border-radius:30px;

    padding:35px;

    text-align:center;

    z-index:2;

    animation:popupRise .6s ease;

    box-shadow:
        0 0 30px rgba(255,100,0,.3),
        0 0 80px rgba(255,100,0,.15);
}

@keyframes popupRise{
    from{
        opacity:0;
        transform:translateY(40px) scale(.95);
    }

    to{
        opacity:1;
        transform:none;
    }
}

.brand-close{
    position:absolute;
    top:20px;
    right:25px;

    border:none;
    background:none;

    color:white;

    font-size:28px;

    cursor:pointer;
}

.brand-logo img{
     max-width:220px;
    width:100%;
}

.brand-tagline{
    margin-top:12px;

    color:#ff9500;

    letter-spacing:4px;

    font-size:13px;

    font-family:'Poppins';
}

.brand-popup h2{
    color:white;

    margin:12px 0 10px;
    font-size:34px;

    font-family:'Bebas Neue';
}

.brand-text{
    color:#ddd;

    font-family:'Poppins';

     line-height:1.5;
    max-width:460px;
    margin:0 auto;
}

.brand-features{
    
    margin:25px 0;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
}

.feature{
    color:white;
    font-family:'Poppins';
    display:flex;
    flex-direction: row;
    gap:8px;
    align-items:center;
}

.feature span{
    font-size:8px;
}

.coming-soon{
    font-family:'Bebas Neue';

    font-size:60px;

    background:
        linear-gradient(
            90deg,
            #fff72d,
            #ff8c04,
            #ff1700
        );

    -webkit-background-clip:text;
    color:transparent;

    margin-top:20px;
}

.brand-quote{
    margin-top:20px;

    color:#bbb;

    font-style:italic;

    font-family:'Poppins';
}

.brand-actions{
    margin-top:35px;

    display:flex;

    gap:15px;

    justify-content:center;

    flex-wrap:wrap;
}

.discover-btn,
.continue-btn{

    padding:14px 25px;

    border:none;

    border-radius:12px;

    cursor:pointer;

    font-weight:600;

    transition:.3s;
}

.discover-btn{
    background:
        linear-gradient(
            90deg,
            #fff72d,
            #ff8c04,
            #ff1700
        );

    color:black;
}

.continue-btn{
    background:#222;
    color:white;
}

.discover-btn:hover,
.continue-btn:hover{
    transform:translateY(-3px);
}

@media(max-width:768px){

    .brand-popup{
        padding:40px 25px;
    }

    .coming-soon{
        font-size:42px;
    }

    .brand-popup h2{
        font-size:30px;
    }
}

.brand-popup::before{
    content:"";
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            rgba(0,0,0,.72),
            rgba(0,0,0,.82)
        ),
        url('../images/charandco-popup-bg.png')
        center/cover no-repeat;

    border-radius:30px;
    z-index:-1;
}

/* ==========================
   FOOTER
========================== */

.site-footer{

    position:relative;

    margin-top:100px;

    background:
        linear-gradient(
            to top,
            #050505,
            #0f0f0f
        );

    border-top:1px solid rgba(255,120,0,.15);

    overflow:hidden;
}

/* FIRE GLOW */

.site-footer::before{

    content:"";

    position:absolute;

    top:-150px;
    left:50%;

    transform:translateX(-50%);

    width:500px;
    height:300px;

    background:

    radial-gradient(
        circle,
        rgba(255,100,0,.25),
        transparent 70%
    );

    pointer-events:none;
}

.footer-container{

    max-width:1300px;

    margin:auto;

    padding:70px 40px;

    display:grid;

    grid-template-columns:
        2fr
        1fr
        1fr
        1fr;

    gap:50px;
}

.footer-brand p{

    margin-top:20px;

    color:#aaa;

    font-family:'Poppins';

    max-width:300px;

    line-height:1.7;
}

.footer-logo{

    width:220px;

    max-width:100%;
}

.footer-column h3{

    color:#ff8c04;

    margin-bottom:18px;

    font-size:18px;

    font-family:'Poppins';
}

.footer-column a,
.footer-column p{

    display:block;

    margin-bottom:12px;

    text-decoration:none;

    color:#bdbdbd;

    font-family:'Poppins';

    transition:.3s;
}

.footer-column a:hover{

    color:#ff8c04;

    transform:translateX(4px);
}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    padding:25px;

    text-align:center;

    color:#888;

    font-family:'Poppins';

    font-size:14px;
}

.footer-bottom span{

    display:block;

    margin-top:8px;

    color:#ff8c04;
}

@media(max-width:900px){

    .footer-container{

        grid-template-columns:1fr;

        text-align:center;
    }

    .footer-brand p{

        margin:auto;
        margin-top:20px;
    }

    .footer-logo{

        margin:auto;
        display:block;
    }
}


.featured-deal{

    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;

    gap:50px;

    padding:100px 80px;

    max-width:1300px;
    margin:auto;
}

.deal-badge{

    color:#ff8c04;
    font-weight:600;
    letter-spacing:2px;
}

.featured-deal h2{

    color:white;
    font-size:60px;
    margin:15px 0;
}

.featured-deal p{

    color:#ccc;
    line-height:1.8;
    max-width:500px;
}

.deal-price{

    margin:25px 0;

    font-size:50px;

    font-weight:bold;

    background:linear-gradient(
        90deg,
        #fff72d,
        #ff8c04,
        #ff1700
    );

    -webkit-background-clip:text;
    color:transparent;
}

.deal-image img{

    width:100%;
    max-width:550px;
}


.brand-story{

    display:grid;
    grid-template-columns:1fr 1fr;

    gap:50px;

    max-width:1300px;

    margin:auto;

    padding:120px 80px;
}

.story-left h2{

    color:white;
    font-size:60px;
    margin-bottom:20px;
}

.story-left p{

    color:#ccc;
    line-height:1.9;
}

.story-right{

    display:flex;
    gap:20px;
}

.story-card{

    flex:1;

    background:#111;

    border:1px solid rgba(255,120,0,.15);

    border-radius:20px;

    padding:30px;

    text-align:center;

    color:white;
}

.final-cta{

    position:relative;

    margin:100px auto;

    max-width:1300px;

    height:450px;

    border-radius:35px;

    overflow:hidden;

    background:
    url('../images/bg2.png')
    center/cover;
}

.cta-overlay{

    position:absolute;
    inset:0;

    background:
    linear-gradient(
        rgba(0,0,0,.45),
        rgba(0,0,0,.75)
    );
}

.cta-content{

    position:relative;
    z-index:2;

    height:100%;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:40px;
}

.cta-content span{

    color:#ff8c04;
    letter-spacing:3px;
}

.cta-content h2{

    color:white;

    font-size:70px;

    max-width:800px;

    margin:20px 0;
}

.cta-content p{

    color:#ddd;

    margin-bottom:30px;
}


.contact-page{


background:#111111;

color:white;

font-family:'Poppins',sans-serif;


}

/* HERO */

.contact-hero{


min-height:60vh;

display:flex;

justify-content:center;

align-items:center;

text-align:center;

background:
url('../images/franchise-bg.jpg')
center/cover;

position:relative;


}

.hero-overlay{


position:absolute;

inset:0;

background:
rgba(0,0,0,.65);


}

.contact-hero-content{


position:relative;

z-index:2;

max-width:800px;

padding:40px;


}

.contact-hero-content span{


color:#ff8c04;

letter-spacing:4px;


}

.contact-hero-content h1{


font-family:'Anton';

font-size:90px;

margin:20px 0;


}

.contact-hero-content p{


color:#d5d5d5;

line-height:1.8;


}

/* INFO */
.contact-info{


padding:100px 0;


}

.contact-grid{


max-width:1200px;

margin:auto;

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(280px,1fr));

gap:30px;

padding:0 20px;


}

.info-card{


background:#1b1b1b;

border-radius:30px;

padding:50px 30px;

text-align:center;

border:1px solid rgba(255,255,255,.05);

transition:.3s;


}

.info-card:hover{


transform:translateY(-5px);


}

.info-card .icon{


font-size:55px;

margin-bottom:20px;


}

.info-card h3{


font-size:28px;

margin-bottom:10px;

color:white;


}

.info-card p{


color:#bdbdbd;


}


.form-card{


max-width:1000px;

margin:auto;

background:#1b1b1b;

border-radius:35px;

padding:60px;

border:1px solid rgba(255,255,255,.05);


}

.contact-form{


display:grid;

grid-template-columns:
repeat(2,1fr);

gap:20px;


}

.contact-form textarea{


grid-column:1/-1;

min-height:180px;


}

.contact-form button{


grid-column:1/-1;


}

.contact-form input,
.contact-form select,
.contact-form textarea{


width:100%;

background:#121212;

border:1px solid rgba(255,255,255,.08);

border-radius:15px;

padding:18px;

color:white;

font-size:15px;


}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{


outline:none;

border-color:#ff8c04;


}

@media(max-width:768px){


.contact-form{

    grid-template-columns:1fr;
}

.contact-form textarea,
.contact-form button{

    grid-column:auto;
}

.form-card{

    padding:30px;
}


}
.faq-grid{


max-width:1200px;

margin:auto;

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(300px,1fr));

gap:30px;

padding:0 20px;


}

.faq-card{


background:#1b1b1b;

border-radius:25px;

padding:35px;

border:1px solid rgba(255,255,255,.05);

transition:.3s;


}

.faq-card:hover{


transform:translateY(-5px);


}

.faq-card h3{


color:white;

margin-bottom:15px;


}

.faq-card p{


color:#aaa;

line-height:1.7;


}



/* ==========================================
COMPLETE MOBILE OVERRIDE
========================================== */

@media screen and (max-width:768px){

/* ==========================
NAVBAR
========================== */

.navbar{


padding:15px 15px;

display:flex;

justify-content:space-between;

align-items:center;

z-index: 99999999;


}

.navbar img{


width:75px !important;
height:auto !important;


}

.desktop-btn{


display:none;


}

.settings-menu-wrap{


margin-left:0;


}

.settings-btn{


width:40px;
height:40px;


}

.overlay{

    position:fixed;

    inset:0;

    background:
    rgba(0,0,0,.6);

    opacity:0;

    visibility:hidden;

    transition:.3s;

    z-index: 99989;
}

.overlay.active{

    opacity:1;

    visibility:visible;
}

/* ==========================
MOBILE MENU
========================== */

#nav-menu{


position:fixed;

top:0;
right:-100%;

width:80%;
height:100vh;

background:#111;

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

gap:25px;

transition:.4s ease;

z-index:99999;


}

#nav-menu.active{


right:0;


}

#nav-menu a{


font-size:22px;


}

/* ==========================
HERO
========================== */

.hero{


min-height:100vh;

height:100vh;

position:relative;

overflow:hidden;

padding:0;


}

/* LOGO + BURGER */

.hero-logo{


position:absolute;

top:50%;
left:50%;

transform:
translate(-50%,-50%);

z-index:5;

width:100%;

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;


}

.logo-style{


margin:0;

transform:none;


}

.logo-style img{


width:260px !important;

max-width:90%;


}

/* BURGER OVERLAPS LOGO */

.burgerimage{


margin-top:-90px;

transform:none;


}

.burgerimage img{


width:340px !important;

max-width:100%;


}

/* HERO CONTENT */

.hero-content{


position:absolute;

bottom:30px;

left:50%;

transform:translateX(-50%);

width:90%;

text-align:center;

z-index:10;


}

.flame-text{


font-size:32px;


}

.flame-sub{


font-size:14px;

transform:none;


}

/* ==========================
MENU
========================== */

.menu{


padding:70px 15px;


}

.menu-grid{


display:flex;

flex-direction:column;

gap:20px;


}

.card{


width:100%;


}

/* ==========================
PRODUCT DRAWER
========================== */

.drawer-content{


width:100%;


}

/* ==========================
HOT DEALS
========================== */

.deals{


padding:70px 20px;


}

.deal-box{


width:100%;


}

/* ==========================
FEATURED DEAL
========================== */

.featured-deal{


display:grid;

grid-template-columns:1fr;

text-align:center;

gap:40px;

padding:70px 20px;


}

.featured-deal h2{


font-size:42px;


}

.deal-price{


font-size:38px;


}

.deal-image img{


width:100%;

max-width:320px;


}

/* ==========================
BRAND STORY
========================== */

.brand-story{


display:grid;

grid-template-columns:1fr;

gap:40px;

padding:70px 20px;


}

.story-left{


text-align:center;


}

.story-left h2{


font-size:42px;


}

.story-right{


display:flex;

flex-direction:column;


}

/* ==========================
ABOUT
========================== */

.about{


padding:70px 20px;


}

.about h2{


font-size:42px;


}

/* ==========================
CTA
========================== */

.final-cta{


height:auto;

margin:60px 15px;

border-radius:25px;


}

.cta-content{


padding:50px 20px;


}

.cta-content h2{


font-size:38px;


}

.cta-content p{


font-size:15px;


}

/* ==========================
CONTACT PAGE
========================== */

.contact-hero-content h1{


font-size:55px;


}

.contact-grid{


grid-template-columns:1fr;


}

.contact-form{


grid-template-columns:1fr;


}

.contact-form textarea,
.contact-form button{


grid-column:auto;


}

.form-card{


padding:30px 20px;


}

.faq-grid{


grid-template-columns:1fr;


}

/* ==========================
FRANCHISE PAGE
========================== */

.why-grid,
.stats-grid,
.support-grid{


grid-template-columns:1fr;


}

.step{


width:100%;


}

.franchise-form{


grid-template-columns:1fr;


}

.franchise-form textarea,
.franchise-form button{


grid-column:auto;


}

.form-top-stats{


gap:20px;


}

/* ==========================
OUR FOOD PAGE
========================== */

.story-container,
.ingredients-container{


grid-template-columns:1fr;

text-align:center;


}

.values-grid{


grid-template-columns:1fr;


}

/* ==========================
COOKIE BANNER
========================== */

.cookie-banner{


width:95%;

bottom:10px;


}

.cookie-content{


flex-direction:column;

align-items:flex-start;


}

.cookie-buttons{


width:100%;


}

.cookie-btn{


flex:1;


}

/* ==========================
CHAR&CO POPUP
========================== */

.brand-popup{


width:95%;

max-width:400px;

padding:30px 20px;


}

.brand-logo img{


max-width:170px;


}

.brand-popup h2{


font-size:26px;


}

.coming-soon{


font-size:38px;


}

.brand-text{


font-size:14px;


}

/* ==========================
CART
========================== */

.floating-cart{


width:90%;

left:50%;

transform:translateX(-50%);


}

.cart-sidebar{


width:100%;


}

/* ==========================
FOOTER
========================== */

.footer-container{


display:grid;

grid-template-columns:1fr;

text-align:center;

gap:30px;

padding:50px 20px;


}

.footer-logo{


margin:auto;


}

.footer-brand p{


margin-top:15px;


}

.footer-column{


margin-top:10px;


}

/* ==========================
TYPOGRAPHY
========================== */

.section-title,
h2{


font-size:38px !important;


}

h3{


font-size:24px;


}

p{


font-size:15px;


}

}
