/* =========================
   EATLOW PREMIUM WEBSITE
========================= */

/* GOOGLE FONT */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

/* RESET */

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

/* BODY */

body{
  font-family:'Montserrat',sans-serif;
  background:#050505;
  overflow-x:hidden;
  color:white;
}

/* SMOOTH SCROLL */

html{
  scroll-behavior:smooth;
}

/* =========================
   INTRO SCREEN
========================= */

.intro-screen{
  position:fixed;
  top:0;
  left:0;

  width:100%;
  height:100vh;

  background:#000;

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

  overflow:hidden;

  z-index:99999;

  animation:hideIntro 1.5s ease forwards;
  animation-delay:3.8s;
}

/* GLOW BEHIND LOGO */

.intro-overlay{
  position:absolute;

  width:650px;
  height:650px;

  background:
  radial-gradient(
    circle,
    rgba(154,205,50,0.20) 0%,
    rgba(154,205,50,0.02) 60%,
    transparent 100%
  );

  filter:blur(120px);

  border-radius:50%;
}

/* INTRO LOGO */

.intro-logo{
  position:relative;

  width:580px;
  max-width:82%;

  opacity:0;

  transform:scale(0.78);

  animation:logoReveal 2.4s ease forwards;
}

/* =========================
   WEBSITE MAIN
========================= */

.website{
  opacity:0;

  animation:showWebsite 2s ease forwards;
  animation-delay:4.2s;
}

/* =========================
   NAVBAR
========================= */

.navbar{
  position:absolute;
  top:0;
  left:0;

  width:100%;

  padding:18px 7%;

  display:flex;
  justify-content:space-between;
  align-items:center;

  z-index:999;

  background:transparent;

  backdrop-filter:none;

  border-bottom:none;
}

/* LOGO */

.nav-logo{
  width:270px;
  height:auto;

  cursor:pointer;

  filter:
  drop-shadow(0 0 12px rgba(154,205,50,0.22));

  transition:0.4s ease;
}

.nav-logo:hover{
  transform:scale(1.03);
}

/* NAV LINKS */

.nav-links{
  display:flex;
  align-items:center;

  list-style:none;

  gap:42px;
}

.nav-links a{
  text-decoration:none;

  color:white;

  font-size:0.95rem;
  font-weight:500;

  letter-spacing:1px;

  transition:0.35s ease;
}

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

/* BUTTON */

.nav-btn{
  padding:14px 28px;

  border:none;
  border-radius:50px;

  background:#9acd32;

  color:black;

  font-weight:700;
  font-size:0.95rem;

  cursor:pointer;

  transition:0.4s ease;
}

.nav-btn:hover{
  transform:translateY(-3px);

  background:white;
}

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

.hero{
  position:relative;

  width:100%;
  height:100vh;

  display:flex;
  align-items:center;

  padding:120px 8% 0;

  background:
  url('https://images.unsplash.com/photo-1547592180-85f173990554?q=80&w=1974&auto=format&fit=crop');

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

/* DARK CINEMATIC OVERLAY */

.hero-dark-overlay{
  position:absolute;
  inset:0;

  background:
  linear-gradient(
    to right,
    rgba(0,0,0,0.92),
    rgba(0,0,0,0.52)
  );
}

/* HERO CONTENT */

.hero-content{
  position:relative;
  z-index:2;

  max-width:760px;
}

/* TAG */

.hero-tag{
  display:inline-block;

  margin-bottom:22px;

  color:#9acd32;

  letter-spacing:4px;

  font-size:0.95rem;
  font-weight:600;
}

/* HEADING */

.hero-content h1{
  font-size:6rem;

  line-height:1.02;

  font-weight:800;

  margin-bottom:28px;
}

.hero-content h1 span{
  color:#9acd32;
}

/* PARAGRAPH */

.hero-content p{
  max-width:650px;

  color:#d0d0d0;

  line-height:1.9;

  font-size:1.05rem;

  margin-bottom:42px;
}

/* BUTTON WRAPPER */

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

/* BUTTONS */

.primary-btn,
.secondary-btn{

  padding:17px 36px;

  border-radius:50px;

  font-size:1rem;
  font-weight:700;

  cursor:pointer;

  transition:0.4s ease;
}

/* PRIMARY */

.primary-btn{
  border:none;

  background:#9acd32;
  color:black;
}

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

  background:white;
}

/* SECONDARY */

.secondary-btn{
  background:transparent;

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

  color:white;
}

.secondary-btn:hover{
  background:white;
  color:black;
}

/* =========================
   ANIMATIONS
========================= */

@keyframes logoReveal{

  0%{
    opacity:0;
    transform:scale(0.75);
  }

  100%{
    opacity:1;
    transform:scale(1);
  }

}

@keyframes hideIntro{

  to{
    opacity:0;
    visibility:hidden;
  }

}

@keyframes showWebsite{

  to{
    opacity:1;
  }

}

/* =========================
   TABLET
========================= */

@media(max-width:992px){

  .hero-content h1{
    font-size:4.3rem;
  }

  .nav-logo{
    width:220px;
  }

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

  .navbar{
    padding:18px 5%;
  }

  .nav-links{
    display:none;
  }

  .nav-btn{
    display:none;
  }

  .nav-logo{
    width:190px;
  }

  .hero{
    padding:0 5%;
  }

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

  .hero-content p{
    font-size:0.95rem;
    line-height:1.7;
  }

  .hero-buttons{
    flex-direction:column;
    align-items:flex-start;
  }

  .intro-logo{
    width:340px;
  }

}

/* =========================
   ABOUT SECTION
========================= */

.about{
  position:relative;

  padding:120px 8%;

  background:
  radial-gradient(
    circle at top left,
    rgba(154,205,50,0.10),
    transparent 35%
  ),
  radial-gradient(
    circle at bottom right,
    rgba(154,205,50,0.06),
    transparent 40%
  ),
  linear-gradient(
    180deg,
    #050505 0%,
    #0a0a0a 50%,
    #050505 100%
  );

  border-top:1px solid rgba(255,255,255,0.03);
}

.about::before{
  content:"";

  position:absolute;

  inset:0;

  background:
  radial-gradient(
    circle at center,
    rgba(255,255,255,0.02),
    transparent 70%
  );

  pointer-events:none;
}

.about-container{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:80px;
  margin-bottom:70px;
}

.about-left{
  flex:1;
}

.about-right{
  flex:1;
}

.section-tag{
  display:inline-block;

  color:#9acd32;

  letter-spacing:3px;

  font-size:0.9rem;
  font-weight:600;

  margin-bottom:20px;
}

.about-left h2{
  font-size:3rem;
  line-height:1.2;
  font-weight:800;
}

.about-right p{
  color:#bdbdbd;
  font-size:1.05rem;
  line-height:2;
}

.about-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.about-card{
  position:relative;

  overflow:hidden;

  background:#0d0d0d;

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

  border-radius:24px;

  padding:35px;

  transition:0.4s ease;
}

.about-card::before{
  content:"";

  position:absolute;

  top:0;
  left:0;

  width:100%;
  height:1px;

  background:
  linear-gradient(
    90deg,
    transparent,
    rgba(154,205,50,0.5),
    transparent
  );
}

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

  border-color:rgba(154,205,50,0.25);
}

.about-card h3{
  margin-bottom:15px;

  font-size:1.25rem;
}

.about-card p{
  color:#bdbdbd;
  line-height:1.8;
}

/* ABOUT RESPONSIVE */

@media(max-width:992px){

  .about-container{
    flex-direction:column;
    gap:35px;
  }

  .about-left h2{
    font-size:2.4rem;
  }

  .about-cards{
    grid-template-columns:1fr;
  }

}

/* =========================
   WHY EATLOW SECTION
========================= */

.why-eatlow{
  position:relative;

  padding:120px 8%;

  background:
  radial-gradient(
    circle at center,
    rgba(154,205,50,0.04),
    transparent 45%
  ),
  linear-gradient(
    180deg,
    #050505,
    #070707,
    #050505
  );
}

.why-header{
  text-align:center;

  max-width:800px;

  margin:0 auto 80px;
}

.why-header h2{
  font-size:3.5rem;

  font-weight:800;

  margin-bottom:20px;
}

.why-header p{
  color:#bdbdbd;

  line-height:1.9;

  max-width:650px;

  margin:auto;
}

.why-grid{
  display:grid;

  grid-template-columns:repeat(4,1fr);

  gap:25px;
}

.why-card{
  background:#0d0d0d;

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

  border-radius:24px;

  padding:40px 30px;

  text-align:center;

  transition:0.4s ease;
}

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

  border-color:rgba(154,205,50,0.25);
}

.why-card h3{
  color:#9acd32;

  font-size:1rem;

  letter-spacing:2px;

  margin-bottom:18px;
}

.why-card p{
  color:#bdbdbd;

  line-height:1.8;
}

/* WHY EATLOW RESPONSIVE */

@media(max-width:1100px){

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

}

@media(max-width:768px){

  .why-header h2{
    font-size:2.4rem;
  }

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

}

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

.menu-preview{
  position:relative;
  padding:120px 8%;

  background:
  radial-gradient(
    circle at center,
    rgba(154,205,50,0.05),
    transparent 45%
  ),
  linear-gradient(
    180deg,
    #050505,
    #070707,
    #050505
  );
}

.menu-content{
  max-width:1400px;
  margin:auto;
  text-align:center;
}

.menu-content h2{
  font-size:3.5rem;
  font-weight:800;
  margin-bottom:70px;
}

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

.menu-category{
  background:#0d0d0d;
  border:1px solid rgba(255,255,255,0.05);
  border-radius:24px;
  padding:30px;
  text-align:left;

  transition:0.4s ease;
}

.menu-category:hover{
  transform:translateY(-8px);
  border-color:rgba(154,205,50,0.25);
}

.menu-category h3{
  color:#9acd32;
  margin-bottom:20px;
  font-size:1.15rem;
}

.menu-category ul{
  list-style:none;
}

.menu-category li{
  color:#d0d0d0;
  padding:10px 0;
  border-bottom:1px solid rgba(255,255,255,0.05);
  line-height:1.5;
}

.menu-category li:last-child{
  border-bottom:none;
}

/* TABLET */

@media(max-width:1100px){

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

}

/* MOBILE */

@media(max-width:768px){

  .menu-content h2{
    font-size:2.4rem;
  }

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

  .menu-category{
    padding:25px;
  }

}

/* =========================
   CONTACT SECTION
========================= */

.contact-section{
  position:relative;

  padding:120px 8%;

  background:
  radial-gradient(
    circle at center,
    rgba(154,205,50,0.04),
    transparent 45%
  ),
  linear-gradient(
    180deg,
    #050505,
    #070707,
    #050505
  );
}

.contact-content{
  max-width:850px;

  margin:auto;

  text-align:center;
}

.contact-content h2{
  font-size:3.5rem;

  font-weight:800;

  margin-bottom:20px;
}

.contact-text{
  color:#bdbdbd;

  line-height:1.9;

  max-width:650px;

  margin:0 auto 50px;
}

.contact-card{
  background:#0d0d0d;

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

  border-radius:24px;

  padding:50px;

  max-width:650px;

  margin:auto;

  transition:0.4s ease;
}

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

  border-color:rgba(154,205,50,0.25);
}

.contact-item{
  padding:22px 0;

  border-bottom:1px solid rgba(255,255,255,0.05);
}

.contact-item:last-child{
  border-bottom:none;
}

.contact-item h3{
  color:#9acd32;

  margin-bottom:10px;

  letter-spacing:1px;

  font-size:1rem;
}

.contact-item p{
  color:#d8d8d8;

  font-size:1rem;
}

@media(max-width:768px){

  .contact-content h2{
    font-size:2.4rem;
  }

  .contact-card{
    padding:35px 25px;
  }

}

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

.footer{
  position:relative;

  padding:180px 8% 120px;

  background:
  radial-gradient(
    circle at center,
    rgba(154,205,50,0.06),
    transparent 45%
  ),
  linear-gradient(
    180deg,
    #050505 0%,
    #030303 100%
  );

  border-top:1px solid rgba(255,255,255,0.04);

  overflow:hidden;
}

.footer::before{
  content:"";

  position:absolute;

  top:-250px;
  left:50%;

  transform:translateX(-50%);

  width:700px;
  height:700px;

  background:
  radial-gradient(
    circle,
    rgba(154,205,50,0.08),
    transparent 70%
  );

  filter:blur(120px);

  pointer-events:none;
}

.footer-content{
  position:relative;

  z-index:2;

  max-width:1200px;

  margin:auto;

  text-align:center;
}

.footer-logo{
  width:520px;

  max-width:90%;

  margin-bottom:40px;

  filter:
  drop-shadow(0 0 25px rgba(154,205,50,0.25));

  transition:0.5s ease;
}

.footer-logo:hover{
  transform:scale(1.03);
}

.footer-tagline{
  color:#d0d0d0;

  font-size:1.25rem;

  font-weight:500;

  margin-bottom:55px;
}

.footer-links{
  display:flex;

  justify-content:center;

  gap:45px;

  flex-wrap:wrap;

  margin-bottom:60px;
}

.footer-links a{
  text-decoration:none;

  color:white;

  font-size:1rem;

  letter-spacing:1px;

  transition:0.35s ease;
}

.footer-links a:hover{
  color:#9acd32;
}

.footer-contact{
  color:#bdbdbd;

  font-size:1.05rem;

  line-height:2.2;

  margin-bottom:60px;
}

.footer-slogan{
  color:#9acd32;

  font-size:1.1rem;

  font-weight:700;

  letter-spacing:6px;

  margin-bottom:40px;
}

.footer-copyright{
  color:#666;

  font-size:0.95rem;
}

@media(max-width:768px){

  .footer{
    padding:120px 6% 80px;
  }

  .footer-logo{
    width:320px;
  }

  .footer-tagline{
    font-size:1rem;
  }

  .footer-links{
    gap:25px;
  }

  .footer-slogan{
    letter-spacing:3px;

    font-size:0.95rem;
  }

}
.menu-category{
  text-decoration:none;
  color:white;
}

.menu-category p{
  color:#bdbdbd;
  margin:15px 0;
}

.menu-category span{
  color:#9acd32;
  font-weight:600;
}
/* =========================
   SANDWICHES PAGE
========================= */

.category-page{
  min-height:100vh;
  padding:80px 8%;
  background:
  radial-gradient(circle at top,
  rgba(154,205,50,0.08),
  transparent 40%),
  linear-gradient(
  180deg,
  #050505,
  #070707,
  #050505);
}

.category-header{
  text-align:center;
  max-width:800px;
  margin:0 auto 70px;
}

.back-btn{
  display:inline-block;
  margin-bottom:35px;
  text-decoration:none;
  color:#9acd32;
  font-weight:600;
  transition:0.3s ease;
}

.back-btn:hover{
  color:white;
}

.category-header h1{
  font-size:4rem;
  font-weight:800;
  margin-bottom:18px;
}

.category-header p{
  color:#bdbdbd;
  line-height:1.8;
}

.food-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
  max-width:1400px;
  margin:auto;
}

.food-card{
  background:#0d0d0d;
  border:1px solid rgba(255,255,255,0.05);
  border-radius:24px;
  overflow:hidden;
  transition:0.4s ease;
}

.food-card:hover{
  transform:translateY(-8px);
  border-color:rgba(154,205,50,0.25);
}

.food-card img{
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
}

.food-card h3{
  padding:22px;
  font-size:1.1rem;
  font-weight:600;
}

@media(max-width:992px){

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

  .category-header h1{
    font-size:3rem;
  }

}

@media(max-width:768px){

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

  .category-header h1{
    font-size:2.4rem;
  }

  .food-card img{
    height:220px;
  }

}