/* Grundlegendes Styling */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

/* Header */
header {
    background: #000;
    color: #fff;
    padding: 1rem 0;
    border-bottom: 3px solid #d4af37; /* Orange als Akzentfarbe */
}

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

header .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}

header nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

header nav ul li {
    margin-left: 1.5rem;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #d4af37;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #d4af37;
    margin: 2px 0;
    transition: 0.4s;
}

@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: #000;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
    }
}


/* Hero Section */
#hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('Images Alchemie/transformation.jpeg') no-repeat center/cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 80%;
    margin-top: 0 auto;
}

#hero h1 {
    font-size: 5rem;
    margin-bottom: 1rem;
}

#hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

#hero h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    background: #d4af37;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
    font-size: 1.2rem;
}

.btn:hover {
    background: #a47f05;
}

/* Responsive Design */
@media (max-width: 768px) {
    #hero h1 {
        font-size: 3rem;
    }
    #hero h2 {
        font-size: 2rem;
    }
    #hero h3 {
        font-size: 1.2rem;
    }
}

/* Seminarbeschreibung Section */
#seminar-beschreibung {
    padding: 3rem 0;
    background: #000;
}

#seminar-beschreibung h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #d4af37;
}

.beschreibung-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
}

.beschreibung-bereich {
    flex-basis: calc(27% - 0.5rem);
    margin-bottom: 2rem;
    padding: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    transition: transform 0.3s ease;
    background: #fff;
}

.beschreibung-bereich:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.beschreibung-bereich h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #d4af37;
}

.beschreibung-bereich p {
    margin-bottom: 1rem;
}

.beschreibung-bereich ul {
    list-style-type: none;
    padding-left: 0;
}

.beschreibung-bereich ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.beschreibung-bereich ul li::before {
    content: "•";
    color: #d4af37;
    position: absolute;
    left: 0;
}

@media (max-width: 1024px) {
    .beschreibung-bereich {
        flex-basis: calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    #seminar-beschreibung h2 {
        font-size: 1.5rem;
    }

    .beschreibung-bereich {
        flex-basis: 100%;
    }

    .beschreibung-bereich h3 {
        font-size: 1.2rem;
    }
}



/* Seminare Section */
#seminare {
    padding: 3rem 0;
    background: #fff;
}

#seminare h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

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

.seminar-item {
    padding: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.seminar-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.seminar-item img {
    width: 100%;
    height: 200px; /* Feste Höhe für die Bilder */
    object-fit: cover; /*Stellt sicher, dass die Bilder den Bereich ausfüllen und das Seitenverhältnis beibehalten */
    border-radius: 5px;
    margin-bottom: 1rem;
}


.seminar-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.seminar-item p {
    font-size: 0.9rem;
    color: #555;
}

.btn-primary {
    display: inline-block;
    background-color: #d4af37;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.3s ease;
    margin-right: 1rem;
  }
  .btn-primary:hover {
    background-color: #a47f05;
  }
  
  .btn-secondary {
    display: inline-block;
    background-color: #fff;
    color: #d4af37;
    padding: 0.8rem 1.5rem;
    border: 2px solid #d4af37;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  .btn-secondary:hover {
    background-color: #d4af37;
    color: #fff;
  }

  .seminar-buttons {
    display: flex;
    flex-direction: column; /* Buttons untereinander */
    align-items: center;    /* Zentriert horizontal */
    gap: 1rem;              /* Abstand zwischen den Buttons */
    margin-top: 1.5rem;
  }
  
  
  

/* Über Mich & Kontakt */
#ueber-mich {
    padding: 4rem 0;
    background-color: #d4af37;
}

#ueber-mich .container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    padding: 50px;
    border-radius: 8px;
}

#ueber-mich h1 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.ueber-mich-content {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
}

#ueber-mich img {
    width: 300px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.ueber-mich-text {
    flex: 1;
}

.ueber-mich-text p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #444;
}

/* Responsive Design */
@media (max-width: 1024px) {
    #ueber-mich .container {
        padding: 30px;
    }

    .ueber-mich-content {
        gap: 2rem;
    }

    #ueber-mich img {
        width: 250px;
    }
}

@media (max-width: 768px) {
    #ueber-mich {
        padding: 2rem 0;
    }

    #ueber-mich .container {
        padding: 20px;
    }

    .ueber-mich-content {
        flex-direction: column;
        align-items: center;
    }

    #ueber-mich img {
        width: 200px;
        margin-bottom: 1.5rem;
    }

    .ueber-mich-text {
        text-align: center;
    }
}

@media (max-width: 480px) {
    #ueber-mich h1 {
        font-size: 1.5rem;
    }

    .ueber-mich-text p {
        font-size: 0.9rem;
    }

    #ueber-mich img {
        width: 150px;
    }
}

/* Kontaktformular Styles */
#kontakt {
    padding: 3rem 0;
    background: #f9f9f9;
  }
  
  #kontakt h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #333;
  }
  
  .kontakt-einleitung {
    max-width: 700px;
    margin: 0 auto 2rem auto;
    padding: 1rem 1.5rem;
    background-color: #ffffff;
    border-left: 4px solid #d4af37;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    font-size: 1.1rem;
    color: #444;
    line-height: 1.6;
    text-align: center;
  }
  
  .kontakt-form {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  }
  
  .kontakt-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #555;
    font-weight: 500;
    font-size: 1rem;
  }
  
  .kontakt-form input[type="text"],
  .kontakt-form input[type="email"],
  .kontakt-form textarea,
  .kontakt-form select {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 1rem;
    color: #333;
  }
  
  .kontakt-form select {
    appearance: none;
    background-color: #fff;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2210%22%20height%3D%226%22%20viewBox%3D%220%200%2010%206%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M0%200l5%206%205-6z%22%20fill%3D%22%23333%22/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.7rem center;
    background-size: 10px 6px;
    padding-right: 2rem;
  }
  
  .kontakt-form textarea {
    resize: vertical;
    min-height: 150px;
  }
  
  .kontakt-form input[type="checkbox"] {
    margin-right: 0.5rem;
  }
  
  .kontakt-form .consent-label {
    display: inline;
    font-size: 0.9rem;
    color: #777;
  }
  
/* Sicherstellung der Lesbarkeit und Größe bei Auswahlfeldern */
select,
.kontakt-form select,
.kontakt-form .seminar-auswahl {
  font-size: 1rem !important;
  line-height: 1.4;
  padding: 0.75rem;
  color: #333;
  background-color: #fff;
  border: 2px solid #d4af37;
  border-radius: 5px;
  width: 100%;
  box-sizing: border-box;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23333'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 10px 6px;
}

/* Für Mobilgeräte: extra groß setzen */
@media (max-width: 768px) {
  select,
  .kontakt-form select {
    font-size: 1.05rem !important;
  }
}

/* Einleitung sicher anzeigen */
.kontakt-einleitung {
  max-width: 700px;
  margin: 0 auto 2rem auto;
  padding: 1rem 1.5rem;
  background-color: #ffffff;
  border-left: 4px solid #d4af37;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
  text-align: center;
}


  .kontakt-form .btn {
    display: inline-block;
    background: #d4af37;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
    font-size: 1.1rem;
    font-weight: 600;
  }
  
  .kontakt-form .btn:hover {
    background: #a47f05;
  }
  
  /* Responsive Optimierungen */
  @media (max-width: 768px) {
    .kontakt-form {
      padding: 1.5rem;
    }
  
    #kontakt h2 {
      font-size: 1.75rem;
    }
  
    .kontakt-einleitung {
      font-size: 1rem;
      padding: 1rem;
    }
  
    .kontakt-form label {
      font-size: 0.95rem;
    }
  
    .kontakt-form input[type="text"],
    .kontakt-form input[type="email"],
    .kontakt-form textarea,
    .kontakt-form select {
      padding: 0.6rem;
      font-size: 1rem;
      margin-bottom: 1.2rem;
    }
  
    .kontakt-form .consent-label {
      font-size: 0.85rem;
    }
  
    .kontakt-form .btn {
      font-size: 1rem;
      width: 100%;
      text-align: center;
    }
  }
  
  /* Footer */
  footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
  }
  
  footer a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  footer a:hover {
    color: #fff;
    text-decoration: underline;
  }
  
  .social-links {
    margin-top: 10px;
    text-align: center;
  }
  
  .social-links a {
    display: inline-block;
    margin: 0 5px;
  }
  
  .social-links img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  /* Media Queries für Layout */
  @media (max-width: 768px) {
    .container {
      width: 90%;
    }
  
    header .container {
      flex-direction: column;
      text-align: center;
    }
  
    header nav ul {
      margin-top: 1rem;
      flex-direction: column;
      align-items: center;
    }
  
    header nav ul li {
      margin-left: 0;
      margin-bottom: 0.5rem;
    }
  
    #hero h1 {
      font-size: 2rem;
    }
  
    .seminar-grid {
      grid-template-columns: 1fr;
    }
  }
  