/* Tablet: 2 Columns */
@media screen and (max-width: 768px) {
/* Mobile First Header */
h1 { font-size: 16px;}
h2 { font-size: 15px;}
h3 { font-size: 14px;}

.navigation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 0;
    text-align: center;
}

.navigation .logo {
    margin-bottom: 1rem;
}

.navigation .logo img {
    max-width: 180px;
    height: auto;
}

.navigation .navi ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    gap: 18px; /* Abstand zwischen Menüpunkten */
    margin: 0;
}

.navigation .navi ul li {
    list-style: none;
}

.navigation .navi ul li a {
    text-decoration: none;
    color: #C8B568;
    font-weight: 600;
    font-size: 1.1rem;
}

.navigation .nav-design {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.design-mode ul {
    padding: 0;
    list-style: none;
    gap: 0.5rem;
    display: flex;
    flex-direction: column;
}

main {
  padding: 0;
}

.profil-links .profile-card {
  width: auto;
  padding: 50px;
}

}

/* Tablet */
@media screen and (min-width: 768px) {
  .footer-columns {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }

  .footer-column {
    flex: 1 1 45%;
    text-align: center;
  }

  .footer-logo-row {
    margin-bottom: 2rem;
  }

  .footer-logo img {
    width: 100px;
  }
}

/* Laptop */
@media screen and (min-width: 1024px) and (max-width: 1279px) {

  .footer-columns {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 2rem;
  }

  .footer-column {
    flex: 1 1 30%;
    text-align: center;
  }

  .footer-logo img {
    width: 110px;
  }
}

/* Desktop */
@media screen and (min-width: 1280px) {

  .footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }

  .footer-column {
    text-align: left;
  }

  .footer-logo-row {
    margin-bottom: 2rem;
  }

  .footer-logo img {
    width: 120px;
  }
}
