/* Hauptseite Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header {
    position: relative;
}

header h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.admin-login-link {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #f0f0f0;
    border: 2px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.admin-login-link:hover {
    background-color: #e0e0e0;
    transform: scale(1.1);
    box-shadow: 0 3px 8px rgba(0,0,0,0.3);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
}

.main-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.menu-item {
    position: relative;
}

.menu-toggle {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.menu-toggle:hover {
    background-color: #f0f0f0;
}

.submenu {
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-radius: 4px;
    min-width: 200px;
    margin-top: 5px;
    display: none;
    z-index: 1001;
}

.submenu.active {
    display: block;
}

.submenu li {
    border-bottom: 1px solid #eee;
}

.submenu li:last-child {
    border-bottom: none;
}

.submenu a {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.3s;
}

.submenu a:hover {
    background-color: #f0f0f0;
}

main {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.welcome {
    text-align: center;
    padding: 60px 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.welcome h2 {
    margin-bottom: 20px;
    color: #333;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    margin-top: 40px;
    border-top: 1px solid #eee;
}

/* ============================================
   BOOKING BAR
   Nur auf der Homepage (index.html)
   ============================================ */

.booking-bar {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

body:has(.welcome) .booking-bar-container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-end;
    flex-wrap: wrap;
}

body:has(.welcome) .booking-field {
    flex: 1;
    min-width: 150px;
    position: relative;
}

body:has(.welcome) .booking-field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 8px;
}

body:has(.welcome) .booking-date-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    color: #333;
    background: #fff;
    cursor: pointer;
    box-sizing: border-box;
    min-height: 48px;
}

body:has(.welcome) .booking-date-input:focus {
    outline: none;
    border-color: #c0aa46;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

body:has(.welcome) .booking-date-input:hover {
    border-color: #c0aa46;
}

body:has(.welcome) .booking-date-display {
    display: none;
}

body:has(.welcome) .booking-field.date-field:has(.booking-date-input:focus) .booking-date-input,
body:has(.welcome) .booking-field.date-field:hover .booking-date-input {
    border-color: #c0aa46;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

body:has(.welcome) .booking-guest-button {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    font-size: 1rem;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    min-height: 48px;
}

body:has(.welcome) .booking-guest-button:hover,
body:has(.welcome) .booking-field.guest-field:has(#guestPopup[style*="block"]) .booking-guest-button {
    border-color: #c0aa46;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

body:has(.welcome) .booking-guest-button svg {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

body:has(.welcome) .booking-field.guest-field:has(#guestPopup[style*="block"]) .booking-guest-button svg {
    transform: rotate(180deg);
}

body:has(.welcome) .guest-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1002;
}

body:has(.welcome) .guest-popup {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 1003;
    min-width: 320px;
    overflow: hidden;
}

.guest-popup-content {
    padding: 20px;
}

.guest-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.guest-row:last-of-type {
    border-bottom: none;
}

.guest-row-info {
    flex: 1;
}

.guest-row-label {
    font-weight: 600;
    font-size: 1rem;
    color: #333;
    margin-bottom: 4px;
}

.guest-row-sublabel {
    font-size: 0.85rem;
    color: #666;
}

.guest-row-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.guest-btn {
    width: 36px;
    height: 36px;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: #fff;
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.guest-btn:hover:not(:disabled) {
    border-color: #c0aa46;
    background: #f5e6d3;
    color: #b8941f;
}

.guest-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.guest-count {
    min-width: 30px;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

.guest-popup-footer {
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
    margin-top: 10px;
    text-align: right;
}

.guest-popup-close {
    padding: 10px 24px;
    background: #c0aa46;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.guest-popup-close:hover {
    background: #b8941f;
}

.booking-submit-btn {
    padding: 12px 32px;
    background: #c0aa46;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap;
    min-height: 48px;
    flex-shrink: 0;
}

.booking-submit-btn:hover {
    background: #b8941f;
}

/* Booking Availability Message / Result auf Homepage */
body:has(.welcome) .booking-availability-message {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 16px 20px;
    margin: 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Verfügbarkeitsergebnis */
.availability-result {
    text-align: center;
}

.availability-header {
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
}

.availability-header h3 {
    font-size: 1rem;
    color: #333;
    margin: 0;
    font-weight: 600;
}

.availability-header .date-range {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.availability-loading {
    padding: 20px;
    font-size: 1rem;
    color: #666;
}

.availability-none {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 24px;
}

.availability-none p {
    margin: 0 0 8px 0;
    color: #856404;
}

.availability-none .availability-hint {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.availability-none-inline {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 6px;
    padding: 10px 16px;
    color: #856404;
    font-size: 0.95rem;
    font-weight: 500;
}

.availability-list {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    margin-bottom: 0;
    justify-content: center;
    align-items: center;
}

.availability-list .availability-item,
.availability-list .booking-change-btn {
    flex: 0 0 auto;
}

/* Mobile: Buttons untereinander */
@media (max-width: 768px) {
    .availability-list {
        flex-direction: column;
        flex-wrap: wrap;
    }
    
    .availability-list .availability-item,
    .availability-list .booking-change-btn,
    .availability-list .availability-none-inline {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

.availability-item {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.availability-item.available {
    background: #e8f5e9;
    border: 1px solid #4caf50;
    color: #2e7d32;
}

.availability-item.available:hover {
    background: #c8e6c9;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.availability-icon {
    font-size: 1rem;
    margin-right: 8px;
    font-weight: bold;
}

.availability-name {
    font-size: 0.95rem;
    font-weight: 600;
}

.availability-arrow {
    font-size: 1rem;
    margin-left: 8px;
    opacity: 0.7;
}

.booking-change-btn {
    background: #c0aa46;
    border: none;
    color: #fff;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    width: auto !important;
    flex: 0 0 auto !important;
}

.booking-change-btn:hover {
    background: #b8941f;
}

/* Request Form Styles */
.request-form-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

.request-form {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 0;
    overflow: hidden;
}

.request-form-header {
    background: #c0aa46;
    color: #fff;
    padding: 20px 30px;
    text-align: center;
}

.request-form-header h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.request-form-header p {
    opacity: 0.9;
    font-size: 1rem;
}

.request-section {
    padding: 15px 30px;
}

/* Trennlinien nur zwischen bestimmten Sektionen */
.request-section:nth-of-type(1), /* Persönliche Daten */
.request-section:nth-of-type(2) { /* Reisedaten */
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 20px; /* Extra padding für bessere Trennung */
}

.request-section:last-child {
    border-bottom: none;
}

.request-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c5530;
    margin-bottom: 15px;
}

/* Booking Summary */
.request-booking-summary {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-label {
    font-weight: 500;
    color: #666;
}

.summary-value {
    font-weight: 600;
    color: #333;
}

/* Form Fields */
.request-form-fields {
    display: grid;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Base: No margin on form-fields inside form-rows */
.form-row .form-field {
    margin-bottom: 0 !important;
}

/* form-row controls spacing between rows */
.request-section .form-row {
    margin-bottom: 20px;
}

.request-section .form-row:last-child {
    margin-bottom: 0;
}

/* Standalone form-fields (not in form-row) have spacing */
.request-section > .form-field {
    margin-bottom: 20px;
}

.request-section > .form-field:last-child {
    margin-bottom: 0;
}

/* Deaktiviere Browser-Validierungsmeldungen */
input:invalid,
textarea:invalid,
select:invalid {
    box-shadow: none;
}

input::-webkit-validation-bubble,
input::-webkit-validation-bubble-message,
input::-webkit-validation-bubble-arrow {
    display: none !important;
}

input:required:invalid:focus {
    box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.1);
}

.form-field {
    position: relative;
}

.form-field label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    outline: none;
    border-color: #c0aa46;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-field input:hover,
.form-field textarea:hover,
.form-field select:hover {
    border-color: #c0aa46;
}

.form-field textarea {
    resize: vertical;
    min-height: 100px;
}

/* Character Counter */
.char-count {
    position: absolute;
    bottom: 12px;
    right: 12px;
    font-size: 0.8rem;
    color: #666;
    background: rgba(255, 255, 255, 0.9);
    padding: 2px 6px;
    border-radius: 4px;
}

.char-count.warning {
    color: #e53935;
}

/* Privacy Notice */
.privacy-notice {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
}

.privacy-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
}

.privacy-label input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
}

.privacy-text a {
    color: #c0aa46;
    text-decoration: none;
}

.privacy-text a:hover {
    text-decoration: underline;
}

/* Form Actions */
.request-form-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    padding: 30px;
    border-top: 1px solid #e9ecef;
}

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
}

.btn-primary {
    background: #c0aa46;
    color: #fff;
}

.btn-primary:hover:not(:disabled) {
    background: #b8941f;
}

.btn-secondary {
    background: #fff;
    color: #666;
    border: 2px solid #e0e0e0;
}

.btn-secondary:hover {
    background: #f8f9fa;
    border-color: #ccc;
}

.btn-primary:disabled,
.btn-secondary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-loading {
    display: none;
}

.btn-primary.loading .btn-text {
    display: none;
}

.btn-primary.loading .btn-loading {
    display: inline;
}

/* Status Messages */
.request-status-message {
    padding: 16px 20px;
    border-radius: 8px;
    margin: 20px 30px;
    font-weight: 500;
    text-align: center;
}

.request-status-message.error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

.request-status-message.success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.request-status-message.info {
    background: #e3f2fd;
    color: #1565c0;
    border: 1px solid #bbdefb;
}

/* Field Errors */
.form-field.error input,
.form-field.error textarea,
.form-field.error select {
    border-color: #e53935;
    box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.1);
}

.field-error {
    color: #e53935;
    font-size: 0.85rem;
    margin-top: 4px;
    display: block;
}

/* Success Message */
.request-success {
    text-align: center;
    padding: 60px 30px;
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    font-size: 4rem;
    color: #4caf50;
    margin-bottom: 20px;
}

.request-success h2 {
    color: #2c5530;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.request-success p {
    color: #666;
    margin-bottom: 30px;
}

.success-details {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: left;
}

.success-details h3 {
    color: #2c5530;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.success-actions {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .request-form-container {
        margin: 20px auto;
        padding: 0 15px;
    }

    .request-form-header {
        padding: 20px;
    }

    .request-form-header h2 {
        font-size: 1.5rem;
    }

    .request-section {
        padding: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;  /* Consistent gap when stacked */
    }

    /* Reset margins for mobile */
    .form-row .form-field {
        margin-bottom: 0 !important;
    }

    .request-section .form-row,
    .request-section > .form-field {
        margin-bottom: 20px;
    }

    .request-section .form-row:last-child,
    .request-section > .form-field:last-child {
        margin-bottom: 0;
    }

    .request-form-actions {
        flex-direction: column;
        padding: 20px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 16px 32px;
    }

    .request-success {
        padding: 40px 20px;
    }

    .success-icon {
        font-size: 3rem;
    }
}

/* Fehler-Stil für Mindestaufenthalt */
.booking-field.has-error .booking-date-input {
    border-color: #e53935 !important;
    box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.2) !important;
}

.min-stay-error {
    position: absolute;
    bottom: -20px;
    left: 0;
    color: #e53935;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
}

/* Booking Info Text auf anderen Seiten */
.booking-info-text {
    background: #e8f5e9;
    border-left: 4px solid #4caf50;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 4px;
    font-size: 0.95rem;
    color: #2e7d32;
}

.booking-info-text strong {
    display: block;
    margin-bottom: 5px;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .main-menu {
        flex-direction: column;
        gap: 10px;
    }
    
    .submenu {
        position: static;
        box-shadow: none;
        margin-top: 10px;
    }

    /* Booking Bar Mobile Optimierungen */
    body:has(.welcome) .booking-bar {
        margin: 20px auto;
        padding: 0 15px;
    }

    body:has(.welcome) .booking-bar-container {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-end;
        gap: 10px;
        padding: 16px;
        border-radius: 12px;
    }

    body:has(.welcome) .booking-field.date-field {
        flex: 1 1 calc(50% - 5px);
        min-width: calc(50% - 5px);
        max-width: calc(50% - 5px);
    }

    body:has(.welcome) .booking-field.guest-field {
        flex: 1 1 100%;
        min-width: 100%;
    }

    body:has(.welcome) .booking-submit-btn {
        width: 100%;
        padding: 10px 16px;
        font-size: 0.95rem;
    }

    body:has(.welcome) .booking-field label {
        font-size: 0.8rem;
        margin-bottom: 6px;
    }

    body:has(.welcome) .booking-date-input,
    body:has(.welcome) .booking-guest-button {
        padding: 14px 16px;
        font-size: 1rem;
        min-height: 52px;
        border-radius: 10px;
    }

    body:has(.welcome) .booking-submit-btn {
        width: 100%;
        padding: 16px 32px;
        font-size: 1.05rem;
        min-height: 52px;
        margin-top: 4px;
        border-radius: 10px;
    }

    /* Guest Popup Mobile - Bottom Sheet Style */
    body:has(.welcome) .guest-popup {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        min-width: auto;
        max-width: 100%;
        border-radius: 20px 20px 0 0;
        box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
        max-height: 80vh;
        overflow-y: auto;
        z-index: 1003;
        animation: slideUpMobile 0.3s ease-out;
    }

    @keyframes slideUpMobile {
        from {
            transform: translateY(100%);
        }
        to {
            transform: translateY(0);
        }
    }

    .guest-popup-content {
        padding: 24px 20px;
    }

    .guest-row {
        padding: 18px 0;
    }

    .guest-row-label {
        font-size: 1.05rem;
        margin-bottom: 6px;
    }

    .guest-row-sublabel {
        font-size: 0.9rem;
    }

    .guest-row-controls {
        gap: 20px;
    }

    .guest-btn {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }

    .guest-count {
        min-width: 40px;
        font-size: 1.1rem;
    }

    .guest-popup-footer {
        padding: 20px;
        position: sticky;
        bottom: 0;
        background: #fff;
        border-top: 1px solid #f0f0f0;
        box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05);
    }

    .guest-popup-close {
        width: 100%;
        padding: 16px 24px;
        font-size: 1.05rem;
        border-radius: 10px;
    }

    /* Availability Message Mobile */
    body:has(.welcome) .booking-availability-message {
        margin: 15px auto 0;
        padding: 12px 16px;
        font-size: 0.9rem;
        border-radius: 8px;
    }

    body:has(.welcome) .booking-availability-message strong {
        font-size: 0.95rem;
        margin-bottom: 4px;
    }

    /* Touch-friendly spacing */
    body:has(.welcome) .booking-field + .booking-field {
        margin-top: 0;
    }

    .availability-buttons {
        flex-direction: column;
        gap: 8px;
    }

    .availability-list .booking-change-btn,
    .availability-list .availability-none-inline {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* Availability Button Styles */
.availability-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* === ANFRAGE-SEITE STYLES === */

/* Request Standalone Layout (wie Karte und Verfügbarkeit) */
.request-standalone header,
.request-standalone nav,
.request-standalone .admin-login-link {
  display: none !important;
}

.request-standalone footer {
  display: none !important;
}

.request-standalone main {
  margin-top: 0;
  max-width: none;
  padding: 0;
}

.request-page-intro {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.data-notice-section {
    margin: 30px auto 20px;
    max-width: 800px;
}

.data-notice {
    background: #e8f4fd;
    border: 1px solid #b3d9ff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.data-notice h3 {
    color: #1e40af;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.data-notice p {
    color: #1e40af;
    margin: 0;
    line-height: 1.5;
}

.request-page-intro h2 {
    color: #2c5530;
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.request-page-intro p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    max-width: 800px;
    margin: 0 auto 30px;
}

.request-info-box {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 25px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.request-info-box h3 {
    color: #2c5530;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.request-info-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.request-info-box li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.request-info-box li:before {
    content: "✓";
    color: #2c5530;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.optional-booking-section {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 25px;
    margin: 30px auto 40px;
    max-width: 800px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.optional-booking-section h3 {
    color: #2c5530;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.optional-booking-section p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Guest Controls Styling */
.guest-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.guest-controls input[type="number"] {
    width: 60px;
    text-align: center;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    background: #fff;
}

.guest-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    color: #2c5530;
    transition: all 0.2s ease;
}

.guest-btn:hover:not(:disabled) {
    background: #2c5530;
    color: white;
    border-color: #2c5530;
}

.guest-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.guest-btn.minus {
    background: #f8f9fa;
}

.guest-btn.plus {
    background: #f8f9fa;
}

/* Anfrage-Seite responsive */
@media (max-width: 768px) {
    .request-page-intro h2 {
        font-size: 1.8rem;
    }

    .request-page-intro p {
        font-size: 1rem;
    }

    .request-info-box {
        padding: 20px;
        margin: 0 15px;
    }

    .optional-booking-section {
        margin: 20px 15px 30px;
        padding: 20px;
    }

    .guest-controls {
        gap: 8px;
    }

    .guest-controls input[type="number"] {
        width: 50px;
        padding: 6px 8px;
    }

    .guest-btn {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }
}

