/* Wedding Expo Frontend Styles */
.wedding-expo-registration {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.wedding-expo-registration h2 {
    text-align: center;
    color: #e91e63;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e91e63;
    box-shadow: 0 0 5px rgba(233, 30, 99, 0.3);
}

.password-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    background: none;
    border: none;
    font-size: 18px;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Portal Styles */
.wedding-expo-portal {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.portal-header {
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: white;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.portal-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid #ddd;
}

.portal-tabs button {
    padding: 12px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #666;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.portal-tabs button.active {
    color: #e91e63;
    border-bottom-color: #e91e63;
}

.portal-tabs button:hover {
    color: #e91e63;
}

.portal-content {
    display: none;
}

.portal-content.active {
    display: block;
}

.expo-card,
.booking-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    transition: all 0.3s;
}

.expo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.expo-card h3 {
    color: #e91e63;
    margin-top: 0;
}

.expo-date {
    color: #666;
    font-size: 14px;
}

.expo-location {
    color: #666;
    font-size: 14px;
}

.expo-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.expo-price {
    font-size: 24px;
    font-weight: bold;
    color: #e91e63;
}

.button-primary {
    padding: 10px 20px;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

.booking-status {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.booking-status.confirmed {
    background: #46b450;
    color: white;
}

.booking-status.pending {
    background: #ffb900;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .expo-footer {
        flex-direction: column;
        gap: 15px;
    }
    
    .portal-tabs {
        flex-wrap: wrap;
    }
}

/**
 * Zusätzliche CSS-Styles für flexibles Buchungsformular
 * In frontend-style.css ergänzen:
 */

.booking-option {
    border: 2px solid #eee;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.booking-option:hover {
    border-color: #e91e63;
    background: #fef5f9;
}

.option-checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    width: 100%;
}

.option-checkbox-label input[type="checkbox"] {
    margin-right: 15px;
    width: 24px;
    height: 24px;
    margin-top: 2px;
}

.option-content {
    flex: 1;
}

.option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.option-name {
    font-size: 16px;
    color: #333;
}

.option-price,
.option-unit-price {
    color: #e91e63;
    font-weight: bold;
    font-size: 16px;
}

.option-description {
    color: #666;
    font-size: 14px;
    margin-top: 5px;
}

.quantity-option .option-header {
    margin-bottom: 10px;
}

.option-total {
    margin-top: 10px;
    text-align: right;
    font-size: 14px;
    color: #666;
}

.option-total-price {
    font-weight: bold;
    color: #e91e63;
    font-size: 16px;
}

.category-option {
    border: 2px solid #eee;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    transition: all 0.3s;
    position: relative;
}

.category-option:hover {
    border-color: #e91e63;
    background: #fef5f9;
}

.category-option.free-category {
    border-color: #4caf50;
    background: #e8f5e9;
}

.category-option.paid-category {
    border-color: #ff9800;
    background: #fff3e0;
}

.category-checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    width: 100%;
}

.category-checkbox-label input[type="checkbox"] {
    margin-right: 15px;
    width: 24px;
    height: 24px;
    margin-top: 2px;
}

.category-content {
    flex: 1;
}

.category-name {
    font-size: 16px;
    color: #333;
    display: block;
}

.category-description {
    color: #666;
    font-size: 14px;
    margin-top: 5px;
}

.category-price-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.free-tag {
    background: #4caf50;
    color: white;
}

.paid-tag {
    background: #ff9800;
    color: white;
}

#categories-info-banner {
    background: #e3f2fd;
    border: 2px solid #2196f3;
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
    text-align: center;
}

#categories-info-text {
    font-weight: bold;
    color: #1976d2;
}

.free-category-row {
    background: #e8f5e9;
    color: #2e7d32;
    font-weight: bold;
}

.paid-category-row {
    background: #fff3e0;
}

#options-summary-section,
#categories-summary-section {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
    background: #f9f9f9;
}

.no-options,
.no-categories {
    text-align: center;
    padding: 30px;
    color: #999;
    font-style: italic;
}