:root {
  --red: #e63946;
  --white: #ffffff;
  --black: #000000;
  --heading-font: 'Poppins', sans-serif; /* ← updated */
  --body-font: 'Open Sans', sans-serif;
}

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

html,
body {
  height: 100%;
  scroll-behavior: smooth;
  background: var(--black);
  color: var(--white);
  font-family: var(--body-font);
  display: flex;
  flex-direction: column;
}

a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--red);
}

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

.site-header {
  background: var(--black);
  border-bottom: 3px solid var(--red);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  font-weight: 900;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-list li a {
  font-weight: 600;
  padding: 8px 10px;
}

.nav-list li a:hover,
.nav-list li a.active {
  color: var(--white);
}

.nav-list li:last-child a {
  background: var(--red);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 30px;
}

.nav-list li:last-child a:hover {
  background: var(--white);
  color: var(--black);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  background: var(--white);
  height: 3px;
  width: 25px;
  border-radius: 2px;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -8px;
}

.nav-toggle span::after {
  top: 8px;
}

@media (max-width: 768px) {
  .nav-list {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }

  .nav-list.show {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .nav-list li a {
    font-size: 1.5rem;
    padding: 10px;
  }

}

.hero {
  text-align: center;
  background: var(--black);
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 120px 20px;
}

.hero-content h2 {
  font-family: var(--heading-font);
  font-size: 2.5rem; 
  font-weight: 600;  
}


.hero-content p {
  font-size: 1.2rem;
}

.hero-mini {
  padding: 80px 0;
  text-align: center;
}

.hero-mini h2 {
  font-family: var(--heading-font);
  font-size: 2.5rem;
}

.hero-mini p.lead {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 10px;
}

.btn,
.btn-order,
.floating-cta {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease;
}

.btn {
  background: var(--red);
}

.btn:hover {
  transform: scale(1.05);
  background: var(--white);
  color: var(--black);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--red);
}

.btn-order,
.floating-cta {
  background: var(--red);
}

.btn-order:hover,
.floating-cta:hover {
  background: var(--white);
  color: var(--black);
}

.floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

@media (min-width: 768px) {
  .floating-cta {
    display: none;
  }
}

.home-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  justify-content: center;
  gap: 40px;
  margin: 60px auto;
  padding: 0 10px;
}

@media (max-width: 768px) {
  .home-features {
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 40px 0;
  }
}

.featured {
  background: var(--black);
  border: 2px solid var(--red);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
}

.featured h3 {
  font-size: 1.75rem;
  margin-bottom: 15px;
}

.featured p {
  font-size: 1rem;
  margin-bottom: 25px;
}

.featured .link {
  display: inline-block;
  padding: 10px 20px;
  background: var(--red);
  color: var(--white);
  border-radius: 30px;
  text-decoration: none;
}

.featured .link:hover {
  background: var(--white);
  color: var(--black);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  margin: 40px 0;
  padding: 0;
}

.category-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 120px;
  border: 2px solid var(--red);
  border-radius: 15px;
  padding: 20px;
  background: var(--black);
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.category-card h3 {
  font-family: var(--heading-font);
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.category-card p {
  font-size: 1rem;
  color: var(--white);
}

.category-card:hover {
  background: rgba(230, 57, 70, 0.1);
  box-shadow: 0 0 10px var(--red);
  transform: translateY(-5px);
}

.category-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.category-card:hover img {
  transform: scale(1.05);
}


.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px var(--red);
}

@media (max-width: 768px) {
  .category-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 0 10px;
  }

  .category-card {
    padding: 20px;
    font-size: 1.1rem;
  }
}

.accordion h3 {
  font-family: var(--heading-font);
  background: var(--red);
  color: var(--white);
  padding: 15px;
  margin-top: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.accordion h3.active,
.accordion h3:hover {
  background: var(--white);
  color: var(--black);
}

.accordion .panel {
  max-height: 0;
  overflow: hidden;
  background: var(--black);
  transition: max-height 0.4s ease;
}

.accordion .panel.open {
  max-height: 1000px;
}

.accordion .panel ul {
  padding: 20px;
  list-style: none;
}

.accordion .panel ul li {
  padding: 10px 0;
  border-bottom: 1px solid var(--red);
}

.accordion .panel-heading {
  font-family: var(--heading-font);
  font-size: 1.25rem;
  color: var(--white);
  margin: 16px 0 8px;
  border-bottom: 1px solid var(--red);
  padding-bottom: 8px;
}

@media (max-width: 480px) {
  

  .logo img {
    max-height: 90px;
  }

  .accordion h3 {
    font-size: 1.4rem;
    padding: 14px;
  }

  .accordion .panel ul li {
    font-size: 1rem;
    padding: 12px 0;
  }

  .delivery-icons {
    gap: 12px;
  }
}

.site-footer {
  background: var(--black);
  text-align: center;
  padding: 30px 0;
  border-top: 3px solid var(--red);
}

.site-footer a {
  color: var(--red);
}

.site-footer .social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
}

.site-footer .social-icons a {
  width: 30px;
  height: 30px;
}

.site-footer .social-icons a img {
  width: 100%;
  height: 100%;
  filter: brightness(0) invert(1);
}

.site-footer .social-icons a:hover img {
  filter: brightness(0) saturate(100%) invert(12%) sepia(100%) saturate(500%) hue-rotate(350deg);
}

.animate-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

:target {
  scroll-margin-top: 80px;
}

.map-responsive {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slideshow-container {
  position: relative;
  max-width: 800px;
  margin: 60px auto;
}

.slide {
  display: none;
  text-align: center;
  padding: 40px;
  border: 2px solid var(--red);
  border-radius: 10px;
  background: var(--black);
}

.image-placeholder {
  font-family: var(--heading-font);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 20px;
}

.caption {
  font-size: 1.2rem;
  color: var(--white);
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 16px;
  margin-top: -22px;
  color: var(--white);
  font-weight: bold;
  font-size: 1.5rem;
  user-select: none;
  transition: background 0.3s ease;
}

.prev {
  left: 0;
  border-radius: 0 3px 3px 0;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
  background: rgba(255, 255, 255, 0.2);
}

.dots {
  text-align: center;
  padding: 20px;
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 5px;
  background: var(--white);
  border-radius: 50%;
  display: inline-block;
  transition: background 0.3s ease;
}

.active,
.dot:hover {
  background: var(--red);
}

.fade {
  animation: fade 1s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

.delivery-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.delivery-icons a .icon {
  width: 40px;
  height: 40px;
  display: inline-block;
  fill: #e63946;
}

.delivery-icons a:hover .icon {
  opacity: 0.8;
}

.site-footer .icon {
  width: 40px;
  height: 40px;
  margin: 0 8px;
}

.image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  background: var(--white);
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 2px;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -8px;
}

.nav-toggle span::after {
  top: 8px;
}
.logo img {
  display: block;
  max-height: 135px;
  width: auto;
}
.section-intro {
  padding: 80px 0;
  background: var(--black);
  color: var(--white);
  text-align: center;
}
.section-intro .container {
  max-width: 800px;
  margin: 0 auto;
}
.section-intro h2 {
  font-family: var(--heading-font);
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 0.5em;
  position: relative;
  display: inline-block;
}
.section-intro h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--red);
  border-radius: 2px;
  margin: 0.5em auto 0;
}
.section-intro p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.25em;
}
.section-intro p:last-child {
  margin-bottom: 0;
}
.site-header .header-phone {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.525rem;   
  color: #ffffff;
  margin-top: 0.25rem;
  text-align: center;
}
@media (min-width: 1440px) {
  .container {
    max-width: 1400px;
  }

  .nav-list li a {
    font-size: 1.1rem;
  }
}
@media (max-width: 480px) {
  .site-header {
    padding: 10px 0;
  }

  .site-header .header-phone {
    font-size: 1rem;
  }
}
.hero-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}
.menu-slider-small {
  display: flex;
  justify-content: center;
  margin: 40px auto;
  padding: 0 20px;
}

.slider-frame {
  position: relative;
  width: 100%;
  max-width: 640px;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  background-color: #000; /* ensures no white flash */
}

.slider-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  border-radius: 12px;
}

.slider-img.active {
  opacity: 1;
}

@media (max-width: 768px) {
  .slider-frame {
    max-width: 90%;
    min-height: 240px; /* fallback in case aspect-ratio fails */
  }
}
.menu-hero {
  position: relative;
  text-align: center;
  padding: 4rem 1rem;
  background: url('../images/menu-hero.jpg') no-repeat center/cover;
  color: #fff;
}

.menu-hero h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.menu-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}