/* ============================================================
   FIRED UP PIZZA — style.css
   Rustic Italian, wood-fired artisan vibes
   Palette: Dark #1A1008 | Light #FFF8F0 | Accent #EF4444
   Fonts: Abril Fatface (headings), Open Sans (body)
   Prefix: fu-
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #1A1008;
  background-color: #FFF8F0;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ---------- UTILITIES ---------- */
.fu-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.fu-container-narrow {
  max-width: 800px;
}

.fu-section {
  padding: 100px 0;
}

.fu-section-title {
  font-family: 'Abril Fatface', serif;
  font-size: 2.8rem;
  color: #1A1008;
  text-align: center;
  margin-bottom: 16px;
}

.fu-section-subtitle {
  text-align: center;
  color: #5a5045;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 48px;
}

.fu-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.fu-btn-primary {
  background-color: #EF4444;
  color: #fff;
  border-color: #EF4444;
}

.fu-btn-primary:hover {
  background-color: #dc2626;
  border-color: #dc2626;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.35);
}

.fu-btn-secondary {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}

.fu-btn-secondary:hover {
  background-color: #fff;
  color: #1A1008;
  transform: translateY(-2px);
}

/* ---------- REVEAL ANIMATIONS ---------- */
.fu-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fu-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- DEMO BANNER ---------- */
.fu-demo-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background: #1A1008;
  color: #FFF8F0;
  font-size: 0.85rem;
  padding: 8px 0;
}

.fu-demo-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.fu-demo-banner-link {
  color: #EF4444;
  font-weight: 700;
  transition: color 0.2s;
}

.fu-demo-banner-link:hover {
  color: #f87171;
}

/* ---------- NAV ---------- */
.fu-nav {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.35s ease;
  background: transparent;
}

.fu-nav.fu-scrolled {
  background: rgba(26, 16, 8, 0.95);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.fu-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fu-nav-logo {
  font-family: 'Abril Fatface', serif;
  font-size: 1.6rem;
  color: #FFF8F0;
  white-space: nowrap;
}

.fu-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.fu-nav-links a {
  color: #FFF8F0;
  font-size: 0.9rem;
  font-weight: 600;
  position: relative;
  transition: color 0.2s;
}

.fu-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #EF4444;
  transition: width 0.3s ease;
}

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

.fu-nav-links a:hover::after {
  width: 100%;
}

.fu-nav-cta {
  background: #EF4444;
  color: #fff;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.fu-nav-cta:hover {
  background: #dc2626;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(239, 68, 68, 0.4);
}

/* Hamburger */
.fu-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.fu-hamburger-line {
  display: block;
  width: 26px;
  height: 2px;
  background: #FFF8F0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.fu-hamburger.fu-active .fu-hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.fu-hamburger.fu-active .fu-hamburger-line:nth-child(2) {
  opacity: 0;
}

.fu-hamburger.fu-active .fu-hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- HERO ---------- */
.fu-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.fu-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.fu-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 16, 8, 0.7) 0%,
    rgba(26, 16, 8, 0.5) 50%,
    rgba(26, 16, 8, 0.8) 100%
  );
}

.fu-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
}

.fu-hero-title {
  font-family: 'Abril Fatface', serif;
  font-size: 5rem;
  color: #FFF8F0;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.fu-hero-tagline {
  font-size: 1.35rem;
  color: rgba(255, 248, 240, 0.9);
  margin-bottom: 40px;
  font-weight: 400;
}

.fu-hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- MENU SECTION ---------- */
.fu-menu-section {
  background: #FFF8F0;
}

.fu-menu-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.fu-filter-btn {
  padding: 8px 20px;
  border: 2px solid #d4c9bc;
  background: transparent;
  border-radius: 30px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #5a5045;
  cursor: pointer;
  transition: all 0.25s ease;
}

.fu-filter-btn:hover,
.fu-filter-active {
  background: #EF4444;
  border-color: #EF4444;
  color: #fff;
}

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

.fu-menu-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(26, 16, 8, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fu-menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(26, 16, 8, 0.15);
}

.fu-menu-card.fu-hidden {
  display: none;
}

.fu-menu-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.fu-menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.fu-menu-card:hover .fu-menu-card-img img {
  transform: scale(1.08);
}

.fu-menu-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #EF4444;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.fu-menu-badge-gourmet {
  background: #b45309;
}

.fu-menu-badge-sides {
  background: #16a34a;
}

.fu-menu-badge-desserts {
  background: #9333ea;
}

.fu-menu-badge-drinks {
  background: #0891b2;
}

.fu-menu-card-body {
  padding: 20px;
}

.fu-menu-card-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}

.fu-menu-card-header h3 {
  font-family: 'Abril Fatface', serif;
  font-size: 1.15rem;
  color: #1A1008;
}

.fu-menu-price {
  font-weight: 700;
  color: #EF4444;
  font-size: 1.05rem;
  white-space: nowrap;
}

.fu-menu-card-body p {
  font-size: 0.88rem;
  color: #5a5045;
  line-height: 1.5;
}

/* ---------- CATERING SECTION ---------- */
.fu-catering-section {
  background: #1A1008;
  color: #FFF8F0;
}

.fu-catering-section .fu-section-title {
  color: #FFF8F0;
  text-align: left;
}

.fu-catering-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.fu-catering-img img {
  border-radius: 12px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fu-catering-content p {
  color: rgba(255, 248, 240, 0.85);
  margin-bottom: 32px;
  line-height: 1.8;
}

.fu-catering-features {
  margin-bottom: 36px;
}

.fu-catering-features li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.fu-catering-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(239, 68, 68, 0.15);
  border-radius: 10px;
}

.fu-catering-features strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
  color: #FFF8F0;
}

.fu-catering-features p {
  font-size: 0.9rem;
  color: rgba(255, 248, 240, 0.7);
  margin-bottom: 0;
}

/* ---------- ABOUT SECTION ---------- */
.fu-about-section {
  background: #FFF8F0;
}

.fu-about-section .fu-section-title {
  text-align: left;
}

.fu-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.fu-about-content p {
  color: #5a5045;
  margin-bottom: 20px;
  line-height: 1.8;
}

.fu-about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.fu-about-stat {
  text-align: center;
  padding: 20px 10px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(26, 16, 8, 0.06);
}

.fu-about-stat-number {
  display: block;
  font-family: 'Abril Fatface', serif;
  font-size: 1.6rem;
  color: #EF4444;
}

.fu-about-stat-label {
  font-size: 0.78rem;
  color: #5a5045;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.fu-about-img img {
  border-radius: 12px;
  width: 100%;
  object-fit: cover;
}

/* ---------- LOCATIONS SECTION ---------- */
.fu-locations-section {
  background: #f5ede3;
}

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

.fu-schedule-card {
  background: #fff;
  border-radius: 10px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(26, 16, 8, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid #EF4444;
}

.fu-schedule-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26, 16, 8, 0.12);
}

.fu-schedule-day {
  font-family: 'Abril Fatface', serif;
  font-size: 1.2rem;
  color: #EF4444;
  margin-bottom: 8px;
}

.fu-schedule-location {
  font-weight: 700;
  color: #1A1008;
  margin-bottom: 4px;
}

.fu-schedule-time {
  font-size: 0.9rem;
  color: #5a5045;
}

/* ---------- GALLERY SECTION ---------- */
.fu-gallery-section {
  background: #1A1008;
}

.fu-gallery-section .fu-section-title {
  color: #FFF8F0;
}

.fu-gallery-section .fu-section-subtitle {
  color: rgba(255, 248, 240, 0.7);
}

.fu-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.fu-gallery-item {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
}

.fu-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.fu-gallery-item:hover img {
  transform: scale(1.1);
}

/* ---------- REVIEWS SECTION ---------- */
.fu-reviews-section {
  background: #FFF8F0;
}

.fu-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.fu-review-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 4px 16px rgba(26, 16, 8, 0.06);
  transition: transform 0.3s ease;
}

.fu-review-card:hover {
  transform: translateY(-4px);
}

.fu-review-stars {
  color: #f59e0b;
  font-size: 1.2rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.fu-review-text {
  font-size: 0.95rem;
  color: #5a5045;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.fu-review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fu-review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #EF4444;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.fu-review-author strong {
  display: block;
  color: #1A1008;
  font-size: 0.95rem;
}

.fu-review-author span {
  font-size: 0.8rem;
  color: #8a8078;
}

/* ---------- FAQ SECTION ---------- */
.fu-faq-section {
  background: #f5ede3;
}

.fu-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fu-faq-item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(26, 16, 8, 0.05);
}

.fu-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1A1008;
  text-align: left;
  transition: color 0.2s;
  gap: 16px;
}

.fu-faq-question:hover {
  color: #EF4444;
}

.fu-faq-icon {
  font-size: 1.4rem;
  font-weight: 400;
  color: #EF4444;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.fu-faq-item.fu-faq-open .fu-faq-icon {
  transform: rotate(45deg);
}

.fu-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.fu-faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: #5a5045;
  line-height: 1.7;
}

.fu-faq-item.fu-faq-open .fu-faq-answer {
  max-height: 300px;
}

/* ---------- FOOTER ---------- */
.fu-footer {
  background: #1A1008;
  color: #FFF8F0;
  padding: 60px 0 0;
}

.fu-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 248, 240, 0.1);
}

.fu-footer-logo {
  font-family: 'Abril Fatface', serif;
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.fu-footer-col p {
  font-size: 0.9rem;
  color: rgba(255, 248, 240, 0.7);
  line-height: 1.7;
}

.fu-footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.fu-footer-col ul li {
  font-size: 0.9rem;
  color: rgba(255, 248, 240, 0.7);
  margin-bottom: 8px;
}

.fu-footer-col ul li a {
  transition: color 0.2s;
}

.fu-footer-col ul li a:hover {
  color: #EF4444;
}

.fu-social-links {
  display: flex;
  gap: 14px;
}

.fu-social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 248, 240, 0.1);
  color: #FFF8F0;
  transition: all 0.3s ease;
}

.fu-social-links a:hover {
  background: #EF4444;
  transform: translateY(-3px);
}

.fu-footer-bottom {
  text-align: center;
  padding: 24px 0;
  font-size: 0.85rem;
  color: rgba(255, 248, 240, 0.5);
}

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .fu-menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .fu-hero-title {
    font-size: 3.8rem;
  }

  .fu-section-title {
    font-size: 2.4rem;
  }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  .fu-hamburger {
    display: flex;
  }

  .fu-nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(26, 16, 8, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    transition: right 0.35s ease;
    z-index: 999;
  }

  .fu-nav-links.fu-nav-open {
    right: 0;
  }

  .fu-nav-links a {
    font-size: 1.1rem;
  }

  .fu-nav-cta {
    display: none;
  }

  .fu-hero-title {
    font-size: 3rem;
  }

  .fu-hero-tagline {
    font-size: 1.1rem;
  }

  .fu-catering-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .fu-about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .fu-about-section .fu-section-title,
  .fu-catering-section .fu-section-title {
    text-align: center;
  }

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

  .fu-reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .fu-section {
    padding: 72px 0;
  }

  .fu-section-title {
    font-size: 2rem;
  }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
  .fu-hero-title {
    font-size: 2.4rem;
  }

  .fu-hero-tagline {
    font-size: 1rem;
  }

  .fu-hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .fu-btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

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

  .fu-gallery-grid {
    grid-template-columns: 1fr;
  }

  .fu-about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .fu-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .fu-schedule-grid {
    grid-template-columns: 1fr;
  }

  .fu-section {
    padding: 56px 0;
  }

  .fu-demo-banner-inner {
    font-size: 0.78rem;
    gap: 8px;
  }
}