*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

body{
  font-family:'Poppins', sans-serif;
  background:#8e1212;
  color:#f9f9f9;
  scroll-behavior:smooth;
}

/* HEADER */
.header{
  position:fixed;
  top:0;
  width:100%;
  padding:18px 40px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  z-index:100;
  background:rgba(142,18,18,0.88);
  backdrop-filter: blur(6px);
  box-shadow:0 6px 20px rgba(0,0,0,0.25); /* NEW */
}

.logo img{
  height:44px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35));
}


nav a{
  margin-left:22px;
  color:#fff;
  text-decoration:none;
  font-weight:500;
}

nav a:hover{
  opacity:0.85;
}

.order-btn{
  background:#d4af37;
  color:#000;
  padding:8px 18px;
  border-radius:20px;
  transition:all 0.25s ease;
}

.order-btn:hover{
  background:#e6c75a;
  transform:translateY(-1px);
}

/* HERO */
.hero{
  height:100vh;
  background:
    linear-gradient(
      rgba(142,18,18,0.55),
      rgba(90,10,10,0.60)
    ),
    url("assets/bg-meat.jpg") center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding-top:80px; /* header offset */
}

.hero-content{
  max-width:700px;
  padding:20px;
}

.hero-content h1{
  font-family:'Playfair Display', serif;
  font-size:66px;
  letter-spacing:1px;
}

.hero-content h2{
  font-family:'Playfair Display', serif;
  font-size:28px;
  margin-bottom:16px;
  color:#f3e7c3;
}

.hero-content p{
  font-size:17px;
  opacity:.9;
}

.cta{
  display:inline-block;
  margin-top:26px;
  padding:14px 34px;
  background:#d4af37;
  color:#000;
  text-decoration:none;
  border-radius:30px;
  font-weight:600;
  transition:all 0.25s ease;
}

.cta:hover{
  background:#e6c75a;
  transform:translateY(-2px);
}

/* SECTIONS */
.section{
  padding:100px 20px;
  text-align:center;
  scroll-margin-top:90px; /* anchor fix */
}

.section.dark{
  background:#751010;
}

.section h3{
  font-family:'Playfair Display', serif;
  font-size:34px;
}

.line{
  width:60px;
  height:4px;
  background:#d4af37;
  margin:14px auto 30px;
}

.features{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:20px;
  max-width:900px;
  margin:0 auto;
}

.features div{
  background:rgba(255,255,255,0.12);
  backdrop-filter: blur(4px);
  padding:22px;
  border-radius:16px;
}

/* REVIEW */
.review-card{
  max-width:600px;
  margin:0 auto;
  background:rgba(255,255,255,0.08);
  padding:30px;
  border-radius:20px;
}

/* DELIVERY ROAD – DESKTOP ONLY */
.delivery-track{
  position:fixed;
  right:18px;
  top:90px;
  width:56px;
  height:80vh;
  border-radius:30px;
  display:flex;
  justify-content:center;
  pointer-events:none;
  z-index:50;
  background:
    repeating-linear-gradient(
      to bottom,
      #2f2f2f 0,
      #2f2f2f 20px,
      #262626 20px,
      #262626 40px
    );
}

/* Road center line */
.delivery-track::before{
  content:"";
  position:absolute;
  top:10px;
  bottom:10px;
  width:4px;
  background:
    repeating-linear-gradient(
      to bottom,
      #f2c94c 0,
      #f2c94c 14px,
      transparent 14px,
      transparent 28px
    );
  border-radius:2px;
}

.truck{
  position:absolute;
  top:0;
  font-size:34px;
  transition:transform 0.1s linear;
  z-index:2;
}

.home{
  position:absolute;
  bottom:-6px;
  font-size:34px;
  z-index:2;
}

/* Hide on mobile & tablets */
@media (max-width: 1024px){
  .delivery-track{
    display:none !important;
  }
}

/* POLICY */
.policy-box{
  max-width:900px;
  margin:0 auto;
  text-align:left;
  background:rgba(255,255,255,0.08);
  padding:40px;
  border-radius:20px;
  line-height:1.7;
}

.policy-box h4{
  margin-top:26px;
  color:#f3e7c3;
  font-weight:600;
}

.policy-box p{
  opacity:0.9;
  font-size:15px;
}

.trust-slider{
  overflow:hidden;
  max-width:100%;
}

.trust-slider .track{
  display:flex;
  gap:24px;
  animation: scrollTrust 22s linear infinite;
}

.trust-slider span{
  white-space:nowrap;
  background:rgba(255,255,255,0.12);
  padding:14px 22px;
  border-radius:30px;
  font-size:15px;
}

@keyframes scrollTrust{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}

.serve-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:22px;
  max-width:900px;
  margin:0 auto;
}

.serve-grid div{
  background:rgba(255,255,255,0.10);
  padding:26px;
  border-radius:18px;
}

.serve-grid h4{
  color:#f3e7c3;
  margin-bottom:8px;
  font-weight:600;
}

.serve-grid p{
  font-size:15px;
  opacity:0.9;
}

/* SEQUENTIAL REVEAL ANIMATION */
.reveal-item{
  opacity:0;
  transform:translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal-item.visible{
  opacity:1;
  transform:translateY(0);
}

/* HEADER BASE */
.header{
  position:fixed;
  top:0;
  width:100%;
  padding:16px 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:rgba(142,18,18,0.95);
  z-index:999;
}

.logo img{
  height:42px;
}

/* NAV DESKTOP */
nav{
  display:flex;
  align-items:center;
  gap:18px;
}

nav a{
  color:#fff;
  text-decoration:none;
  font-weight:500;
  font-size:15px;
}

.order-btn{
  background:#d4af37;
  color:#000;
  padding:8px 16px;
  border-radius:20px;
}

/* HAMBURGER */
.menu-toggle{
  display:none;
  font-size:28px;
  color:#fff;
  cursor:pointer;
}

/* MOBILE STYLES */
@media(max-width:768px){

  .menu-toggle{
    display:block;
  }

  nav{
    position:absolute;
    top:70px;
    left:0;
    width:100%;
    background:#7a1010;
    flex-direction:column;
    align-items:center;
    padding:20px 0;
    display:none;
  }

  nav a{
    padding:12px 0;
    font-size:16px;
  }

  nav.show{
    display:flex;
  }
}

/* FOOTER */
.footer{
  background:#6b0f0f;
  padding:28px 16px;
  text-align:center;
  font-size:14px;
  margin-top:60px;
}

.footer a{
  color:#f3e7c3;
  text-decoration:none;
  font-weight:500;
}

.footer a:hover{
  text-decoration:underline;
}

.footer .copyright{
  margin-top:10px;
  opacity:0.75;
  font-size:13px;
}


