/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

header {
  background: white;
  padding: 0.1rem 0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  margin-bottom: 1.2rem;
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  font-size: 1.4rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}

.nav-links a:hover {
  border-color: #333;
}


/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */

.contact-hero {
  margin-bottom: 2rem;
}

.contact-hero h1 {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
}

.contact-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-bottom: 2rem;
}

.contact-card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.contact-map iframe {
  width: 100%;
  height: 350px;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}


/* ==========================================================================
   FOOTER
   ========================================================================== */

footer {
  background: #f1f1f1;
  padding: 2rem 0;
  margin-top: 3rem;
  color: #444;
}

.footer-container {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.footer-section h4 {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.footer-section p,
.footer-section a {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
  display: block;
}

.footer-section a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #666;
}
