@import url('https://fonts.googleapis.com/css2?family=Zalando+Sans+Expanded:ital,wght@0,200..900;1,200..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter";
    scroll-behavior: smooth;

}

.header {
  background: #fffce1;
  width: 100%;
}

.container {
  max-width: 1250px;
  margin: auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* LOGO */
.logo img {
  height: 100px;
}

/* RIGHT SECTION */
.right-section {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* SOCIAL ICONS */
.social-icons {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
}

.social-icons img {
  /* width: 16px; */
  height: 16px;
  cursor: pointer;
}

/* NAVIGATION */
.nav {
  font-size: 17px;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.25px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav a {
  text-decoration: none;
  color: #000;
  font-size: 14px;
}

.order-btn {
  font-size: 17px !important;
  font-weight: 700;
  background: #c42518;
  color: #fff;
  border: none;
  padding: 9px 24px;
  cursor: pointer;
  font-size: 14px;
  /* border-radius: 2px; */
}

/* HAMBURGER */
.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
}


/*--------main banner--------*/
.main-banner {
    width: 100%;
    height: 800px;
    overflow: hidden;
    position: relative;
}

.banner-slider {
    display: flex;
    width: 200%;
    height: 100%;
    animation: bannerSlide 8s infinite;
}

.banner-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* Slide images */
.slide1 {
    /*background-image: url("images/B1.jpeg");*/
        background-image: url("images/b111.jpg");
            background-position-y: -135px;
        position:relative;
}
.slide1 .slider_text h2, .slide1 .slider_text p{
        font-family: "Zalando Sans Expanded", sans-serif;
    color: #ffbd03;
    font-size: 50px; 
        width: 70%;
    font-weight: 900;
    margin:0 auto;
}
.slide1 .slider_text p{
    color:#fff;
        width: 100%;
}

.slide1 .slider_text{
       position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 25%;
    width:100%;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
}


.slide2 {
    background-image: url("images/B2.jpeg");
}

/*.slide3 {*/
/*    background-image: url("images/b3.jpeg");*/
/*}*/

.privacy-header{
    background: #C42518;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.headertitle{
    color: #fff;
    font-size: 55px;
    font-weight: 900;
    text-align: center;
    letter-spacing: 0.5px;
}


/*@keyframes bannerSlide {*/
/*    0%   { transform: translateX(0); }*/
/*    30%  { transform: translateX(0); }*/

/*    35%  { transform: translateX(-33.333%); }*/
/*    60%  { transform: translateX(-33.333%); }*/

/*    65%  { transform: translateX(-66.666%); }*/
/*    100% { transform: translateX(-66.666%); }*/
/*}*/

@keyframes bannerSlide {
    0%   { transform: translateX(0); }
    45%  { transform: translateX(0); }

    50%  { transform: translateX(-50%); }
    100% { transform: translateX(-50%); }
}


.contentsection{
    max-width:1200px;
    margin:0 auto;
    padding:50px 0px;
}


.promo-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.promo-box {
  background: #fff;
  padding: 25px;
  max-width: 400px;
  width: 90%;
  border-radius: 10px;
  text-align: center;
  position: relative;
}

.promo-box h2 {
  margin-top: 0;
  color: #d10000;
}

.close-btn {
  position: absolute;
  right: 12px;
  top: 10px;
  font-size: 22px;
  cursor: pointer;
}


/* ---------------- RESPONSIVE ---------------- */

@media (max-width: 900px) {
    
    .contentsection{
   
    padding:50px 20px;
}
  .right-section {
    position: absolute;
    top: 75px;
    left: 0;
    width: 100%;
    background: #e9e2c9;
    padding: 20px;
    display: none;
  }

  .right-section.active {
    display: block;
    z-index: 2;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .social-icons {
    margin-bottom: 15px;
  }

  .hamburger {
    display: block;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}

.modal-content {
  background: #fff;
  width: 90%;
  max-width: 400px;
  margin: 10% auto;
  padding: 20px;
  border-radius: 8px;
}

/* Modal Background */
#contactModal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

/* Modal Box */
#contactModal .modal-content {
  background: #fff;
  max-width: 420px;
  width: 90%;
  margin: 10% auto;
  padding: 25px 20px;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  animation: fadeIn 0.3s ease-in-out;
}

/* Title */
#contactModal h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 22px;
}

/* Close Button */
#contactModal .close {
  position: absolute;
  right: 15px;
  top: 12px;
  font-size: 24px;
  cursor: pointer;
  color: #555;
}

/* Form Inputs */
.contactform input{
    padding: 7px 12px;
}
.contactform select{
    padding: 12px 14px;
}

.contactform input,
.contactform select {
  width: 100%;
  
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 0px;
  font-size: 14px;
  outline: none;
  transition: 0.3s;
}

/* Focus Effect */
.contactform input:focus,
.contactform select:focus {
  border-color: #c42518;
  box-shadow: 0 0 0 2px rgba(0,123,255,0.15);
}

/* Submit Button */
.contactform button {
  width: 100%;
  padding: 10px 12px;
  background: #c42518;
  color: #fff;
  font-size: 15px;
  border: none;
  border-radius: 0px;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.3s, transform 0.2s;
}

/* Button Hover */
.contactform button:hover {
  background: #c42518;
  transform: translateY(-1px);
}
button#contactBtn {
    background-color: #c42518;
    color: #fff;
    padding: 6px 20px;
    border-color: #c42518;
    margin-top:15px;
}


/* signup form css*/
/* Form Wrapper */
#signup-form {
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
    padding: 25px 0px;
    /*background: #ffffff;
    border-radius: 6px;*/
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    font-family: "Inter", sans-serif;
}

/* Form Fields */
.form-field {
    margin-bottom: 18px;
}

/* Inputs */
.form-field input[type="text"],
.form-field input[type="email"] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 0px;
    font-size: 15px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

/* Input Focus */
.form-field input:focus {
    outline: none;
    border-color: #d4af37; /* gold */
    box-shadow: 0 0 0 2px rgba(212,175,55,0.15);
}

/* Checkbox Area */
.checkbox-field label {
    display: flex;
    gap: 10px;
    font-size: 13px;
    line-height: 1.5;
    color: #fff;
    
    cursor: pointer;
}

.checkbox-field p{
    margin-bottom:0px;
}
.checkbox-field input[type="checkbox"] {
    margin-top: 3px;
    accent-color: #d4af37;
}

/* Privacy Policy Link */
.checkbox-field a {
    color: #d4af37;
    text-decoration: none;
}

.checkbox-field a:hover {
    text-decoration: none;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 10px 12px;
    background: #c42518;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    border: none;
    border-radius: 0px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

/* Button Hover */
.submit-btn:hover {
    background: #c42518;
    color: #fff;
    transform: translateY(-1px);
}

/* Mobile Friendly */
@media (max-width: 480px) {
    #signup-form {
        padding: 20px;
    }
}


/* Fade Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsive */
@media (max-width: 480px) {
  #contactModal .modal-content {
    margin: 20% auto;
  }
}



/* HERO SECTION */

.hero {
  width: 100%;
  min-height: 1000px;
  /* min-height: clamp(420px, 60vh, 720px); */
  background: url("images/mainbanner1.jpeg") center center / cover no-repeat;
}

.footerhead{
    font-weight:700;
    margin-bottom:20px;
}

/* BLUE BOX AREA FROM FIGMA */
.hero-inner {
  max-width: 1200px; /* controls left-right spacing */
  margin: 0 auto; /* center horizontally */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* BURGER IMAGE */
.hero-burger {
  width: 100%;
  max-width: 1000px;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .hero-inner {
    max-width: 90%;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 40px 0;
  }

  .hero-burger {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 40px 0 60px;
  }

  .hero-burger {
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .hero-burger {
    max-width: 95%;
  }
}

/* ORDER NOW BUTTON */

.order-now-btn {
  display: block;
  margin: 25px auto 0 auto; /* centers horizontally */
  padding: 14px 40px;
  border: none;
  border-radius: 40px;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;

  /* Yellow Gradient */
  background: linear-gradient(180deg, #ffcf3d, #ff9f00);
  color: #b40000;

  /* Shadow */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);

  /* Fade Up Initial State */
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

/* ACTIVE STATE */
.order-now-btn.show {
  opacity: 1;
  transform: translateY(0);
}

/* HOVER */
.order-now-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

/* Slider */
.slider {
  position: relative;
  width: 100%;
  height: clamp(500px, 60vh, 550px);
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.slides {
  position: relative;
  width: 100%;
  height: 100%;
}
.slider .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  cursor: pointer;
  z-index: 10;
}

.arrow.left {
  left: 20px;
}
.arrow.right {
  right: 20px;
}

.arrow:hover {
  transform: translateY(-50%) scale(1.1);
}

.slide.active {
  opacity: 1;
}

/* BACKGROUND */
.slide-bg {
  position: absolute;
  inset: 0;
  background: url("images/slider-bg.png") center/cover no-repeat;
  /* filter: #373737CC; */
}

/* TEXT */
.slide-content {
  position: absolute;
  left: 6%;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  z-index: 3;
  max-width: 90%;
}

.slide-content h2 {
  font-size: clamp(22px, 5vw, 55px);
  line-height: 1.15;
  font-weight: 900;
  max-width: 700px;
}

.slide-content p {
  font-size: clamp(14px, 3vw, 22px);
  margin: 12px 0;
}

.slide-btn {
  background: #d62b2b;
  color: white;
  border: none;
  padding: 12px 22px;
  cursor: pointer;
}

/* TOMATO */
.tomato {
  position: absolute;
  left: 1%;
  bottom: -50px;
  height: 160px;
  width: auto;
  z-index: 2;
}

.hero-guy {
  position: absolute;
  right: 18%;
  bottom: 0;
  width: clamp(180px, 30vw, 340px);
  z-index: 3;
}
.hero-guy1 {
  position: absolute;
  right: 18%;
  bottom: 0;
  width: clamp(180px, 30vw, 340px);
  z-index: 3;
  border-radius:20px;
}

.combo {
  position: absolute;
  right: 4%;
  bottom: 0;
  width: clamp(200px, 35vw, 420px);
  z-index: 2;
}


/* ADJUST COMBO LOWER LAYER */
.combo {
  position: absolute;
  right: 4%;
  bottom: 0;
  width: 420px;
  z-index: 2;
}
.combo1 {
  position: absolute;
  right: 4%;
  bottom: 150px;
  width: 420px;
  z-index: 2;
  border-radius:20px;
}
/* RESPONSIVE */
@media (max-width: 900px) {
  .combo {
    width: 300px;
  }
  .slide-content h2 {
    font-size: 28px;
    padding-left: 20px;
  }
  .slide-content p {
    padding-left: 20px;
  }
}

@media (max-width: 600px) {
  .combo {
    width: 220px;
  }
  .tomato {
    width: 60px;
  }
}
@media (max-width: 900px) {
  .hero-guy {
    width: 250px;
    right: 10%;
  }
  .combo {
    width: 300px;
  }
}
@media (max-width: 600px) {
  .slider {
    height: 340px;
  }

  .slide-content {
    top: 45%;
    left: 5%;
  }

  .tomato {
    height: 70px;
    bottom: 0px;
  }

  .hero-guy {
    right: -20px;
    width: 160px;
  }

  .combo {
    right: -40px;
    width: 200px;
  }

  .arrow {
    width: 10px;
  }

  .slide-btn {
    padding: 8px 14px;
    font-size: 12px;
  }
}

/* MENU SECTION */
.menu-section {
  background: #000;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.menu-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
}

/* LEFT CARD IMAGE */
.menu-image-card {
  background: #111;
  border-radius: 18px;
  overflow: hidden;
  flex: 0 0 420px;
}

.menu-image-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* TEXT CONTENT */
.menu-content {
  color: #fff;
  max-width: 420px;
}

.menu-content h2 {
  font-size: 44px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 18px;
}

.menu-content p {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.85;
  margin-bottom: 25px;
}

/* BUTTON */
.menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #c42518;
  color: #fff;
  padding: 12px 29px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.menu-btn span {
  font-size: 18px;
}

/* FLOATING IMAGE */
.menu-float-img {
  position: absolute;
  /* right: -80px;                controlled overflow */
  top: 45%;
  right:0;
  transform: translateY(-50%); /* TRUE vertical center */
  width: 220px;
  z-index: 2;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .menu-container {
    gap: 40px;
  }

  .menu-float-img {
    width: 200px;
    right: -160px;
  }
}

@media (max-width: 768px) {
  .menu-container {
    flex-direction: column;
    text-align: center;
  }

  .menu-image-card {
    flex: none;
    width: 100%;
    max-width: 360px;
  }

  .menu-content {
    max-width: 100%;
  }

  .menu-float-img {
    display: none;
    /* position: relative;
    top: auto;
    right: auto;
    transform: none;
    margin-top: 40px;
    width: 240px; */
  }
}

@media (max-width: 480px) {
  .menu-section {
    padding: 60px 0;
  }

  .menu-content h2 {
    font-size: 28px;
  }
}
/* FEATURE ROTATING STRIP */
.feature-strip {
  background: #b00216;
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
}

.feature-track {
  display: inline-flex;
  align-items: center;
  gap: 60px;
  animation: scroll-left 18s linear infinite;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 55px;
  letter-spacing: 0.5px;
}

.feature-item img {
  width: 63px;
  height: auto;
}

/* ANIMATION */
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* PAUSE ON HOVER (OPTIONAL) */
.feature-strip:hover .feature-track {
  animation-play-state: paused;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .feature-item {
    font-size: 14px;
    gap: 8px;
  }

  .feature-item img {
    width: 26px;
  }

  .feature-track {
    gap: 40px;
  }
}
/* GALLERY SECTION */
.gallery-section {
  background: #000;
  padding: 80px 20px;
  text-align: center;
}

.gallery-title {
  color: #fff;
  font-size: 55px;
  font-weight: 900;
  margin-bottom: 40px;
  letter-spacing: 0.5px;
}

/* GRID */
.gallery-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ITEM */
.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* HOVER EFFECT (SUBTLE & PREMIUM) */
.gallery-item:hover img {
  transform: scale(1.06);
}
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .gallery-title {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .gallery-section {
    padding: 60px 16px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-title {
    font-size: 22px;
  }
}
/* CONNECT SECTION */
/* ===============================
   CONNECT SECTION – FIXED
================================ */
.connect-section {
  background: #C42518;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}
.connect-wrapper {
  max-width: 1400px;
  margin: auto;
  /* margin-left:200px; */
  position: relative;
  z-index: 2;
}


/* Burgers */
.burger img {
  width: 100%;
  max-width: 420px;
}
/* LEFT BURGER — FIXED POSITION */
.burger-left {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.burger-right {
  position: absolute;
  right: 40px;
  top: 65%;
  transform: translateY(-50%);
  z-index: 1;
}

.burger-right img {
  width: 420px;
}
.burger-left img {
  width: 340px;
  max-width: none;
  border-radius:20px;
}
/* Center Content */
.connect-content {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-left: 290px;   /* space for left burger */
}
/* Text */
.connect-heading {
  font-size: 44px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.connect-title {
  font-size: 72px;
  font-weight: 800;
  color: #f5d433;
  margin-top: 10px;
}

/* Links */
.connect-links {
  width: 100%;
  max-width: 340px;
}

.connect-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  border-bottom: 2px dotted rgba(255,255,255,0.8);
}

.connect-link:last-child {
  /*border-bottom: none;*/
}

.connect-link .left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.connect-link .icon {
  width: 16px;
}

.connect-link .arrow {
  transition: transform 0.3s ease;
}

.connect-link:hover .arrow {
  transform: translateX(6px);
}

/* ===============================
   TABLET
================================ */
@media (max-width: 1024px) {
  .connect-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .connect-content {
    flex-direction: column;
    gap: 30px;
  }

  .burger {
    display: flex;
    justify-content: center;
  }

  .burger img {
    max-width: 260px;
  }
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 600px) {
  .connect-heading {
    font-size: 32px;
  }

  .connect-title {
    font-size: 46px;
  }

  .connect-link {
    font-size: 15px;
    padding: 14px 0;
  }

  .burger img {
    max-width: 220px;
  }
}

@media (max-width: 1200px) {

  .burger-left,
  .burger-right {
    position: static;
    transform: none;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
  }

  .burger-left img,
  .burger-right img {
    width: 420px;
  }

  .connect-content {
    flex-direction: column;
    margin-left: 0;
    text-align: center;
  }
}

/* FAN SECTION */
/* FOOTER */
.site-footer {
  background: #000;
  color: #fff;
  padding: 30px 0;
  font-family: "Inter", sans-serif;
}

.footer-container {
  max-width: 1400px;
  margin: auto;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-container1 {
  max-width: 1400px;
  margin: auto;
  padding: 0 30px;
  text-align:center;
}

/* LEFT */
.footer-nav {
  /*display: flex;*/
 
  gap: 20px;
  font-size: 15px;
  font-weight: 400;
  margin-top: 10px;
}
::placeholder {
  color: #757575;
  font-size: 15px;
  font-weight: 500;
}


.footer-nav a {
  color: #fff;
  text-decoration: none !important;
}

.footer-title {
  font-size: 22x;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-form {
  display: flex;
  max-width: 420px;
}

.footer-form input {
  flex: 1;
  padding: 10px 12px;
  font-size: 13px;
  border: none;
  outline: none;
}

.footer-form button {
  background: #c42518;
  color: #F5D433;
  border: none;
  padding: 0 22px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}

.footer-note {
  font-size: 11px;
  color: #fff;
  margin-top: 10px;
}

.footer-note a {
  color: #fff;
  text-decoration: underline;
   text-underline-offset: 3px;
}

/* RIGHT */
.footer-right {
  text-align: right;
}

.footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 8px;
}

.footer-social img {
  /* width: 30px;
   */
   height: 30px;
}

.footer-download {
  color: #F5D433;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-stores {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-stores img {
  height: 36px;
}

.footer-bottom-links {
  font-size: 11px;
  color: #fff;
}

.footer-bottom-links a {
  color: #fff;
  /* text-decoration: none; */
   text-underline-offset: 3px;
  margin-right: 10px;
}


/* Sign Up Form CSS*/

/* RESPONSIVE */
@media (max-width: 776px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-right {
    text-align: center;
  }

  .footer-social,
  .footer-stores {
    justify-content: center;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height:30px;
}

.info-item i {
    color: #fff; /* change icon color if needed */
    font-size: 18px;
    margin-top: 3px;
}

.info-item a {
    color: #fff;
    text-decoration: none;
}


/* Button Hover */


/* HOVER */
.btn-primary:hover,
.order-btn:hover,
.slide-btn:hover,
.menu-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 28px rgba(0,0,0,0.35);
  filter: brightness(1.08);
}

/* ACTIVE (CLICK) */
.btn-primary:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 6px 14px rgba(0,0,0,0.3);
}
.link,
.footer-nav a,
.connect-link {
  position: relative;
  text-decoration: none;
}

.link::after,
.footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #f5d433;
  transition: width 0.25s ease;
}

.link:hover::after,
.footer-nav a:hover::after,
.connect-link:hover::after {
  width: 100%;
}

.footer-form button:hover {
  color: #fff0f0;
}





/* =========================
   TABLET (≤1024px)
========================= */
@media (max-width: 1024px) {

  /* Header */
  .logo img {
    height: 80px;
  }

  /* Main Banner */
  .main-banner {
    height: 550px;
  }

  .slide1 .slider_text h2 {
    font-size: 36px;
    width: 90%;
  }

  .slide1 .slider_text p {
    font-size: 22px;
  }

  /* Slider */
  .hero-guy,
  .hero-guy1 {
    width: 240px;
    right: 8%;
  }

  .combo,
  .combo1 {
    width: 300px;
    right: 2%;
  }

  /* Menu Section */
  .menu-container {
    gap: 30px;
  }

  .menu-content h2 {
    font-size: 34px;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-title {
    font-size: 36px;
  }
}

/* =========================
   MOBILE & TABLET (≤768px)
========================= */
@media (max-width: 768px) {

  /* Header Menu */
  .right-section {
    width: 100%;
    align-items: flex-start;
  }

  .nav {
    width: 100%;
  }

  .nav a,
  .order-btn {
    width: 100%;
    text-align: left;
  }

  /* Banner */
  .main-banner {
    height: 420px;
  }

  .slide1 {
    background-position-y: center;
  }

  .slide1 .slider_text h2 {
    font-size: 28px;
  }

  /* Slider */
  .slider {
    height: 380px;
  }

  .slide-content h2 {
    font-size: 26px;
  }

  .hero-guy,
  .hero-guy1 {
    width: 200px;
    right: -10px;
  }

  .combo,
  .combo1 {
    width: 240px;
    right: -20px;
  }

  /* Menu Section */
  .menu-container {
    flex-direction: column;
    text-align: center;
  }

  .menu-image-card {
    width: 100%;
    max-width: 320px;
  }

  .menu-float-img {
    display: none;
  }

  /* Feature Strip */
  .feature-item {
    font-size: 14px;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Connect Section */
  .burger-left,
  .burger-right {
    position: static;
    transform: none;
    justify-content: center;
  }

  .connect-content {
    flex-direction: column;
    margin-left: 0;
    text-align: center;
  }

  .connect-title {
    font-size: 46px;
  }

  /* Footer */
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-right {
    text-align: center;
  }

  .footer-social,
  .footer-stores {
    justify-content: center;
  }
}

/* =========================
   SMALL MOBILE (≤480px)
========================= */
@media (max-width: 480px) {

  /* Header */
  .logo img {
    height: 65px;
  }

  /* Banner */
  .main-banner {
    height: 320px;
  }

  .slide1 .slider_text h2 {
    font-size: 22px;
  }

  .slide1 .slider_text p {
    font-size: 16px;
  }

  /* Slider */
  .slider {
    height: 300px;
  }

  .hero-guy,
  .hero-guy1 {
    width: 150px;
  }

  .combo,
  .combo1 {
    width: 180px;
  }

  .slide-btn {
    font-size: 12px;
    padding: 8px 12px;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-title {
    font-size: 22px;
  }

  /* Connect */
  .connect-heading {
    font-size: 28px;
  }

  .connect-title {
    font-size: 40px;
  }

  /* Footer */
  .footer-form {
    flex-direction: column;
  }

  .footer-form button {
    margin-top: 10px;
    width: 100%;
    padding: 10px 0px;
  }
}


/* Cookie Consent Box */
.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 380px;
  background: #000;
  color: #fff;
  padding: 18px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  z-index: 99999;
  display: none;
  font-family: "Inter", sans-serif;
}

.cookie-consent p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 12px;
}

.cookie-consent a {
  color: #f5d433;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-buttons button {
  flex: 1;
  padding: 8px 12px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
}

.cookie-buttons button#acceptCookies {
  background: #c42518;
  color: #fff;
}

.cookie-buttons .decline {
  background: #444;
  color: #fff;
}

/* Mobile */
@media (max-width: 480px) {
  .cookie-consent {
    left: 10px;
    right: 10px;
    bottom: 10px;
    max-width: unset;
  }
}

.g-recaptcha {
  margin: 15px 0;
}


