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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 20px;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px 30px;
    text-align: center;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.2em;
    opacity: 0.9;
}

.booking-section, .confirmation-section {
    padding: 40px 30px;
}

h2 {
    color: #333;
    margin-bottom: 30px;
    font-size: 2em;
}

.form-section {
    margin-bottom: 30px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
}

.form-section h3 {
    color: #667eea;
    margin-bottom: 20px;
    font-size: 1.3em;
}

.info-text {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 15px;
    font-style: italic;
}

.form-group {
    margin-bottom: 20px;
}

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1em;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group input[type="date"] {
    cursor: pointer;
}

#applyPromo {
    margin-top: 10px;
}

.promo-message {
    display: block;
    margin-top: 10px;
    font-size: 0.9em;
    font-weight: 600;
}

.promo-message.success {
    color: #28a745;
}

.promo-message.error {
    color: #dc3545;
}

.price-summary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
}

.price-summary h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.5em;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1.1em;
}

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

.discount-row {
    color: #90ee90;
}

.total-row {
    margin-top: 15px;
    padding-top: 20px;
    border-top: 2px solid white;
    font-size: 1.4em;
    font-weight: bold;
}

.btn-primary, .btn-secondary {
    padding: 15px 40px;
    font-size: 1.1em;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    width: 100%;
    margin-top: 10px;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-secondary:hover {
    background: #667eea;
    color: white;
}

.confirmation-section {
    text-align: center;
    padding: 60px 30px;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: #28a745;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3em;
    margin: 0 auto 30px;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.confirmation-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    font-size: 1.1em;
}

.payment-instructions {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
}

.payment-instructions h3 {
    color: white;
    margin-bottom: 15px;
}

.zelle-number {
    font-size: 1.8em;
    font-weight: bold;
    margin: 15px 0;
}

footer {
    text-align: center;
    color: white;
    padding: 20px;
    font-size: 0.9em;
}

/* Checkbox Styling */
.checkbox-group {
    background: white;
    padding: 15px;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    gap: 12px;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #667eea;
}

.checkbox-text {
    flex: 1;
    line-height: 1.6;
    color: #333;
    font-size: 0.95em;
}

.consent-section {
    background: #fff9e6;
    border: 2px solid #ffd700;
}

.consent-section h3 {
    color: #d97706;
}

/* Venue help box */
.venue-help {
    animation: fadeIn 0.5s ease;
}

.venue-help a {
    text-decoration: none;
    transition: all 0.2s ease;
}

.venue-help a:hover {
    text-decoration: underline;
    color: #4338ca;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    header h1 {
        font-size: 1.8em;
    }

    .tagline {
        font-size: 1em;
    }

    .booking-section, .confirmation-section {
        padding: 20px 15px;
    }

    .form-section {
        padding: 15px;
    }

    h2 {
        font-size: 1.5em;
    }

    .price-summary {
        padding: 20px;
    }

    .total-row {
        font-size: 1.2em;
    }

    .zelle-number {
        font-size: 1.4em;
    }
}

/* Loading Animation */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.btn-primary.loading::after {
    content: "...";
    animation: dots 1.5s infinite;
}

@keyframes dots {
    0%, 20% {
        content: ".";
    }
    40% {
        content: "..";
    }
    60%, 100% {
        content: "...";
    }
}


