/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f5f6fa;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  background: linear-gradient(90deg, #222, #444);
  color: #fff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 20;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

header h1 {
  font-size: 1.8rem;
  font-weight: 700;
}

h1 a {
  color: white;
  text-decoration: none;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.2rem;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

nav a.active,
nav a:hover {
  color: #ffcc00;
}

.menu-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  display: none;
}

/* Contact Section */
.contact-section {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
  text-align: center;
}

.contact-header {
  margin-bottom: 2rem;
}

.contact-header h2 {
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact-header p {
  color: #555;
  font-size: 1.1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 2rem;
}

.contact-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-icon {
  font-size: 2.8rem;
  color: #ffcc00;
  margin-bottom: 1rem;
}

.contact-card h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: #111;
  font-weight: 600;
}

.contact-card p {
  font-size: 1rem;
  color: #666;
}

.card-details {
  margin-top: 1rem;
}

.card-details p a {
  color: #222;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.card-details a:hover {
  color: #ff9900;
}

/* Info Section */
.info-section {
  max-width: 1200px;
  margin: 0 auto 2rem;
  padding: 0 1rem;
}

.info-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.hours-card,
.location-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hours-card h2,
.location-card h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #222;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Business Hours Alignment */
.hours-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.05rem;
  padding: 6px 0;
  border-bottom: 1px solid #eee;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row span:first-child {
  font-weight: 600;
  color: #333;
}

.hours-row span:last-child {
  color: #555;
}

.hours-row span:last-child.closed {
  color: red;
  font-weight: 600;
}

.location-card p {
  margin-bottom: 1rem;
}

.map-container {
  overflow: hidden;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  position: relative;
  height: 0;
  border-radius: 10px;
  margin-top: 1rem;
}

.map-container iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  border: none;
}

.directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffcc00;
  color: #222;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.directions-btn:hover {
  background: #222;
  color: #ffcc00;
}

/* Footer & Social Icons */
footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 1.5rem;
  margin-top: 2rem;
}

.social-links {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.social-links a {
  color: #fff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #ffcc00;
}

/* Responsive Menu and Layout Adjustments */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    background: #222;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    text-align: center;
    transform: translateY(-150%);
    transition: transform 0.3s ease-in-out;
    z-index: 10;
  }
  
  nav ul.show {
    transform: translateY(0);
  }
  
  nav ul li {
    padding: 1rem;
  }
  
  .menu-btn {
    display: block;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .info-container {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) {
  .info-container {
    grid-template-columns: 1fr 2fr;
  }
}
