/* =========================================
   De Goedheyd 2.0 — footer
   ========================================= */

/* ---------- Algemeen ---------- */
.site-footer-2 {
  background-color: #9C8F7C;
  padding: 60px 0;
  color: #fff;
}

.footer-2-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---------- Kolom 1-2: Logo + Contact ---------- */
.footer-2-contact {
  grid-column: span 2;
}

.footer-2-contact .custom-logo-link {
  display: inline-flex;
}

.footer-2-contact .custom-logo {
  max-height: 120px;
  height: auto;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-2-contact-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.footer-2-contact-list li {
  margin-bottom: 0.75rem;
}

.footer-2-contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  transition: opacity 0.2s ease;
  font-family: "Cormorant Garamond";
}

.footer-2-contact-list a:hover {
  opacity: 0.8;
}

.footer-2-contact-list a svg {
  flex-shrink: 0;
}

/* ---------- Kolom 3: Openingstijden ---------- */
.footer-2-hours {
  grid-column: span 1;
}

/* ---------- Kolom 4: Snel naar ---------- */
.footer-2-nav {
  grid-column: span 1;
}

/* ---------- Gedeeld: titels ---------- */
.footer-2-title {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #fff;
  margin: 0 0 0.5rem;
}

.footer-2-divider {
  width: 100%;
  height: 1px;
  background-color: white;
  margin-bottom: 1.25rem;
}

/* ---------- Openingstijden inhoud ---------- */
.footer-2-hours-content {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-family: "Cormorant Garamond";
  font-size: 1.2rem;
  line-height: 1.6;
}

.footer-2-hours-content svg {
  flex-shrink: 0;
  margin-top: 6px;
}

/* ---------- Footer menu ---------- */
.footer-2-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-2-menu li {
  margin-bottom: 0.6rem;
}

.footer-2-menu a {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-family: "Cormorant Garamond";
  font-size: 1.2rem;
  transition: opacity 0.2s ease, padding-left 0.2s ease;
}

.footer-2-menu a:hover {
  opacity: 0.8;
  padding-left: 4px;
}

/* ---------- Responsief ---------- */
@media screen and (max-width: 900px) {
  .footer-2-container {
    grid-template-columns: 1fr 1fr;
  }

  .footer-2-contact {
    grid-column: span 2;
  }
}

@media screen and (max-width: 600px) {
  .footer-2-container {
    grid-template-columns: 1fr;
  }

  .footer-2-contact {
    grid-column: span 1;
  }
}
