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

footer {
  margin-top: 4rem;
  background: #f0ede8;
  padding: 3.5rem 1.5rem 0;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* Brand title */
.footer-brand {
  margin-bottom: 2.5rem;
}

.footer-brand-name {
  font-family: 'Great Vibes', cursive;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #3a2e25;
  display: block;
  padding-bottom: 1rem;
  border-bottom: 1px solid #ccc8c0;
}

/* Columns grid */
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 160px) 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
  align-items: start;
  padding-top: 2rem;
}

.footer-col h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #3a2e25;
  margin-bottom: 1.1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #ccc8c0;
  position: relative;
}

.footer-col h4::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 2rem;
  height: 1px;
  background: var(--gold);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col ul li a {
  font-size: 0.82rem;
  color: #6a5e52;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--gold); }

/* Address block */
.footer-address {
  font-size: 0.82rem;
  line-height: 1.85;
  color: #6a5e52;
}

.footer-address strong { color: #3a2e25; font-weight: 500; }

.footer-address a {
  color: #6a5e52;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-address a:hover { color: var(--gold); }

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid #ccc8c0;
  margin-top: 1.5rem;
  padding: 1.2rem 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Prevent body cream background showing below footer */
body {
  background: #f0ede8;
}

.footer-bottom-left p {
  font-size: 0.72rem;
  color: #aaa;
}

/* ── Social icons — circles, side by side, thin border ── */
.footer-socials-wrap {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
}

.footer-social-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #ccc8c0;
  color: #6a5e52;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  flex-shrink: 0;
}

.footer-social-icon-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-social-icon-btn svg {
  width: 14px;
  height: 14px;
}

.footer-right { text-align: right; }

.highlight { color: #3a2e25; }

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

@media (max-width: 768px) {
  footer {
    margin-top: 2rem;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
  }

  .footer-inner {
    padding: 2.5rem 2rem 0;
    width: 100%;
    box-sizing: border-box;
  }

  /* Logo zentriert, nur eine Linie darunter */
  .footer-brand {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 0;
    border-bottom: none;
  }

  .footer-brand-name {
    font-size: 1.6rem;
    padding-bottom: 0;
    border-bottom: none;
  }

  /* Goldene Linie unter dem Logo */
  .footer-brand::after {
    content: '';
    display: block;
    width: 3rem;
    height: 1px;
    background: var(--gold);
    margin: 1rem auto 0;
  }

  /* Alle Spalten untereinander, zentriert */
  .footer-cols {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding-top: 0;
    margin-bottom: 0;
    width: 100%;
  }

  .footer-col {
    padding: 1.5rem 0;
    border-bottom: 1px solid #e8e4de;
    border-right: none !important;
    text-align: center;
    box-sizing: border-box;
    width: 100%;
  }

  .footer-col:last-child {
    border-bottom: none;
  }

  .footer-col h4 {
    font-size: 0.62rem;
    letter-spacing: 0.28em;
    margin-bottom: 1rem;
    padding-bottom: 0;
    border-bottom: none;
    text-align: center;
  }

  .footer-col h4::before {
    display: none;
  }

  .footer-address {
    font-size: 0.875rem;
    line-height: 1.9;
    text-align: center;
  }

  .footer-address strong {
    display: block;
    margin-bottom: 0.25rem;
  }

  .footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-col ul li {
    margin-bottom: 0.5rem;
  }

  .footer-col ul li a {
    font-size: 0.875rem;
  }

  /* Social Icons zentriert */
  .footer-socials-wrap {
    justify-content: center;
    flex-direction: row;
    gap: 0.75rem;
  }

  .footer-social-icon-btn {
    width: 38px;
    height: 38px;
  }

  .footer-social-icon-btn svg {
    width: 16px;
    height: 16px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.4rem;
    padding: 1rem 1rem 1.5rem;
    margin-top: 0;
  }

  .footer-bottom-left p {
    text-align: center;
  }
}
