/* Playfair Display - Regular */
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400;
  src: url("../assets/fonts/PlayfairDisplay-Regular.ttf") format("ttf");
}

body {
  background-color: #f9f7f5;
}

main {
  padding-top: 20px;
}

header,
main {
  color: #493e3d;
}

.align-items-center,
.text-center {
  text-align: center;
}

* {
  font-family: Helvetica;
  font-weight: 300;
}

h1 {
  letter-spacing: 2px;
  text-transform: uppercase;
}

.header-logo-picture img {
  max-width: 300px;
}

/* Footer Grundstyling */
.site-footer {
  background-color: #f9f9f9; /* Oder #1a1a1a für einen dunklen Look */
  color: #333;
  padding: 60px 20px 20px 20px;
  border-top: 1px solid #e0e0e0;
  font-family: "Montserrat", sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-column {
  flex: 1;
  min-width: 250px;
  margin-bottom: 30px;
}

/* Überschriften im Juwelier-Stil */
.footer-column h3 {
  /*font-family: 'Playfair Display', serif;*/
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

/* Listen und Links */
.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #666;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #000; /* Text wird beim Drüberfahren dunkler */
}

/* Unterste Zeile */
.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0 auto;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
  text-align: center;
  font-size: 0.8rem;
  color: #999;
}

/* Responsive Anpassung für Handys */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-column {
    margin-bottom: 40px;
  }
}
