/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  background: #fff;
  color: #333;
  line-height: 1.6;
}

/* UNIVERSAL CONTAINER */
.container {
  max-width: 1200px;
  margin: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* HEADER */
.header-flex {
  background-color: #cde8fb;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 60px;
  flex-wrap: wrap;
}

.logo {
  height: 70px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.nav-links li a {
  text-decoration: none;
  color: #e63946;
  font-weight: bold;
  font-size: larger;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #000;
}

.menu-icon {
  display: none;
  font-size: 30px;
  cursor: pointer;
}

#menu-toggle {
  display: none;
}

.phone.desktop-only {
  color: #e63946;
  font-weight: bold;
  font-size: larger;
  text-decoration: none;
}

.mobile-call {
  display: none;
  font-size: 22px;
  color: #e63946;
  position: absolute;
  left: 20px;
  top: 15px;
}

/* HERO */
.hero-modern {
  background: linear-gradient(135deg, #ffeedf, #ffe3dd);
  padding: 70px 20px 60px;
  text-align: center;
  border-bottom: 1px solid #f4d3ca;
}

.hero-inner {
  max-width: 500px;
  margin: auto;
}

.hero-modern h1 {
  font-size: 36px;
  color: #e63946;
  font-weight: 900;
  margin-bottom: 10px;
}

.subtext {
  font-size: 18px;
  font-weight: 500;
  color: #444;
  margin-bottom: 25px;
}

.cta-call {
  display: inline-block;
  font-size: 18px;
  background: #e63946;
  color: #fff;
  padding: 14px 24px;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 5px 20px rgba(230, 57, 70, 0.3);
  transition: background 0.3s ease, transform 0.2s ease;
}

.cta-call i {
  margin-right: 10px;
}

.cta-call:hover {
  background: #d92f3a;
  transform: translateY(-2px);
}

/* MENU SECTION */
.menu-section {
  padding: 30px 0;
  text-align: center;
}

.menu-section h2 {

  font-size: 1.8rem;
  font-weight: 700;
  color: #222;

  margin-bottom: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.red-icon {
  color: #e63946;
}

/* MENU TABLE */
.menu-table {
  overflow-x: auto;
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  margin-bottom: 20px;
}

.menu-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.menu-table th,
.menu-table td {
  padding: 14px 10px;
  border-bottom: 1px solid #eee;
  text-align: center;
}

.menu-table th {
  background: #ffecec;
  color: #e63946;
  font-weight: 700;
  position: sticky;
  top: 0;
  z-index: 2;
}

.menu-table tr:nth-child(even) {
  background: #fafafa;
}

.menu-table td:first-child {
  font-weight: bold;
  text-align: center;
}

.price-highlight {
  color: #333;
}

.size-label {
  font-size: 16px;
  color: #777;
}

.disclaimer {
  font-size: 13px;
  color: #666;
  margin-top: 8px;
}

.toppings {
  font-size: 13px;
  color: #444;
  margin-top: 10px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* CLASSIC PIZZAS */
.classic-pizzas {
  padding: 0px 0;
}

.classic-pizzas h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.classic-pizza-list {
  list-style: none;
  padding: 0;
}

.classic-pizza-list li {
  margin: 20px 0;
  border-bottom: 1px dashed #ccc;
  padding-bottom: 10px;
}

.classic-pizza-list span {
  display: block;
  font-size: 0.95rem;
  color: #555;
  margin-top: 5px;
}

/* SIDES */
.sides {
  padding: 20px 20px;
}

.sides h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.sides-list {
  list-style: none;
  max-width: 500px;
  margin: auto;
  padding: 0;
}

.sides-list li {
  font-size: 1rem;
  margin: 10px 0;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed #ddd;
  padding-bottom: 5px;
}

.pickup-note {
  font-size: 0.95rem;
  color: #333;
  text-align: center;
  margin-top: 20px;
}

/* REVIEWS */
.reviews {
  padding: 20px 0;
}

.reviews blockquote {
  margin: 20px auto;
  font-style: italic;
  max-width: 600px;
  color: #555;
  text-align: center;
}

/* VIDEOS */
.videos {
  padding: 20px 0;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* GALLERY */
.gallery {
  padding: 0;
}

.photos {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.photos img {
  max-width: 400px;
  width: 100%;
  border-radius: 8px;
}

/* ABOUT */
.about {
  padding: 20px 0;
}

.about p {
  max-width: 700px;
  margin: auto;
  text-align: center;
  font-size: 1rem;
  color: #444;
}

/* LOCATION */
.location {
  padding-top: 0px;
  padding-bottom: 30px;
}

.location iframe {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}

.location p {
  text-align: center;
  font-size: 0.95rem;
}

/* FOOTER */
footer {
  background-color: #cde8fb;
  padding: 30px 0;
  text-align: center;
  color: #333;
}

footer .social a {
  margin: 0 10px;
  color: #e63946;
  text-decoration: none;
}

footer .social a:hover {
  text-decoration: underline;
}

.credit {
  font-size: 0.8em;
  color: #777;
  margin-top: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #cde8fb;
    padding: 10px 0;
  }

  #menu-toggle:checked + .menu-icon + .nav-links {
    display: flex;
  }

  .menu-icon {
    display: block;
  }

  .phone.desktop-only {
    display: none;
  }

  .mobile-call {
    display: block;
  }

  .classic-pizza-list li {
    text-align: left;
  }

  .cta-call {
    font-size: 16px;
    padding: 12px 20px;
  }
}


.nav-container {
  max-width: 100%;
}

.classic-pizza-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.pizza-card {
  background-color: #fff4f4;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pizza-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.pizza-card h3 {
  color: #e63946;
  font-size: 20px;
  margin-bottom: 10px;
}

.pizza-card p {
  color: #444;
  font-size: 15px;
  line-height: 1.5;
}

.sides-grid {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.side-card {
  background: #fff8e1; /* soft buttery yellow */
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
  text-align: center;
  font-size: 1.05rem;
  padding: 30px 25px;
  
  
}

.side-card:hover {
  transform: translateY(-4px);
}

.side-card h3 {
  font-size: 1.2rem;
  color: #e63946;
  margin-bottom: 10px;
}

.side-price {
  font-weight: bold;
  font-size: 1.1rem;
  color: #333;
}

.section-title {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
  font-weight: 700;
  color: #222;
}

.section-title i {
  margin-right: 8px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.review-card {
  background: #fff7f7;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #ff4d4d;
}

.review-card h3 {
  margin-top: 0;
  color: #d72323;
  font-weight: 600;
}

.review-card p {
  margin: 10px 0 0;
  line-height: 1.5;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

.story-content {
  background: #fff5f5;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  line-height: 1.8;
  font-size: 1.1rem;
  color: #333;
}

.story-content p + p {
  margin-top: 1.2rem;
}

footer .social {
  margin-top: 15px;
}

footer .social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 12px;
  color: #e63946;
  font-size: 16px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease, transform 0.2s ease;
}

footer .social a:hover {
  color: #000;
  transform: scale(1.05);
}
