* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Oswald', Arial, sans-serif; /* Pizzerias look great with bold fonts */
}

html {
  scroll-behavior: smooth;
}

body {
  background: #fdfdfd;
  color: #2d2d2d;
}

/* HEADER */
header {
  background: #c62828; /* Pizza Red */
  color: white;
  text-align: center;
  padding: 40px 15px;
}

/* NAV */
nav {
  background: #1b5e20; /* Basil Green */
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 12px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.menu-links a {
  color: white;
  margin-right: 20px;
  text-decoration: none;
  font-weight: bold;
}

.order-btn {
  background: #ffc107; /* Bright Yellow/Orange for Attention */
  color: #333 !important;
  padding: 8px 15px;
  border-radius: 5px;
  font-weight: 900 !important;
}

.nav-socials a {
  color: white;
  margin-left: 15px;
  font-size: 1.2rem;
}

/* HERO */
.hero {
  padding: 50px 20px;
  text-align: center;
  background: #f4f4f4;
  border-bottom: 5px solid #c62828;
}

/* CATEGORY SECTIONS */
.category {
  padding: 60px 20px; 
  text-align: center;
}

.category.light {
  background: #fff9c4; /* Light Dough Yellow */
}

.category h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #c62828;
}

/* ITEMS & CARDS */
.items {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.card {
  background: white;
  width: 240px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden; 
  padding-bottom: 20px;
  border-bottom: 4px solid #c62828;
}

.card img {
  width: 100%;       
  height: 180px;     
  object-fit: cover;
}

.card h3 {
  margin: 15px 0 5px 0;
}

.card span {
  font-weight: bold;
  color: #1b5e20;
  font-size: 1.3rem;
  margin-top: 10px;
}

footer {
  background: #2d2d2d;
  color: white;
  text-align: center;
  padding: 25px;
}

@media (max-width: 900px) {
  .nav-container {
    flex-direction: column;
    gap: 15px;
  }
}