/* base.css */



*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f4f6f8;
  color: #333;
}

header {
  padding: 60px 20px;
  text-align: center;
  word-wrap: break-word;
}

header h1, header p {
  margin: 0 auto;
  max-width: 90%;
  word-break: break-word;
}

header h1 {
  font-size: 2.5rem;
}

header p {
  font-size: 1.2rem;
  margin-top: 10px;
}

.section {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.section ul {
  list-style: none;
  padding-left: 0;
}

.section li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.section li::before {
  content: '\f121';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
}

.info-box {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 20px;
  margin-top: 20px;
}

.highlight {
  padding: 10px;
  margin: 20px 0;
  border-left: 4px solid;
}

footer {
  text-align: center;
  padding: 20px;
}

.course-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}

.course-table th,
.course-table td {
  padding: 12px 10px;
  border-bottom: 1px solid #e0e0e0;
  vertical-align: top;
}

.course-table th {
  background-color: #f4f4f4;
  color: #333;
  text-align: left;
}

.contact-cell {
  text-align: left;
}

.contact-horizontal {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.contact-image {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.contact-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.contact-name {
  font-size: 0.95rem;
  font-weight: 500;
  color: #333;
}

.contact-buttons {
  display: flex;
  gap: 10px;
}

.contact-button {
  color: white;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 16px;
  text-decoration: none;
  transition: background-color 0.3s;
  box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}

/* Responsive Design */
@media (max-width: 600px) {
  .course-table thead {
    display: none;
  }

  .course-table,
  .course-table tbody,
  .course-table tr,
  .course-table td {
    display: block;
    width: 100%;
  }

  .course-table tr {
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    padding: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  }

  .course-table td {
    padding: 10px 0;
    border-bottom: none;
  }

  .course-table td::before {
    content: attr(data-label);
    font-weight: bold;
    display: block;
    margin-bottom: 4px;
    color: #777;
  }

  header {
    padding: 30px 15px;
  }

  header h1 {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  header p {
    font-size: 1rem;
    line-height: 1.4;
  }

  .section {
    padding: 0 15px;
    margin: 30px auto;
  }

  .section h2 {
    font-size: 1.5rem;
  }

  .section li {
    font-size: 0.95rem;
    padding-left: 20px;
  }

  .info-box {
    padding: 15px;
  }

  .highlight {
    font-size: 0.95rem;
    padding: 10px 12px;
  }

  .contact-horizontal {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-details {
    width: 100%;
  }

  .contact-buttons {
    justify-content: flex-start;
  }

  .contact-image {
    width: 48px;
    height: 48px;
    max-width: 100%;
  }

  footer {
    flex-direction: column !important;
    text-align: center !important;
    gap: 10px;
  }

  footer div:first-child {
    width: 100%;
    margin-bottom: 10px;
  }
}



*, *::before, *::after {
  box-sizing: border-box;
}


a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  text-decoration: underline;
}


img {
  max-width: 100%;
  height: auto;
  display: block;
}


input, button, textarea, select {
  font: inherit;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0.5em;
}


:focus {
  outline: 2px solid #6db33f;
  outline-offset: 2px;
}

/* Responsive Textgrößen */
@media (max-width: 600px) {
  body {
    font-size: 0.95rem;
  }

  header h1 {
    font-size: 1.6rem;
  }

  header p, .section h2 {
    font-size: 1.1rem;
  }

  .section {
    padding: 0 15px;
  }
}


html {
  scroll-behavior: smooth;
}
.contact-button {
  background-color: var(--primary-color);
  color: white;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  text-decoration: none !important;
  transition: transform 0.2s ease, background-color 0.3s ease;
  box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}

.contact-button:hover {
  background-color: var(--primary-hover);
  transform: scale(1.15);
  text-decoration: none !important;
}


.section.checklist {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
  text-align: left;
}


.section.checklist ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 800px;
}


.section.checklist li {
  margin-bottom: 12px;
}

.section.checklist label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  position: relative;
}


.section.checklist li::before {
  content: none !important;
}

.section.checklist input[type="checkbox"] {
  appearance: auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.section.checklist .check-icon {
  display: none;
  color: var(--primary-color);
  font-weight: bold;
  font-family: monospace;
  font-size: 1rem;
  margin-right: 4px;
  margin-top: 2px;
}

.section.checklist label:has(input[type="checkbox"]:checked) .check-icon {
  display: inline-block;
}

.checklist input[type="checkbox"] {
  appearance: auto;
  accent-color: var(--primary-color); /* oder z. B. #f7931e */
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.section.checklist {
  border-left: none !important;
}

.checklist p {
  color: inherit;
  font-weight: normal;
}


.static-icon {
  display: inline;
  color: var(--primary-color);
  font-weight: bold;
  font-family: monospace;
  font-size: 1rem;
  margin-right: 6px;
}


.checklist input[type="checkbox"]:checked ~ span {
  font-weight: bold;
}

.checklist-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.checklist-title .icon {
  font-family: monospace;
  font-weight: bold;
  font-size: 1rem;
}

.section.checklist {
  max-width:  auto;
  margin: 60px auto;
  padding: 40px 32px; /* mehr Platz oben/unten */  background: #fffaf3;
  border-left: 6px solid #222;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.checklist ul {
  list-style: none;
  padding: 16px 0; 
  margin: 0 auto;
  max-width: 800px;
}

.section.highlight.checklist {
  max-width: auto;
  margin: 60px auto;
  padding: 40px 32px;
  background: #fffaf3;
  border-left: 6px solid #222;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.section.checklist {
  max-width: 720px; /* identisch mit anderen Boxen */
  margin: 40px auto;
  padding: 24px;
  border-radius: 6px;
  background: #fff4e3;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.checklist input[type="checkbox"] {
  appearance: auto; /* oder: none, je nach Browser */
  width: 20px;       /* statt z. B. 16px oder Standard */
  height: 20px;
  margin-top: 2px;
  margin-right: 8px;
  cursor: pointer;
}

.checklist input[type="checkbox"] {
  zoom: 1.2; /* vergrößert leicht */
}
.section.highlight.checklist {
  background-color: var(--highlight-bg);
}


.checklist input[type="checkbox"]:checked ~ span {
  font-weight: bold;
  color: var(--primary-color);
}



@media (max-width: 600px) {
  .section.highlight.checklist {
    padding: 20px 15px;
    margin: 30px 15px;
  }
}
.section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}




  .course-table th {
    background-color: var(--primary-color);
    color: white;
    text-align: left;
    padding: 12px;
    font-weight: 600;
  }

  .hidden-row {
    display: none;
  }

  .date-box {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    background-color: var(--primary-color);
    border-radius: 6px;
    width: 80px;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  }

  .date-day {
    font-size: 1.6rem;
    font-weight: bold;
    color: white !important;
    line-height: 1;
  }

  .date-month {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: white;
  }

  .date-year {
    font-size: 0.75rem;
    color: #999;
      color: white
  }

  .date-end {
    font-size: 0.65rem;
   color: white;
    margin-top: 4px;
  }

  .contact-horizontal {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
  }

  .contact-image {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }

  .contact-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
  }

  .contact-name {
    font-size: 1rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 2px;
  }

  .contact-title {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 6px;
  }

  .contact-buttons {
    display: flex;
    gap: 10px;
    margin-left: auto;
    justify-content: flex-end;
  }

  .contact-button {
    background-color: var(--accent-color);
    color: white !important;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
  }

  .contact-button:hover {
    background-color: var(--accent-hover);
  }

  .contact-button i {
    color: white !important;
    font-size: 16px;
  }

  .toggle-button {
    margin-top: 1.5em;
    padding: 0.6em 1.4em;
    font-size: 1rem;
    cursor: pointer;
    background-color: var(--primary-color);
    color: #fff;
    border: 2px solid var(--primary-color);
    border-radius: 0.3em;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-weight: 500;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }

  .toggle-button:hover {
    background-color: #fff;
    color: var(--primary-color);
  }

  @media (max-width: 600px) {
    .course-table thead {
      display: none;
    }

    .course-table,
    .course-table tbody,
    .course-table tr,
    .course-table td {
      display: block;
      width: 100%;
    }

    .course-table tr {
      margin-bottom: 20px;
      border: 1px solid #ddd;
      border-radius: 6px;
      background: #fff;
      padding: 10px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    }

    .course-table td {
      padding: 10px 0;
      border-bottom: none;
    }

    .course-table td::before {
      content: attr(data-label);
      font-weight: bold;
      display: block;
      margin-bottom: 4px;
      color: #777;
    }

    .hidden-row {
      display: none !important;
    }
  }
    
    @media (max-width: 600px) {
  .course-table td {
    padding: 12px;
    text-align: left;
  }

  .date-box {
    width: 100%;
    margin-bottom: 8px;
    padding: 10px;
  }

  .date-day {
    font-size: 1.4rem;
  }

  .date-month {
    font-size: 0.85rem;
  }

  .date-year {
    font-size: 0.75rem;
  }

  .date-end {
    font-size: 0.7rem;
  }

  .contact-horizontal {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-buttons {
    justify-content: flex-start;
    width: 100%;
    margin-top: 10px;
  }

  .contact-button {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .contact-image {
    width: 48px;
    height: 48px;
  }
}
    
    @media (max-width: 400px) {
  .date-box {
    font-size: 90%;
  }
  .contact-buttons {
    flex-wrap: wrap;
    gap: 6px;
  }
}
    
    .contact-button {
  background-color: var(--primary-color);
  color: white !important;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 16px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}

.contact-button:hover {
  background-color: var(--primary-hover);
}

.contact-button i {
  color: white !important;
  font-size: 16px;
}

.date-box {
  background-color: orange;
  color: white;
  text-align: center;
  padding: 1em;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}
.date-box .date-day {
  font-size: 1.5em;
  font-weight: bold;
}
.date-box .date-month,
.date-box .date-year {
  font-size: 0.85em;
  text-transform: uppercase;
}
.date-box .date-toggle-icon {
  margin: 0.5em 0;
  font-size: 1.2em;
}
.date-box .date-details {
  display: none;
  font-size: 0.85em;
  margin-top: 0.5em;
}
.date-box.expanded .date-details {
  display: block;
}
.date-box.expanded .date-toggle-icon i {
  transform: rotate(180deg);
}
    
    
    .date-box {
  width: 120px; /* oder 150px je nach Design */
  padding: 1em;
  background-color: var(--primary-color);
  color: #fff;
  text-align: center;
  border-radius: 10px;
  font-size: 0.9em;
}

@media screen and (max-width: 480px) {
  .date-box {
    width: 100%;
    font-size: 0.8em;
    padding: 0.8em;
  }

  .date-box .date-day {
    font-size: 1.2em;
  }

  .date-box .date-toggle-icon {
    font-size: 1em;
  }
    
    .contact-cell {
  text-align: center;
  vertical-align: top;
    }

    .contact-horizontal {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.5em;
    }

    .contact-image {
      max-width: 80px;
      height: auto;
      border-radius: 50%;
    }

    .contact-details {
      text-align: center;
    }

    .contact-buttons {
      display: flex;
      gap: 0.5em;
      justify-content: center;
    }
    .course-table td::before {
    text-align: center;
    }
}



.contact-button:hover {
  background-color: var(--primary-color);
}

.btn-group
{
	display:none;
}