body {
  margin: 0;
  font-family: "Helvetica Neue", sans-serif;
  background: #fff;
  color: #333;
  line-height: 1.6;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem;
}
.site-header {
  background: #fff;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #eee;
}
.site-header .logo {
  height: 50px;
  width: auto;
}
.site-header .phone {
  font-size: 1.25rem;
  color: #d33;
  font-weight: bold;
  text-decoration: none;
}
.site-header .phone:hover {
  text-decoration: underline;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px;
  margin: auto;
}
nav a {
  margin-left: 1rem;
  text-decoration: none;
  color: #d33;
  font-weight: bold;
}
.contact-section {
  padding: 2rem;
  background: #fafafa;
}
.contact-info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.contact-info div, .b2b {
  margin-bottom: 1rem;
}
.map iframe {
  width: 100%;
  height: 450px;
}

h1,
h2,
h3 {
  color: #d33;
}
figure {
  margin: 1.5rem 0;
}
img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

ul {
  padding-left: 1.5rem;
  margin: 1rem 0;
}
.events {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.event-card {
  background: #fff;
  box-shadow: 0 2px 8px rgb(0 0 0 / 0.1);
  border-radius: 6px;
  padding: 1rem;
  max-width: 400px;
  flex: 1 1 350px;
  box-sizing: border-box;
}
.event-card figure {
  margin: 0 0 1rem 0;
}
.event-card h3 {
  margin: 0 0 0.5rem 0;
}
.events img {
  width: 350px;
  height: 450px;
  border-radius: 6px;
  object-fit: cover;
}

/* Pizza Carousel Styles */
.pizza-carousel-section {
  margin: 3rem 0;
  text-align: center;
}

.carousel-container {
  position: relative;
  max-width: 900px;
  margin: 1rem auto 2rem auto;
  overflow: hidden;
}

.carousel-track-container {
  overflow: hidden;
  margin: 0 3rem; /* room for buttons */
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
  padding: 0;
  margin: 0;
  list-style: none;
}
.carousel-track2 {
  display: flex;
  transition: transform 0.4s ease-in-out;
  padding: 0;
  margin: 0;
  list-style: none;
}

.carousel-item2, 
.carousel-item {
  min-width: 120px;
  margin-right: 5px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgb(0 0 0 / 0.1);
  padding: 1rem;
  box-sizing: border-box;
  flex-shrink: 0;
}

.carousel-item2 img, 
.carousel-item img {
  width: 120px;
  height: 120px;
  border-radius: 5px;
  object-fit: cover;
}

.carousel-item2 h3, 
.carousel-item h3 {
  margin: 0.5rem 0 0.25rem 0;
  font-size: 1rem;
  color: #d33;
}

.carousel-item2 .price, 
.carousel-item .price {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.carousel-item2 p,
.carousel-item p {
  font-size: 0.8rem;
  color: #555;
  max-width: 120px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background-color: transparent;
  font-size: 2rem;
  color: #d33;
  cursor: pointer;
  padding: 0 10px;
  user-select: none;
  z-index: 10;
}

.carousel-btn.prev2,
.carousel-btn.prev {
  left: 0;
}

.carousel-btn.next2,
.carousel-btn.next {
  right: 0;
}

.carousel-btn:focus {
  outline: 2px solid #d33;
}








body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background: #fafafa;
  color: #333;
}

header {
  background: linear-gradient(90deg, #e63946, #f77f00);
  color: white;
  text-align: center;
  padding: 20px 10px;
}

h1 {
  margin: 0;
  font-size: 2.5rem;
}

.pizza-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  padding: 40px;
  max-width: 1200px;
  margin: auto;
}

.pizza-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pizza-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.pizza-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.pizza-content {
  padding: 20px;
}

.pizza-title {
  font-size: 1.3rem;
  margin-bottom: 8px;
  font-weight: bold;
  color: #e63946;
}

.pizza-description {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 12px;
}

.pizza-price {
  font-size: 1.1rem;
  font-weight: bold;
  color: #333;
  text-align: right;
}

