
    body {
      
        font-family: "The Seasons";
        margin: 0;
        padding: 20px;
        color: #502f13;
      
   
  
    }

    .fixed-bg {
        position: fixed;
        inset: 0;
      
      
        background: url('../Bilder/Hauptbild.jpg') center center / cover no-repeat;
      
      
        z-index: -1;
      }
      
     /* ===== FONTS ===== */
@font-face {
    font-family: 'Canela';
    src: url('fonts/Canela-Regular.woff2') format('woff2'),
         url('fonts/Canela-Regular.woff') format('woff');
  }
  
  h1, h2, nav a {
    font-family: 'Canela', serif;
  }
  
  h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
  }
  
  .nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    font-size: 13px;
  }
  
  .nav a {
    text-decoration: none;
    color: #7b6a5c;
  }
  
  .nav .active {
    border-bottom: 1px solid #c9a97a;
  }
  
  
  .header-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 10px 20px;
    box-sizing: border-box;
  }
  
  .header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
  }
  
  .brand h1 {
    font-size: 20px;
    margin: 0;
  }
  
  .brand p {
    font-size: 12px;
    margin: 0;
    opacity: 0.7;
  }
  
  
  
  
  
  .top {
      display: flex;
      justify-content: space-between;
      align-items: center;
  }
  
  /* Language */
  .lang {
      display: flex;
      gap: 6px;
  }
  
  .lang button {
      border: none;
      background: #e6d8cc;
      padding: 5px 10px;
      border-radius: 20px;
      font-size: 11px;
  }
  
  .lang .active {
      background: white;
  }
  
  /* Logo */
  .logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 26px;
  }
  
  .subtitle {
      font-size: 11px;
      letter-spacing: 2px;
      opacity: 0.7;
  }
  
  /* ===== FLAGGEN-DROPDOWN ===== */
  .lang-dropdown {
      position: relative;
      display: inline-block;
  }
  
  
  .lang-btn {
      background: #e6d8cc;
      border: none;
      padding: 6px 14px;
      border-radius: 20px;
      font-size: 12px;
      cursor: pointer;
      color: #3E2F2B;
  }
  
  
  .lang-btn:hover {
      background: #fff;
  }
  
  
  .lang-menu {
      display: none;
      position: absolute;
      top: 32px;
      left: 0;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
      overflow: hidden;
      z-index: 9999;
  }
  
  
  .lang-menu div {
   
      padding: 8px 14px;
      font-size: 13px;
      cursor: pointer;
      white-space: nowrap;
  }
  
  
  .lang-menu div:hover {
      background: #f0e6dc;
  }
  
  
  .lang-dropdown.open .lang-menu {
  
  
      display: block;
  }
  
  
  .arrow {
  
  
      font-size: 10px;
    
    
      margin-left: 4px;
  }
  
  .nav {
    flex-wrap: wrap;
  }
  
 

    /* Fehlerbox */
    .error-message {
        background: #ffdddd;
        border-left: 4px solid #e74c3c;
        padding: 10px;
        margin-top: 10px;
        border-radius: 6px;
        color: #c0392b;
        font-weight: bold;
        font-size: 14px;
    }

    /* Danke-Box */
    .confirmation-box {
        max-width: 700px;
        margin: 40px auto;
        background: rgb(223, 167, 93);
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        text-align: center;
    }

    /* FILTER */
    #filters {
        max-width: 700px;
        margin: 0 auto 20px auto;
        padding: 10px;
        border-radius: 10px;
       
    }

    #filters label {
        margin-right: 12px;
        font-size: 14px;
    }

    /* KALENDER */
    .calendar {
        max-width: 700px;
        margin: 0 auto;
        background: #b6a292;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

    /* WICHTIG: adaptive Kalendergröße */
.calendar-grid {
    grid-template-columns: repeat(7, minmax(0, 1fr));
}


    .calendar-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-family: "Playfair Display", serif;
        font-size: 22px;
        margin-bottom: 10px;
        color: #502f13;
    }

    .calendar-header button {
        background: none;
        border: none;
        font-size: 22px;
        cursor: pointer;
        color: #c9a86a;
    }

    .calendar-grid {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 6px;
        margin-top: 10px;
    }

    .day-name {
        text-align: center;
        font-weight: bold;
        padding: 6px 0;
        color: #6d5f57;
    }

    .day {
        background: #cca96c;
        padding: 12px;
        height: 70px;
        border-radius: 6px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.05);
        cursor: pointer;
        position: relative;
        transition: 0.2s;
    }

    .day:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    
    }

    .day-number {
        font-weight: bold;
        margin-bottom: 4px;
    }

    .free {
        border-left: 6px solid #2ecc71;
    }

    .booked {
        border-left: 6px solid #e74c3c;
        opacity: 0.85;
    }

    .status-label {
        position: absolute;
        bottom: 6px;
        right: 6px;
        font-size: 11px;
        padding: 2px 6px;
        border-radius: 4px;
        color: white;
        font-weight: 600;
    }

    .status-free { background: #2ecc71; }
    .status-booked { background: #e74c3c; }

    /* Tagesansicht */
    #appointments {
        max-width: 700px;
        margin: 30px auto;
        padding: 20px;
        background: #b6a292;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

    .appointment {
        padding: 15px;
        border-bottom: 1px solid #eee;
    }

    .appointment:last-child {
        border-bottom: none;
    }

/* PayPal + Input-Felder */
.paypal-box input {
    width: 100%;
    padding: 8px;
    margin: 4px 0 10px 0;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
}



    /* FOOTER */
footer {
 
    padding: 2rem 0;
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
}



/* GRID für 2 Spalten */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 12px;
}

.meeting-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px; /* kleiner */
  
    
    border-radius: 10px;
    cursor: pointer;
    transition: 0.25s ease;
    font-size: 14px; /* kleiner */
    color: #502f13;
    
   
}

.meeting-option:hover {
   

    transform: translateY(-1px); /* kleinerer Hover */
}

.meeting-option input[type="checkbox"] {
    width: 18px;
    height: 18px; /* kleiner */
   
}

/* Google Feedback-Feld entfernen */
.goog-te-gadget-icon,
.goog-te-balloon-frame,
.goog-te-banner-frame.skiptranslate,
.goog-te-gadget-simple img,
.goog-te-gadget-simple span {
    display: none !important;
}


.goog-te-gadget-simple {
    border: none !important;
    background: transparent !important;
}


/* Feedback-Feld unten rechts entfernen */
#goog-gt-tt,
.goog-tooltip,
.goog-tooltip:hover {
    display: none !important;
}


.goog-text-highlight {
    background: none !important;
    box-shadow: none !important;
}


/* ===== LOGO ===== */
.logo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.meeting-option input {
    margin: 0;
    flex-shrink: 0;
}


@media (max-width: 768px) {

/* Hintergrund fixen */
body {
    background-attachment: scroll;
    padding: 10px;
}

/* HEADER */


.calendar {
    overflow-x: auto;
    padding: 10px;
}

.calendar-grid {
    grid-template-columns: repeat(7, minmax(35px, 1fr));
}

#appointments {
    overflow-x: auto;
}


/* TITEL */
h1 {
    font-size: 1.6rem;
    margin-top: 10px;
}

/* FILTER – kompakt + 1 Spalte */
#filters {
    padding: 12px;
    margin-bottom: 20px;
}

.checkbox-grid {
    grid-template-columns: repeat(2, 1fr); /* nur 1 Spalte */
    gap: 10px;
}

.meeting-option {
    padding: 8px 10px;
    font-size: 13px;
    border-radius: 10px;
}

.meeting-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
}




.calendar-header button {
    font-size: 20px;
}







/* TAGESANSICHT */
#appointments {
    padding: 15px;
}


.day {
    padding: 6px;
    height: 45px;
    font-size: 12px;
}

.status-label {
    font-size: 9px;
}

.day-number {
    font-size: 12px;
}

.calendar-header {
    font-size: 16px;
}



/* PayPal + Input-Felder */
.paypal-box input {
    width: 100%;
    padding: 8px;
    margin: 4px 0 10px 0;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.paypal-box button {
    font-size: 15px !important;
    padding: 10px !important;
}

/* FOOTER */
footer {
    font-size: 0.8rem;
    padding: 1.5rem 0;
}

.nav {
  flex-wrap: wrap;
}


}


 
