/* ========================= */
/* style.css */
/* ========================= */

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

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter', sans-serif;
  background:#0b0b0b;
  color:#fff;
  overflow-x:hidden;
}

img{
  width:100%;
  display:block;
}

a{
  text-decoration:none;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

section{
  padding:100px 0;
}

/* ========================= */
/* HEADER */
/* ========================= */

.header{
  position:fixed;
  width:100%;
  top:0;
  z-index:999;
  backdrop-filter:blur(14px);
  background:rgba(0,0,0,.55);
  border-bottom:1px solid rgba(255,255,255,.05);
}

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

.logo{
  font-size:1.6rem;
  font-weight:800;
  letter-spacing:2px;
}

.logo span{
  color:#ff7a00;
}

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

.nav-links a{
  color:#fff;
  transition:.3s;
}

.nav-links a:hover{
  color:#ff7a00;
}

/* ========================= */
/* HERO */
/* ========================= */

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

.hero::before{
  content:'';
  position:absolute;

  width:600px;
  height:600px;

  background:#ff7a00;

  filter:blur(220px);

  opacity:.15;

  top:-200px;
  right:-150px;
}

.hero-content{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:40px;
}

.hero-tag{
  color:#ff7a00;
  letter-spacing:3px;
  font-weight:700;
}

.hero h1{
  font-size:4.5rem;
  line-height:1.1;
  margin:25px 0;
}

.hero p{
  color:#cfcfcf;
  line-height:1.8;
  margin-bottom:40px;
  max-width:600px;
}

.hero-buttons{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

.hero-image{
  position:relative;
}

.floating-burger{
  animation:floating 4s ease-in-out infinite;
  filter:drop-shadow(0 25px 50px rgba(255,122,0,.35));
}

@keyframes floating{

  0%{
    transform:translateY(0px);
  }

  50%{
    transform:translateY(-20px);
  }

  100%{
    transform:translateY(0px);
  }

}

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

.btn-primary,
.btn-secondary,
.btn-ifood{
  padding:16px 30px;
  border-radius:12px;
  font-weight:700;
  transition:.3s;
  display:inline-block;
}

.btn-primary{
  background:#ff7a00;
  color:#fff;
}

.btn-primary:hover{
  transform:translateY(-4px);
}

.btn-secondary{
  border:1px solid #ff7a00;
  color:#fff;
}

.btn-secondary:hover{
  background:#ff7a00;
}

.btn-ifood{
  background:#ea1d2c;
  color:#fff;
}

/* ========================= */
/* TITLES */
/* ========================= */

.section-title{
  text-align:center;
  margin-bottom:70px;
}

.section-title span{
  color:#ff7a00;
  letter-spacing:3px;
  font-weight:700;
}

.section-title h2{
  font-size:3rem;
  margin-top:15px;
}

/* ========================= */
/* FEATURES */
/* ========================= */

.features-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

.feature-card{
  background:#121212;
  padding:40px 30px;
  border-radius:18px;
  text-align:center;
  transition:.3s;
}

.feature-card:hover{
  transform:translateY(-8px);
}

.feature-card i{
  font-size:2.5rem;
  color:#ff7a00;
  margin-bottom:20px;
}

.feature-card h3{
  margin-bottom:15px;
}

.feature-card p{
  color:#bcbcbc;
  line-height:1.7;
}

/* ========================= */
/* MENU */
/* ========================= */

.menu-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:35px;
}

.menu-card{
  background:#121212;
  border-radius:20px;
  overflow:hidden;
  transition:.3s;
}

.menu-card:hover{
  transform:translateY(-8px);
}

.menu-content{
  padding:30px;
}

.menu-content h3{
  margin-bottom:15px;
}

.menu-content p{
  color:#bcbcbc;
  line-height:1.7;
}

.menu-footer{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:25px;
}

.menu-footer span{
  color:#ff7a00;
  font-size:1.2rem;
  font-weight:700;
}

.menu-footer a{
  background:#ff7a00;
  color:#fff;
  padding:10px 18px;
  border-radius:10px;
}

/* ========================= */
/* COMBOS */
/* ========================= */

.combos-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:35px;
}

.combo-card{
  background:linear-gradient(
    145deg,
    #1a1a1a,
    #111
  );

  padding:45px;
  border-radius:24px;
  position:relative;
  overflow:hidden;
  border:1px solid rgba(255,122,0,.15);
}

.combo-badge{
  position:absolute;
  top:20px;
  right:20px;

  background:#ff7a00;
  color:#fff;

  padding:8px 14px;
  border-radius:30px;

  font-size:.8rem;
  font-weight:700;
}

.combo-card h3{
  font-size:2rem;
  margin-bottom:20px;
}

.combo-card p{
  color:#bcbcbc;
  line-height:1.8;
}

.combo-price{
  display:block;
  margin:30px 0;
  font-size:2.2rem;
  font-weight:800;
  color:#ff7a00;
}

.combo-card a{
  display:inline-block;
  background:#ff7a00;
  color:#fff;
  padding:14px 26px;
  border-radius:12px;
}

/* ========================= */
/* DELIVERY */
/* ========================= */

.delivery{
  background:
  linear-gradient(rgba(0,0,0,.85),rgba(0,0,0,.85)),
  url('assets/delivery-bg.jpg');

  background-size:cover;
  background-position:center;

  text-align:center;
}

.delivery span{
  color:#ff7a00;
  letter-spacing:3px;
  font-weight:700;
}

.delivery h2{
  font-size:3.5rem;
  margin:25px 0;
}

.delivery p{
  color:#cfcfcf;
  max-width:650px;
  margin:auto;
  line-height:1.8;
  margin-bottom:40px;
}

.delivery-buttons{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

/* ========================= */
/* FOOTER */
/* ========================= */

.footer{
  padding:40px 0;
  border-top:1px solid rgba(255,255,255,.05);
}

.footer-content{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:20px;
}

.footer p{
  color:#bcbcbc;
  margin-top:10px;
}

.socials{
  display:flex;
  gap:20px;
}

.socials a{
  color:#fff;
  font-size:1.4rem;
  transition:.3s;
}

.socials a:hover{
  color:#ff7a00;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width:980px){

  .hero-content{
    grid-template-columns:1fr;
    text-align:center;
  }

  .hero-text{
    order:2;
  }

  .hero-image{
    order:1;
  }

  .hero p{
    margin:auto;
    margin-bottom:40px;
  }

  .hero-buttons{
    justify-content:center;
  }

}

@media(max-width:768px){

  .hero h1{
    font-size:3rem;
  }

  .section-title h2{
    font-size:2.2rem;
  }

  .delivery h2{
    font-size:2.5rem;
  }

  .nav-links{
    display:none;
  }

}