/* contact.css */
.hero {
  height: 60vh;
  background-image: url("../images/contact.webp");
  background-size: cover;
  background-position:bottom;
  background-attachment: fixed;
  position: relative;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.hero-overlay h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.hero-overlay p {
  font-size: 1.5rem;
  margin: 0;
}

.contact-info {
  padding: 4rem 2rem;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.info-card {
  text-align: center;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.info-card i {
  font-size: 2.5rem;
  color: #343a40;
  margin-bottom: 1rem;
}

.info-card h3 {
  margin-bottom: 1rem;
  color: #343a40;
}

.info-card a {
  color: #6c757d;
  text-decoration: none;
  transition: color 0.3s;
}

.info-card a:hover {
  color: #343a40;
}

.map-section {
  padding: 0 2rem 1rem;
}

.map-section iframe {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.business-hours {
  padding: 0 1rem;
}

.hours-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 500px;
  margin: 2rem auto;
}

.day {
  font-weight: bold;
  text-align: right;
  padding-right: 1rem;
}

.time {
  text-align: left;
}

@media (max-width: 768px) {
  .hero-overlay h1 {
    font-size: 2.5rem;
  }

  .hero-overlay p {
    font-size: 1.2rem;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }
}
