/* =========================================
   DSGVO‑konforme lokale Schrift
========================================= */
@font-face {
  font-family: 'Poppins';
  src: url('/fonts/Poppins-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* =========================================
   Variablen & Grundtypografie
========================================= */
:root {
  --brand:        #d6a300;
  --brand-dark:   #b88f00;
  --bar-dark:     #1a1a1a;
  --text:         #1a1a1a;
  --bg:           #ffffff;
  --radius:       10px;
  --header-h:     72px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font: 400 16px/1.6 'Poppins', sans-serif;
  color: var(--text);
  background: var(--bg);
  scroll-behavior: smooth;
}

h1, h2, h3 {
  margin: 0 0 .6rem;
  font-weight: 600;
  line-height: 1.3;
}

p {
  margin: .5rem 0 1rem;
  color: #333;
}

a {
  color: var(--text);
  text-decoration: underline;
  transition: color .3s;
}
a:hover {
  color: var(--brand);
}

/* =========================================
   Skip‑Link (Accessibility)
========================================= */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: -1;
}
.skip-link:focus {
  position: fixed;
  top: 10px;
  left: 10px;
  width: auto;
  height: auto;
  padding: 8px 16px;
  background: #000;
  color: #fff;
  z-index: 9999;
  outline: none;
}

/* =========================================
   Container & Layout
========================================= */
.container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* =========================================
   Fixierter Header
========================================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: var(--bg);
  box-shadow: 0 2px 6px rgba(0, 0, 0, .04);
  z-index: 1000;
}
body {
  padding-top: var(--header-h);
}
.logo img {
  max-height: 60px;
  height: auto;
  width: auto;
}

/* =========================================
   Navigation
========================================= */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.main-nav a:hover {
  color: var(--brand-dark);
}

/* =========================================
   Burger-Icon (Mobile Menü)
========================================= */
.menu-toggle {
  display: none;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: .4rem;
  cursor: pointer;
  z-index: 1001;
}
.menu-toggle .bar {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 2px;
  transition: all .3s ease;
}
.menu-toggle.open .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.open .bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
  }
}
@media (min-width: 769px) {
  .main-nav {
    display: block;
  }
}

/* =========================================
   Mobile Menü & Overlay
========================================= */
#mobile-menu-overlay {
  position: fixed;
  inset: 0;
  backdrop-filter: blur(4px);
  background: rgba(0, 0, 0, 0.4);
  z-index: 999;
  transition: opacity 0.3s ease;
}
#mobile-menu-overlay[hidden] {
  display: none;
  opacity: 0;
}
#mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 320px;
  height: 100%;
  background: #fff;
  z-index: 1000;
  padding: 2rem 1.5rem;
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  box-shadow: -4px 0 20px rgba(0,0,0,0.1);
  display: none;
}
#mobile-menu.open {
  display: block;
  transform: translateX(0%);
  opacity: 1;
}
.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  list-style: none;
  margin: 4rem 0 0;
  padding: 0;
  align-items: center;
}
.mobile-nav a {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: color .3s;
}
.mobile-nav a:hover {
  color: var(--brand-dark);
}
.menu-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: none;
  border: 0;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text);
}
/* =========================================
   Sektionen
========================================= */
.section-box {
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 1rem;
  text-align: center;
}
.calendar-box #kalender {
  margin-top: 1rem;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.check-list li {
  margin: .4rem 0;
}
.aktion-box {
  background: #faf7ec;
  border: 2px dashed var(--brand);
  border-radius: var(--radius);
  padding: 2rem 1rem;
  margin: 3rem 1rem;
  text-align: center;
}
.aktion-hinweis {
  margin: 0 0 .6rem;
  font-weight: 600;
}
.aktion-preis {
  color: var(--brand);
}

/* =========================================
   Buttons & Helfer
========================================= */
.cta-button {
  display: inline-block;
  background: var(--brand);
  color: #000;
  padding: .55rem 1.2rem;
  border-radius: var(--radius);
  border: none;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background .25s, color .25s;
}
.cta-button:hover {
  background: var(--brand-dark);
  color: #fff;
}
.success-msg {
  color: green;
  margin-bottom: 1rem;
}
.error-msg {
  color: #c70000;
  margin-bottom: 1rem;
}

/* =========================================
   Kalender & Zeitwahl
========================================= */
#zeitwahl {
  margin-top: 2.5rem;
  text-align: center;
}
#zeitwahl h3 {
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  color: var(--text);
}
.time-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.zeit-btn {
  background: var(--brand);
  color: #000;
  padding: 0.6rem 1rem;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}
.zeit-btn:hover {
  background: var(--brand-dark);
  color: #fff;
}

/* =========================================
   Footer
========================================= */
.site-footer {
  text-align: center;
  padding: 2rem 1rem;
  background: #f9f9f9;
  color: #333;
  font-size: .95rem;
}
.footer-nav {
  margin: .5rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  justify-content: center;
}
.footer-credit {
  margin-top: 1rem;
  font-size: .85rem;
  color: #888;
}
.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1rem;
  text-align: center;
  background: #f9f9f9;
  color: #333;
  font-size: 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-copy,
.footer-credit {
  margin: 0;
  font-size: 0.9rem;
  color: #555;
}
.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer-nav a {
  text-decoration: none;
  color: var(--text);
  transition: color .3s;
}
.footer-nav a:hover {
  color: var(--brand);
}
@media (max-width: 600px) {
  .footer-nav ul {
    flex-direction: column;
    gap: .8rem;
  }
}

/* =========================================
   Scroll-to-Top Button
========================================= */
.scroll-top {
  display: none;
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 998;
  background: var(--brand);
  color: #000;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
}

/* =========================================
   WhatsApp Button
========================================= */
.whatsapp-fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 997;
  display: inline-block;
  line-height: 0;
}
.whatsapp-fab img {
  width: 60px;
  height: 60px;
  transition: transform .2s ease;
}
.whatsapp-fab:hover img {
  transform: scale(1.05);
}
@media (max-width: 600px) {
  .whatsapp-fab img {
    width: 50px;
    height: 50px;
  }
}

/* =========================================
   Formular
========================================= */
#buchungsbereich form,
form[name="kontakt"] {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
#buchungsbereich label,
form[name="kontakt"] label {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
}
input,
select,
textarea {
  width: 100%;
  padding: 0.5rem 0.7rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
}
textarea {
  resize: vertical;
}
.agb-row {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.8rem;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  line-height: 1.4;
  max-width: 600px;
  margin-inline: auto;
  padding: 0 1rem;
  flex-wrap: nowrap;
}
.agb-row input[type="checkbox"] {
  margin-top: 0.2rem;
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
}
.agb-row label {
  flex: 1;
  cursor: pointer;
  line-height: 1.4;
}

/* =========================================
   Optimierungen für Preise-Seite (edel & klar)
========================================= */

.preise-page {
  background: #f7f7f7;
  padding: 4rem 1rem;
}

.preise-header {
  text-align: center;
  margin-bottom: 3rem;
}

.preise-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.preise-subline {
  font-size: 1rem;
  color: #666;
  font-weight: 400;
}

.preise-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 0 1rem;
}

.preisbox {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 1.8rem 1.2rem;
  width: 260px;
  text-align: center;
  border-top: 4px solid var(--brand);
  transition: all 0.3s ease;
}
.preisbox:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}
.preisbox h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--text);
}
.preisbox p {
  font-size: 1.7rem;
  color: var(--brand);
  font-weight: bold;
  margin: 0;
}

.preise-info {
  max-width: 800px;
  margin: 4rem auto 0;
  padding: 0 1rem;
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

.preise-info p {
  margin-bottom: 1.3rem;
}

.preise-info a {
  color: var(--text);
  text-decoration: underline;
}
.preise-info a:hover {
  color: var(--brand);
}

.preise-stand {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #888;
  text-align: right;
}


/* =========================================
   FullCalendar Styles – lokal integriert
========================================= */

.fc .fc-daygrid-event {
  background-color: #3788d8;
  border: none;
  color: white;
  padding: 2px 4px;
  font-size: 0.85em;
  border-radius: 4px;
  margin: 2px 0;
}
.fc .fc-daygrid-event-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: currentColor;
  border-radius: 100%;
}
.fc .fc-daygrid-event-harness {
  display: flex;
  align-items: center;
}
.fc .fc-daygrid-day-number {
  padding: 4px 6px;
  font-weight: 600;
  text-align: right;
}
.fc-theme-standard .fc-scrollgrid {
  border: 1px solid #ddd;
}
.fc-theme-standard td,
.fc-theme-standard th {
  border: 1px solid #ddd;
}
.fc .fc-toolbar-title {
  font-weight: bold;
}
.fc .fc-daygrid-day.fc-day-today {
  background: #e8f4ff;
}
.fc .fc-highlight {
  background: rgba(0, 0, 0, 0.05);
}

#calendar {
  min-height: 600px;
  padding: 1rem;
  background: white;
  margin: 2rem auto;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

/* Breitere erste Spalte für "Ganztägig" */
.fc .fc-timegrid-axis,
.fc .fc-timegrid-slot-label {
  min-width: 80px !important;
  width: 80px !important;
  max-width: 120px !important;
  text-align: left;
  padding-left: 8px;
}
.faq-page .faq-list {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faq-page .faq-list details {
  background: #fff;
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 1rem;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}

.faq-page .faq-list details[open] {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-page .faq-list summary {
  font-weight: 600;
  font-size: 1.05rem;
  list-style: none;
}

.faq-page .faq-list summary::marker,
.faq-page .faq-list summary::-webkit-details-marker {
  display: none;
}

.kontakt-page {
  max-width: 700px;
  margin: 4rem auto;
  padding: 0 1rem;
}

.kontakt-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.kontakt-header h1 {
  font-size: 2rem;
  margin-bottom: 0.6rem;
}

.kontakt-header p {
  font-size: 1rem;
  color: #555;
}

.kontakt-infos ul {
  list-style: none;
  padding: 0;
  margin: 0 auto 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1.05rem;
  text-align: center;
}
.kontakt-infos a {
  text-decoration: underline;
  color: var(--text);
}
.kontakt-infos a:hover {
  color: var(--brand);
}

.kontakt-formular form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.kontakt-formular label {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
}

.kontakt-formular input,
.kontakt-formular textarea {
  padding: 0.6rem 0.8rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: inherit;
}
.agb-page {
  background: #f7f7f7;
  padding: 3rem 0;
}

.agb-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.agb-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.agb-wrapper article h2 {
  font-size: 1.2rem;
  color: var(--text);
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  border-left: 4px solid var(--brand);
  padding-left: 0.6rem;
}

.agb-wrapper article p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

.agb-stand {
  margin-top: 3rem;
  font-size: 0.9rem;
  color: #888;
  text-align: right;
}
