* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #121212;
  color: #ffffff;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

/* Hides the stray H1 at the very top of your body */
body > h1:first-child {
  display: none;
}

/* ==========================================
   2. NAVIGATION BAR
   ========================================== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  background-color: #1a1a1a;
  border-bottom: 1px solid #333333;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .logo {
  font-size: 1.5rem;
  font-weight: 900;
  color:#eabf02;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color:#eabf02;
}

/* Mobile Menu Toggle (Checkbox Hack) */
.menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  font-size: 1.8rem;
  color: #ffffff;
  cursor: pointer;
}

/* ==========================================
   3. HERO SECTION
   ========================================== */
.hero {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 60px 5%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Left Hero Box (Logo and Intro) */
.hero .home:first-child {
  text-align: center;
}

.hero .home img {
  max-width: 300px;
  height: auto;
  margin-bottom: 20px;
}

.hero .home h1 {
  font-size: 2.8rem;
  color: #ffffff;
  margin-bottom: 5px;
}

.hero .home h2 {
  font-size: 2rem;
  color:#eabf02;
  margin-bottom: 15px;
}

/* Right Hero Box (Text and Badges) */
.hero .home h4 {
  color:#eabf02;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1rem;
  margin-bottom: 10px;
}

.hero .home h1 {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 5px;
}

.hero p {
  color: #cccccc;
  font-size: 1.05rem;
  margin-bottom: 25px;
  max-width: 600px;
}

/* Badges */
.badge, .badge2 {
  display: inline-block;
  background-color: #2a2a2a;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  border: 1px solid#eabf02;
  margin-right: 10px;
  margin-bottom: 10px;
}

.badge2 {
  border-color:#eabf02;
}

/* ==========================================
   4. OUR STORY SECTION
   ========================================== */
.ourstory {
  padding: 80px 5%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Main Top Header */
.ourstory h1 {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 2px;
  color:#eabf02;
  margin-bottom: 30px;
  text-transform: uppercase;
}

/* Fluid Hero Image */
.ourstory img {
  width: 100%;
  max-width: 670px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 20px #eabf02;
  margin-bottom: 40px;
}

/* Secondary Header */
.ourstory h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  text-transform: uppercase;
}

/* Line accent under subtitle */
.ourstory h3::after {
  content: '';
  display: block;
  width: 50px;
  height: 4px;
  background-color:#eabf02;
  margin: 10px auto 0 auto;
  border-radius: 2px;
}

/* Main Story Paragraph Text */
.ourstory p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #cccccc;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

/* Our Story Cards Container Override */
@supports (display: grid) {
  .ourstory {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
  }
  
  /* Forces top section elements to stay centered on desktop grid */
  .ourstory h1, 
  .ourstory img, 
  .ourstory h3, 
  .ourstory p:first-of-type {
    grid-column: 1 / -1;
  }
}

/* Our Story Specific Small Feature Cards */
.ourstory .menu-item.card {
  background-color: #1a1a1a;
  border: 1px solid #333333;
  border-radius: 12px;
  padding: 30px 20px;
  margin: 15px 0;
  width: 100%;
  max-width: 350px;
  transition: transform 0.3s ease, border-color 0.3s ease;
  text-align: center;
}

.ourstory .menu-item.card:hover {
  transform: translateY(-5px);
  border-color:#eabf02;
}

.ourstory .menu-item.card h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.ourstory .menu-item.card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #aaaaaa;
  margin-bottom: 0;
}

/* ==========================================
   5. MENU SECTION
   ========================================== */
.menu-section {
  padding: 80px 5%;
  background-color: #1a1a1a;
}

.menu-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.menu-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 50px;
  position: relative;
}

.menu-section h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color:#eabf02;
  margin: 10px auto 0 auto;
}

/* Grid Layout for Big Menu Cards */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

/* Big Menu Card Styles */
.menu-section .menu-item.card {
  background-color: #121212;
  border: 1px solid #333333;
  border-radius: 12px;
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.menu-section .menu-item.card:hover {
  transform: translateY(-5px);
  border-color:#eabf02;
}

.menu-section .menu-item.card h2, 
.menu-section .menu-item.card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.menu-section .menu-item.card p {
  color: #aaaaaa;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.price {
  color:#eabf02;
  font-weight: 800;
  font-size: 1.1rem;
}

/* ==========================================
   6. RESPONSIVE QUERIES
   ========================================== */
@media (min-width: 768px) {
  /* Hero side-by-side */
  .hero {
    flex-direction: row;
    align-items: center;
  }
  
  .hero .home {
    flex: 1;
  }
  
  .hero .home:first-child {
    text-align: left;
  }

  /* Aligns the 3 story cards side-by-side on desktop */
  .ourstory {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
  }
}

/* Mobile Hamburger Navigation */
@media (max-width: 768px) {
  .menu-icon {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #1a1a1a;
    padding: 20px;
    border-bottom: 1px solid #333333;
  }

  .nav-links li {
    text-align: center;
    padding: 10px 0;
  }

  .menu-toggle:checked ~ .nav-links {
    display: flex;
  }
}

/* Base Section Setup */
.contact-section {
  background-color: #121212;
  color: #ffffff;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Page Header Title */
.contact-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-header h1 {
  font-size: 3rem;
  font-weight: 900;
  color:#eabf02;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.contact-header p {
  color: #aaaaaa;
  font-size: 1.1rem;
}

/* Two-Column Layout */
.contact-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Universal styles for both column boxes */
.contact-form, 
.contact-info {
  background-color: #1a1a1a;
  border: 1px solid #333333;
  border-radius: 12px;
  padding: 40px;
  flex: 1;
}

/* Column Headers */
.contact-form h2,
.contact-info h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 30px;
}

/* Form Styling */
.form-group {
  margin-bottom: 20px;
}



.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color:#eabf02;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  background-color: #2a2a2a;
  border: 1px solid #444444;
  border-radius: 6px;
  color: #ffffff;
  font-size: 0.95rem;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color:#eabf02;
}

/* Fire Burger Submit Button */
.submit-btn {
  background-color:#eabf02;
  color: #ffffff;
  border: none;
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: 800;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
  background-color:#eabf02;
  transform: translateY(-2px);
}

/* Right Column Info Layout */
.info-block {
  margin-bottom: 25px;
}

.info-block h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color:#eabf02;
  margin-bottom: 5px;
}

.info-block p {
  color: #cccccc;
  font-size: 1rem;
  line-height: 1.5;
}

/* Desktop Side-by-Side Responsive Layout */
@media (min-width: 768px) {
  .contact-container {
    flex-direction: row;
    align-items: stretch;
  }
}
/* Main footer wrapper */
footer {
  background-color: #1a1a1a;
  color: #ffffff;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  padding: 50px 20px;
  border-top: 1px solid #333333;
}

/* Flexbox container to put paragraphs next to each other */
.footer {
  display: flex;
  flex-direction: row; /* Puts them side-by-side */
  justify-content: space-between; /* Pushes them to the edges */
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px; /* Space between the two columns */
}

/* Individual columns */
.footer .hero-text,
.footer .hero-textt {
  flex: 1; /* Makes both columns take up equal width */
}

/* Footer headers */
.footer h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color:#eabf02; /* Signature brand orange */
  text-transform: uppercase;
  margin-bottom: 15px;
}

/* Footer paragraph text */
.footer p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #aaaaaa;
}

/* Mobile responsive fallback (stacks them vertically on small screens) */
@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
}
/* Footer social links only */
.footer a {
  display: inline-block;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.9rem;
  margin-top: 10px;
  transition: all 0.3s ease;
}

/* Instagram style */
.footer a[href*="instagram"] {
  color:#ab8e11;
}

.footer a[href*="instagram"]:hover {
  color:#eabf02;
  transform: translateY(-2px);
}

/* TikTok style */
.footer a[href*="tiktok"] {
  color: #ae9e37;
}

.footer a[href*="tiktok"]:hover {
  color:#eabf02;
  transform: translateY(-2px);
}

.menu-section {
    padding: 60px 20px;
    background-color: #000000;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.menu-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #ffffff;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-item.card {
    background: #2c2a2a;
    border-radius: 15px;
    overflow: hidden;
    padding-bottom: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.menu-item.card:hover {
    transform: translateY(-10px);
}

.menu-item img {
    width: 100%; /* Spans full card width */
    height: 250px; /* Fixed height for uniformity */
    object-fit: cover; /* Crops image to fit without stretching */
}

.menu-item h2, .menu-item h3 {
    font-size: 1.4rem;
    margin: 15px 0 10px;
    color: #ffffff;
}

.menu-item p {
    padding: 0 20px;
    font-size: 0.95rem;
    color: #c0adad;
    line-height: 1.5;
    height: 60px; /* keeps text aligned even if descriptions vary */
}

.price {
    display: block;
    font-weight: bold;
    color: #ffffff;
    font-size: 1.2rem;
    margin-top: 15px;
}
