@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Lato:wght@300;400;600&display=swap");

/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #f8f4e9;
  font-family: "Lato", sans-serif;
  color: #2b1d1d;
  overflow-x: hidden;
}

/* ================= NAVBAR ================= */
.nav {
  background: #5a0e0e;
  padding: 20px 70px;
  border-bottom: 3px solid #c9a227;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1350px;
  margin: auto;
}

/* Logo */
.logo img {
  height: 60px;
}

/* Nav Right */
.nav nav {
  display: flex;
  align-items: center;
}

.nav nav a {
  color: #f8f4e9;
  text-decoration: none;
  margin-left: 45px;
  font-weight: 500;
  letter-spacing: 1.5px;
  font-size: 20px;
  position: relative;
  transition: 0.3s ease;
}

/* Hover Gold */
.nav nav a:hover {
  color: #c9a227;
}

/* Underline Animation */
.nav nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0%;
  height: 2px;
  background: #c9a227;
  transition: 0.3s ease;
}

.nav nav a:hover::after {
  width: 100%;
}

/* ================= HERO ================= */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 140px 90px;
  background: linear-gradient(135deg, #8b0000, #5a0e0e);
  color: #f8f4e9;
}

.hero-left {
  max-width: 550px;
}

.hero h2 {
  font-family: "Playfair Display", serif;
  font-size: 60px;
  margin-bottom: 25px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 40px;
  line-height: 1.7;
}
/* ===== MOBILE BUTTON FIX ===== */
@media (max-width: 768px) {
  .btn {
    padding: 14px 20px;
    font-size: 14px;
    display: inline-block;
    width: auto;
    max-width: 90%;
    white-space: normal;
  }
}

.btn:hover {
  background: #b8921d;
}

.hero-right img {
  width: 450px;
  max-width: 100%;
}

/* ================= SECTIONS ================= */
.section {
  max-width: 1200px;
  margin: auto;
  padding: 50px 40px;
}

.section h3 {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  margin-bottom: 30px;
  position: relative;
}

/* Gold Accent Line */
.section h3::before {
  content: "";
  width: 70px;
  height: 3px;
  background: #c9a227;
  position: absolute;
  top: -18px;
  left: 0;
}

.section p {
  font-size: 17px;
  line-height: 1.8;
}

/* ================= MENU LIST ================= */
.menu-list {
  list-style: none;
  margin-top: 30px;
}

.menu-list li {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid #ddd;
  font-size: 17px;
}

/* ================= CTA ================= */
.cta {
  background: linear-gradient(135deg, #5a0e0e, #8b0000);
  padding: 120px 20px;
  text-align: center;
  position: relative;
}

.cta::before {
  content: "";
  width: 120px;
  height: 4px;
  background: #c9a227;
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
}

.cta-inner {
  max-width: 750px;
  margin: auto;
  color: #f8f4e9;
}

.cta h2 {
  font-family: "Playfair Display", serif;
  font-size: 46px;
  margin-bottom: 30px;
}

.cta p {
  font-size: 19px;
  margin-bottom: 40px;
}

.cta .btn {
  font-size: 17px;
  padding: 18px 50px;
}

/* ================= FOOTER ================= */
footer {
  background: #2b1d1d;
  color: #c9a227;
  text-align: center;
  padding: 50px;
  font-size: 15px;
  letter-spacing: 1px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1100px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-right img {
    margin-top: 50px;
    width: 300px;
  }

  .nav-inner {
    flex-direction: column;
  }

  .nav nav {
    margin-top: 15px;
  }

  .nav nav a {
    margin: 0 15px;
  }
}
/* ================= SPLIT MENU HERO ================= */

.menu-hero {
  background: linear-gradient(135deg, #7a0c0c, #4a0707);
  padding: 120px 80px;
  color: #f8f4e9;
}

.menu-hero-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.menu-hero-text {
  flex: 1;
}

.menu-hero-text h1 {
  font-family: "Playfair Display", serif;
  font-size: 70px;
  margin-bottom: 25px;
}

.menu-hero-text p {
  font-size: 22px;
  line-height: 1.8;
  margin-bottom: 45px;
  color: #f3e7d3;
}

.menu-hero-text .btn {
  padding: 16px 45px;
  background: #c9a227;
  color: #2b1d1d;
  font-weight: 600;
  letter-spacing: 1px;
  transition: 0.3s ease;
}

.menu-hero-text .btn:hover {
  background: #b8921d;
  transform: translateY(-3px);
}

.menu-hero-image {
  flex: 1;
  text-align: right;
}

.menu-hero-image img {
  width: 500px;
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

/* Responsive */
@media (max-width: 1000px) {
  .menu-hero-container {
    flex-direction: column;
    text-align: center;
  }

  .menu-hero-image {
    text-align: center;
    margin-top: 40px;
  }

  .menu-hero-text h1 {
    font-size: 48px;
  }

  .menu-hero-text p {
    font-size: 18px;
  }
}
/* ================= HOUSE FAVORITES ================= */

.favorites-section {
  max-width: 1200px;
  margin: auto;
  padding: 110px 50px;
}

.favorites-header {
  text-align: center;
  margin-bottom: 70px;
}

.favorites-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  margin-bottom: 15px;
  position: relative;
}

.favorites-header h2::after {
  content: "";
  width: 80px;
  height: 3px;
  background: #c9a227;
  display: block;
  margin: 18px auto 0;
}

.favorites-header p {
  font-size: 17px;
  color: #5a4a4a;
}

/* Grid Layout */
.favorites-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.favorite-card {
  background: #ffffff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  overflow: hidden;
  transition: 0.3s ease;
}

.favorite-card:hover {
  transform: translateY(-6px);
}

.favorite-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.favorite-content {
  padding: 25px;
}

.favorite-title {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 12px;
}

.favorite-title span:last-child {
  color: #8b0000;
  font-weight: 700;
}

.favorite-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}

/* Responsive */
@media (max-width: 900px) {
  .favorites-grid {
    grid-template-columns: 1fr;
  }
}
/* ================= PICK UP SPECIALS ================= */

.pickup-section {
  max-width: 1200px;
  margin: auto;
  padding: 110px 60px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  margin-bottom: 15px;
  position: relative;
}

.section-header h2::after {
  content: "";
  width: 80px;
  height: 3px;
  background: #c9a227;
  display: block;
  margin: 18px auto 0;
}

.section-header p {
  font-size: 17px;
  color: #5a4a4a;
}

/* List Style */
.pickup-list {
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  padding: 40px;
}

.pickup-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  border-bottom: 1px solid #e4e4e4;
}

.pickup-item:last-child {
  border-bottom: none;
}

.pickup-item h4 {
  font-size: 18px;
  margin-bottom: 6px;
}

.pickup-item p {
  font-size: 14px;
  color: #777;
}

.pickup-item .price {
  font-weight: 700;
  font-size: 18px;
  color: #8b0000;
}
/* ===== ROYAL PIZZA SECTION ===== */
.royal-pizza-section {
  max-width: 1200px;
  margin: auto;
  padding: 110px 60px;
}

.royal-header {
  text-align: center;
  margin-bottom: 60px;
}

.royal-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  margin-bottom: 12px;
  position: relative;
}

.royal-header h2::after {
  content: "";
  width: 80px;
  height: 3px;
  background: #c9a227;
  display: block;
  margin: 18px auto 0;
}

.royal-header p {
  font-size: 17px;
  color: #5a4a4a;
}

/* Grid */
.royal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

/* Card */
.royal-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  position: relative;
  transition: 0.3s ease;
  min-height: 320px; /* Keeps balance */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.royal-card:hover {
  transform: translateY(-6px);
}

/* Image */
.royal-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

/* Text-only card fix */
.royal-card.text-only {
  padding-top: 40px;
  justify-content: center;
}

/* Content */
.royal-content {
  padding: 25px;
}

.royal-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 12px;
}

.royal-title span:last-child {
  color: #8b0000;
  font-weight: 700;
}

.royal-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

/* Best Seller Badge */
.badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #c9a227;
  color: #2b1d1d;
  font-size: 12px;
  padding: 6px 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 3px;
}

/* Responsive */
@media (max-width: 900px) {
  .royal-grid {
    grid-template-columns: 1fr;
  }

  .royal-card {
    min-height: auto;
  }
}
/* ================= PIZZA BY THE SLICE ================= */

.slice-section {
  max-width: 1200px;
  margin: auto;
  padding: 110px 60px;
}

.slice-list {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  padding: 40px;
}
.slice-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
  font-size: 17px;
  gap: 15px;
}
.slice-item span:first-child {
  flex: 1;
}

.slice-item .price {
  white-space: nowrap;
}
.slice-item:last-child {
  border-bottom: none;
}

.slice-item .price {
  font-weight: 700;
  color: #8b0000;
}
/* ================= WINGS SECTION ================= */

.wings-section {
  max-width: 1200px;
  margin: auto;
  padding: 110px 60px;
}

/* Reusing same grid as pizza */
.royal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

/* Card */
.royal-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  position: relative;
  transition: 0.3s ease;

  display: flex;
  flex-direction: column;
  min-height: 430px;
}

.royal-card:hover {
  transform: translateY(-6px);
}

/* Image */
.royal-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

/* Placeholder for missing image */
.image-placeholder {
  width: 100%;
  height: 260px;
  background: linear-gradient(135deg, #f3efe6, #e8e0d1);
}

/* Content */
.royal-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.royal-title {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 18px;
}

.royal-title span:last-child {
  color: #8b0000;
  font-weight: 700;
}

/* Description */
.royal-content p {
  margin-top: auto;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* Best Seller Badge */
.badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #c9a227;
  color: #2b1d1d;
  font-size: 12px;
  padding: 6px 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 4px;
  z-index: 2;
}

/* Responsive */
@media (max-width: 900px) {
  .royal-grid {
    grid-template-columns: 1fr;
  }
}
/* ================= ROYAL SPECIALTIES ================= */

.royal-specialties {
  max-width: 1200px;
  margin: auto;
  padding: 110px 60px;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 80px;
  height: 3px;
  background: #c9a227;
  display: block;
  margin: 18px auto 0;
}

/* GRID */
.specialties-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 45px;
  align-items: stretch; /* IMPORTANT FIX */
}

/* CARD BASE */
.specialty-card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%; /* IMPORTANT FIX */
}

.specialty-card:hover {
  transform: translateY(-6px);
}

/* IMAGE */
.image-wrapper {
  position: relative;
}

.image-wrapper img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

/* BADGE */
.badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #c9a227;
  color: #2b1d1d;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
}

/* CONTENT */
.card-content {
  padding: 25px;
  flex-grow: 1; /* IMPORTANT FIX */
}

/* TITLE + PRICE */
.title-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.title-price h3 {
  font-size: 18px;
  font-weight: 600;
}

.title-price span {
  color: #8b0000;
  font-weight: 700;
}

/* DESCRIPTION */
.card-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .specialties-grid {
    grid-template-columns: 1fr;
  }
}
/* ================= GOURMET PIZZA ================= */

.gourmet-section {
  max-width: 1200px;
  margin: auto;
  padding: 110px 60px;
}

.gourmet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.gourmet-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.gourmet-card:hover {
  transform: translateY(-6px);
}

/* Image cards */
.gourmet-card.with-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.gourmet-card .card-content {
  padding: 25px;
}

/* Text-only cards */
.gourmet-card:not(.with-image) {
  padding: 25px;
}

.title-price {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 12px;
}

.title-price span {
  color: #8b0000;
  font-weight: 700;
}

.gourmet-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}

@media (max-width: 900px) {
  .gourmet-grid {
    grid-template-columns: 1fr;
  }
}
/* ================= CALZONES & STROMBOLIS ================= */

.calzone-section {
  max-width: 1200px;
  margin: auto;
  padding: 110px 60px;
}

.calzone-section .section-title {
  text-align: center;
  margin-bottom: 60px;
}

.calzone-section .section-title h2 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  margin-bottom: 15px;
}

.calzone-section .section-title p {
  max-width: 800px;
  margin: auto;
  color: #555;
  line-height: 1.6;
  font-size: 16px;
}

/* Grid */
.calzone-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* Card */
.calzone-card {
  background: #fff;
  padding: 25px;
  border-radius: 6px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.calzone-card:hover {
  transform: translateY(-5px);
}

/* Title + Price */
.calzone-card .title-price {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
}

.calzone-card .title-price span {
  color: #8b0000;
  font-weight: 700;
}

/* Description */
.calzone-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}

/* Responsive */
@media (max-width: 900px) {
  .calzone-grid {
    grid-template-columns: 1fr;
  }
}
/* ================= CHEESESTEAKS ================= */

.cheesesteak-section {
  max-width: 1200px;
  margin: auto;
  padding: 110px 60px;
}

.cheesesteak-section .section-title {
  text-align: center;
  margin-bottom: 60px;
}

.cheesesteak-section .section-title h2 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  margin-bottom: 15px;
}

.cheesesteak-section .section-title p {
  max-width: 800px;
  margin: auto;
  color: #555;
  line-height: 1.6;
  font-size: 16px;
}

/* Grid */
.cheesesteak-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

/* Card */
.cheesesteak-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.cheesesteak-card:hover {
  transform: translateY(-6px);
}

/* Image */
.cheesesteak-card.with-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.cheesesteak-card .card-content {
  padding: 25px;
}

.cheesesteak-card:not(.with-image) {
  padding: 25px;
}

/* Title + Price */
.title-price {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 12px;
}

.title-price span {
  color: #8b0000;
  font-weight: 700;
}

/* Description */
.cheesesteak-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}

/* Responsive */
@media (max-width: 900px) {
  .cheesesteak-grid {
    grid-template-columns: 1fr;
  }
}
/* ================= SALADS ================= */

.salad-section,
.pasta-section {
  max-width: 1200px;
  margin: auto;
  padding: 110px 60px;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  margin-bottom: 15px;
}

.section-title p {
  max-width: 800px;
  margin: auto;
  color: #555;
  line-height: 1.6;
}

.salad-grid,
.pasta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.salad-card,
.pasta-card {
  background: #fff;
  padding: 25px;
  border-radius: 6px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.salad-card:hover,
.pasta-card:hover {
  transform: translateY(-5px);
}

.title-price {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
}

.title-price span {
  color: #8b0000;
  font-weight: 700;
}

.salad-card p,
.pasta-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}

@media (max-width: 900px) {
  .salad-grid,
  .pasta-grid {
    grid-template-columns: 1fr;
  }
}
.menu-section {
  max-width: 1200px;
  margin: auto;
  padding: 110px 60px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.menu-card {
  background: #fff;
  padding: 25px;
  border-radius: 6px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-5px);
}

.title-price {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
}

.title-price span {
  color: #8b0000;
  font-weight: 700;
}

.menu-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}

@media (max-width: 900px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
}
.image-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 6px 6px 0 0;
}

.image-card .menu-content {
  padding: 20px;
}
/* ================= ORDER CTA SECTION ================= */

.royal-order-cta {
  background: linear-gradient(135deg, #8b0000, #b22222);
  color: #fff;
  padding: 120px 60px;
}

.royal-order-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
}

.order-left {
  width: 55%;
}

.order-left h2 {
  font-size: 42px;
  margin-bottom: 25px;
  letter-spacing: 2px;
}

.order-left p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.order-right {
  width: 40%;
  text-align: right;
}

.order-right h3 {
  font-size: 36px;
  margin-bottom: 20px;
}

.order-address,
.order-hours {
  font-size: 18px;
  margin-bottom: 20px;
}

.order-btn {
  display: inline-block;
  background: #fff;
  color: #8b0000;
  padding: 14px 35px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s ease;
}

.order-btn:hover {
  background: #111;
  color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
  .royal-order-container {
    flex-direction: column;
    text-align: center;
  }
}
/* ================= HERO SECTION ================= */

.hero {
  position: relative;
  height: calc(130vh - 100px);
  display: flex;
  align-items: center;
  padding: 0 8%;
  color: white;

  background-image: url("../assets/royal-pizza-storefront.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.65);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
@media (max-width: 768px) {
  .section {
    padding: 40px 6%;
  }
}
.nav {
  background: #5a0e0e;
  padding: 18px 0;
}

.nav-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 40px;
  font-size: 16px;
}
/* ===== Made Fresh Section ===== */

.fresh-section {
  padding: 100px 0;
  background: #fff;
}

.fresh-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.fresh-image {
  flex: 1;
}

.fresh-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 12px;
}

.fresh-content {
  flex: 1;
}

.fresh-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  margin-bottom: 20px;
}

.fresh-content p {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
}

/* ===== Mobile Fix ===== */

@media (max-width: 900px) {
  .fresh-container {
    flex-direction: column;
    text-align: center;
  }

  .fresh-image img {
    height: auto;
  }
}
.fresh-content h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #c9a227;
  margin-top: 15px;
}
/* ===== What We Serve ===== */

.serve-section {
  padding: 100px 0;
  background: #a10c0c;
  text-align: center;
}

.serve-container {
  width: 85%;
  max-width: 900px;
  margin: auto;
}
/* ===== Why Choose Section ===== */

.choose-section {
  padding: 100px 0;
  background: #f6f6f6;
  text-align: center;
}

.choose-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.choose-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  margin-bottom: 60px;
  color: #222;
  position: relative;
}

/* Gold Accent Line */
.choose-section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #c9a227;
  margin: 15px auto 0;
}

/* Grid Layout */
.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

/* Cards */
.choose-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.choose-card h3 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #222;
}

.choose-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* Hover Effect */
.choose-card:hover {
  transform: translateY(-5px);
}
.serve-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  margin-bottom: 30px;
}

.serve-section p {
  font-size: 18px;
  line-height: 1.9;
  color: #fafafa;
  margin-bottom: 20px;
}
/* ===== Our Story Section ===== */

.story-section {
  padding: 100px 0;
  background: #fff4f4; /* soft pastel red */
}

.story-container {
  width: 85%;
  max-width: 1000px;
  margin: auto;
}

.story-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  margin-bottom: 30px;
  color: #222;
  position: relative;
}

/* Gold Accent Line */
.story-section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #c9a227;
  margin-top: 15px;
}

.story-section p {
  font-size: 18px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 20px;
}
/* ===== Review Section ===== */

.review-section {
  padding: 80px 0;
  background: #dfd6d6; /* same pastel red theme */
  text-align: center;
}

.review-container {
  width: 90%;
  max-width: 800px;
  margin: auto;
}

.review-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  margin-bottom: 20px;
}

.review-section p {
  font-size: 17px;
  color: #555;
  margin-bottom: 30px;
}

.review-qr img {
  width: 180px;
  margin-bottom: 25px;
}

.review-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #c9a227;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}
/* ===== Visit Us Section ===== */

.visit-section {
  width: 100%;
  padding: 120px 20px;
  background: linear-gradient(135deg, #8b0000, #c1121f);
  color: white;
  text-align: center;
}

.visit-content {
  max-width: 800px;
  margin: auto;
}

.visit-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 44px;
  margin-bottom: 25px;
}

.visit-section p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.visit-details p {
  margin: 8px 0;
  font-weight: 500;
}

.visit-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 35px;
  background: #c9a227;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s ease;
}

.visit-btn:hover {
  background: #b8931f;
}
/* ===== Call Us Section (Full Width) ===== */

.call-section {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 120px 20px;
  background: linear-gradient(135deg, #8b0000, #c1121f);
  color: white;
  text-align: center;
}

.call-content {
  max-width: 900px;
  margin: auto;
}

.call-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 44px;
  margin-bottom: 20px;
}

.call-section p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 15px;
}
/* =========================
   MOBILE MENU FIX
========================= */

@media (max-width: 768px) {
  .menu-grid {
    display: block;
  }

  .menu-card {
    width: 100%;
    margin: 20px 0;
  }

  .menu-card img {
    width: 100%;
    height: auto;
    display: block;
  }

  .menu-content {
    padding: 18px;
  }

  .menu-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
  }

  .menu-title h3 {
    font-size: 18px;
  }

  .price {
    font-size: 16px;
    white-space: nowrap;
  }
}
/* ===== MOBILE HERO FIX ONLY ===== */
@media (max-width: 768px) {
  .hero {
    padding: 60px 20px;
    text-align: center;
  }

  .hero h1 {
    font-size: 42px;
    line-height: 1.2;
  }

  .hero p {
    font-size: 16px;
    line-height: 1.6;
    padding: 0 10px;
  }

  .hero button {
    margin-top: 25px;
    padding: 12px 25px;
    font-size: 14px;
    position: static; /* VERY IMPORTANT */
    display: inline-block;
  }
}
header.nav {
  font-size: 16px;
}

header.nav nav a {
  font-size: 16px;
}
/* ===== MOBILE SECTION GAP FIX ===== */
@media (max-width: 768px) {
  section {
    padding: 60px 20px;
  }

  .menu-section {
    padding: 50px 20px;
  }

  h2 {
    margin-bottom: 25px;
  }
}
.item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.item-header h3 {
  font-size: 18px;
}

.price {
  color: #f4a6a6;
  font-weight: 600;
}
@media (max-width: 768px) {
  .item-header h3 {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .slice-section {
    padding: 60px 20px;
  }

  .slice-list {
    padding: 20px;
  }
}
