body {
  margin: 0;
  font-family: "Helvetica Neue", sans-serif;
  background: #fff;
  color: #333;
  line-height: 1.6;
  max-width: 900px;
  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: 250px;
  margin-right: 16px;
  background: #fff;
  border-radius: 6px;
  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: 350px;
  height: 350px;
  border-radius: 6px;
  object-fit: cover;
}

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

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

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

.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;
}
