/* ===============================
   BASE
================================ */
body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #f5f5f5;
    color: #111;
}

h4{
	font-size: 20px;
}

/* ===============================
   HEADER
================================ */
/* HEADER */
.top-header {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 0 40px;
    box-sizing: border-box;
	position: relative;
    z-index: 100;
	
}



.header-right {
    display: flex;
    align-items: flex-start;
}

.header-logo {
    height: 100px;
    margin-top: 47px;
}

/* ===============================
   CALENDAR
================================ */
.calendar-section {
    background: #fafafa;
    padding: 8px 0 20px;
    text-align: center;
    border-bottom: 1px solid #eaeaea;

    position: relative;   /* ? normal */
    z-index: 1;
}

.calendar-section.is-sticky {
    position: sticky;
    top: 0;               /* ? Bildschirmrand */
    z-index: 50;          /* ? unter Logo */
}


.calendar-headline {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 18px;
}

.calendar-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.cal-arrow {
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #333;
}

.calendar-days {
    display: flex;
    gap: 14px;
}

.calendar-day {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    border: 1px solid #e0e0e0;
}

.calendar-day.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.calendar-day.active {
    background: #000;
    color: #fff;
    border-color: #000;
}

.dow {
    font-size: 11px;
    text-transform: uppercase;
}

.num {
    font-size: 17px;
    font-weight: 600;
}

/* ===============================
   MAIN GRID (600px)
================================ */
.main {
    max-width: 600px;
    margin: 40px auto;
    padding: 0 20px;
}


.cancel {
    display:block;
    text-align:center;
    margin-top:16px;
    font-size:14px;
    color:#0066cc;
    text-decoration:none;
}

/* ===============================
   SELECTED DATE
================================ */
.selected-date {
    font-size: 26px;
    font-weight: 600;
    margin: 30px 0 24px;
    padding-left: 12px; /* EinrÃ¼ckung wie gewÃ¼nscht */
}

/* ===============================
   OPTIONS
================================ */
.options {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.options.disabled {
    opacity: 0.4;
    pointer-events: none;
}

/* ===============================
   OPTION CARD
================================ */
.option-card {
    background: #fff;
    border: 1px solid #ddd;
    overflow: hidden;
}

/* OPTION AUSBLENDEN */
.option-card.hidden {
    display: none !important;
}

/* ===============================
   THEME IMAGE
================================ */
.theme-image {
     width: 100%;
    max-width: 600px;               /* feste Breite wie Grid */
    height: 320px;             /* feste Höhe (ruhig, editorial) */
    margin: 0 auto 24px;       /* zentriert + Abstand nach unten */
    overflow: hidden;
    background: #eaeaea;
}



/* Bild selbst */
.theme-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;         /* ? schneidet sauber zu */
    object-position: center;   /* Fokus mittig */
    display: block;
}

/* ===============================
   THEME HEADER
================================ */
.theme-header {
    max-width: 600px;
    margin: 0 auto 28px;
    padding: 0 12px;
}

.theme-header h2 {
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.theme-header p {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

/* Abstand zwischen Cards */
.options,
.theme-options {
    display: flex;
    flex-direction: column;
    gap: 24px;   /* ? HIER der Abstand */
}



/* Bildbereich */
.card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #eaeaea;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Inhalt */
.card-body {
    padding: 24px 24px 0 24px;     /* ðŸ‘ˆ LINKS/RECHTS EINRÃœCKUNG */
}

.card-body h3 {
    margin: 0 0 8px 0;
    font-size: 22px;
    font-weight: 600;
}

.card-body p {
    margin: 0 0 20px 0;
    font-size: 15px;
    color: #333;
    line-height: 1.4;
}

.card-content {
    padding: 20px 24px; /* ðŸ‘ˆ LINKS / RECHTS Abstand */
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.card-text {
    font-size: 14px;
    color: #555;
}

/* Button */
.select-btn {
    margin-top: 24px;
    width: 100%;
    padding: 18px;
    background: #e53935;
    color: #fff;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

.select-btn.hidden {
    display: none;
}

/* ===============================
   BACK LINK
================================ */
.back-btn {
  
	
    cursor: pointer;
	
	margin: -1px auto 24px auto;
    width: 100%;
    padding: 18px;
    background: #fff;
    color: #000;
    border: 1px solid #e0e0e0;
    font-size: 16px;
	
}






/* ===============================
   SLOTS
================================ */
.slots {
    margin-top: 20px;
}

.slots h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    padding-left: 12px;
}

.slot-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

/* Slot Button */
.slot-grid button {
    padding: 14px;
    background: #fff;
    border: 1px solid #ccc;
    cursor: pointer;
    font-size: 14px;
}

.slot-grid button.active {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* ===============================
   CONTINUE BUTTON
================================ */
.continue-btn {
    margin-top: 28px;
    width: 100%;
    padding: 18px;
    background: #999;
    color: #fff;
    border: none;
    font-size: 16px;
    cursor: not-allowed;
}

.continue-btn.active {
    background: #e53935;
    cursor: pointer;
}


.continue-btn.enabled {
    background: #e53935;
    cursor: pointer;
}

/* ===============================
   FOOTER (optional)
================================ */
/* FOOTER */
.footer {
    text-align: center;
    font-size: 13px;
    color: #666;
    margin-top: 40px;
    margin-bottom: 20px;
    opacity: 0.7;
    padding: 12px;
    border-top: 1px solid #222;
}

.footer a {
    color: inherit;
    text-decoration: none;
}


/* ===============================
   CONTACT PAGE
================================ */

.contact-headline {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 24px;
    padding-left: 12px;
}

/* Zusammenfassung */
.contact-summary {
    background: #fafafa;
    border: 1px solid #ddd;
    padding: 20px 24px;
    margin-bottom: 32px;
}

.summary-label {
    font-size: 13px;
    color: #777;
    margin-bottom: 6px;
}

.summary-value {
    font-size: 16px;
    font-weight: 500;
}

/* Formular */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    margin-bottom: 6px;
    color: #333;
}

.form-group input {
    padding: 14px 16px;
    font-size: 15px;
    border: 1px solid #ccc;
    outline: none;
}

.form-group input:focus {
    border-color: #000;
}

/* Submit */
.submit-btn {
    margin-top: 20px;
    width: 100%;
    padding: 18px;
    background: #000;
    color: #fff;
    border: none;
    font-size: 16px;
    cursor: pointer;
}


/* ===============================
   SMARTLOGIN INTRO
================================ */

.smartlogin-intro {
    margin: 40px 0 32px;
    padding-left: 12px;
}

.smartlogin-intro h2 {
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.smartlogin-intro p {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

/* ===============================
   SMARTLOGIN DECISION – SQUARE BUTTONS
================================ */

.decision-section {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.decision-buttons {
    display: flex;
    gap: 28px;
}

/* Quadratische Buttons im Stil von .select-btn */
.decision-square {
    width: 260px;
    height: 260px;
    background: #e53935;   /* identisch zu .select-btn */
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    box-sizing: border-box;
    cursor: pointer;
}

.decision-square:hover {
    opacity: 0.9;
}

/* FAQ ACCORDION */
.faq {
    margin-bottom: 52px;
}

.faq-item {
    border-top: 1px solid #e0e0e0;
    padding: 16px 0;
}

.faq-item:first-child {
    border-top: none;
}

.faq-item:last-child {
    border-bottom: 1px solid #e0e0e0;
}

.faq-question {
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question span {
    color: #0066cc;
    font-size: 14px;
}

.faq-answer {
    display: none;
    margin-top: 12px;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-item.open .faq-question span {
    transform: rotate(180deg);
}

.faq-headline {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin: 60px 0 40px;
    line-height: 1.1;
}

.support-section {
    margin-top: 64px;
}

.support-headline {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin: 60px 0 40px;
    line-height: 1.1;
}


/* Mobile */
@media (max-width: 768px) {
    .decision-buttons {
        flex-direction: column;
        gap: 20px;
    }

    .decision-square {
        width: 100%;
        max-width: 360px;
        height: 200px;
        margin: 0 auto;
    }


    .top-header {
        height: 56px;              /* kompakter Header */
        padding: 0 16px;
    }

    .header-logo {
        height: 40px;              /* deutlich kleiner */
        margin-top: 0;             /* kein Runterrutschen */
    }

    .header-right {
        align-items: center;       /* Logo vertikal zentrieren */
    }
	
	.theme-image {
        height: 220px;   /* etwas weniger Höhe auf Mobile */
    }
}


.calendar-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 600px;          /* ? gleich wie Main-Grid */
    width: 100%;
    padding: 0 16px;           /* ? DAS ist der gesuchte Abstand */
    box-sizing: border-box;
}

@media (max-width: 480px) {

    .calendar-section {
        padding: 0 12px;
    }

    .calendar-bar {
        padding: 0;
        gap: 6px;
    }

    .calendar-inner {
        padding: 0;
    }

    .cal-arrow {
        padding: 6px 8px;
        font-size: 26px;
        flex: 0 0 auto;
    }

    .calendar-days {
        display: flex;
        gap: 6px;
        justify-content: center;
        flex: 1;
    }

    .calendar-day {
        width: 40px;          /* ? kleiner, aber noch OK */
        height: 40px;
        flex: 0 0 auto;
    }

    .dow {
        font-size: 9px;
    }

    .num {
        font-size: 14px;
        font-weight: 600;
    }
}


