/* GENERAL STYLES */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background-color: #fff;
  color: #111;
}

a {
  text-decoration: none;
}

/* HERO SECTION */
.hero {
  position: relative;
  width: 100%;
  height: 1120px;
  background: linear-gradient(
      rgba(0,0,0,0.4),
      rgba(0,0,0,0.4)
    ),
    url('mph logo.jpg'); /* Replace 'pizza.jpg' with your image */
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 15px;
  font-weight: 700;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.hero-content .order-btn {
  display: inline-block;
  padding: 16px 40px;
  background-color: #e63946;
  color: white;
  font-size: 20px;
  font-weight: 600;
  border-radius: 30px;
  transition: 0.3s;
}

.hero-content .order-btn:hover {
  background-color: #c92c38;
  transform: scale(1.05);
}

/* INFO CONTAINER (TRADING HOURS + CONTACT) */
.info-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 40px auto;
  flex-wrap: wrap;
}

.info-container .info {
  flex: 1;
  min-width: 280px;
  background-color: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  text-align: left;
}

.info-container .info h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

/* HOURS LIST */
.hours {
  list-style: none;
  padding: 0;
  line-height: 1.8;
  font-size: 18px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    height: 400px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-content .order-btn {
    font-size: 16px;
    padding: 14px 30px;
  }

  .info-container {
    flex-direction: column;
    gap: 20px;
  }

  .info-container .info {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .hero {
    height: 600px; /* adjusts automatically for smaller screens */
  }
}
.map-container {
  margin-top: 20px;
  width: 100%;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
