/* Ticket Request Page Styles */

#ticket-request-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 2rem 1rem;
    position: relative;
}

.ticket-request-container {
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 3rem auto;
}

.ticket-request-header {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(11, 85, 85, 0.05) 0%, rgba(45, 89, 52, 0.08) 100%);
    border-radius: 1.5rem;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);
}

.ticket-request-header h1 {
    color: var(--bg-primary-1);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    font-weight: 700;
}

.ticket-request-header h3 {
    color: var(--accent-2);
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.event-details {
    color: var(--text-primary-dark);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.event-details strong {
    color: var(--bg-primary-1);
    font-size: 1.2rem;
}

.description {
    color: var(--text-primary-dark);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.85;
}

.form-wrapper {
    width: 100%;
    background: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.1),
        0 2px 6px rgba(0, 0, 0, 0.05);
    min-height: 400px;
}

.ticket-request-footer {
    text-align: center;
    padding: 2rem;
    margin-bottom: 2rem;
}

.ticket-request-footer p {
    color: var(--text-primary-dark);
    font-size: 1.2rem;
    font-weight: 600;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .ticket-request-header {
        padding: 1.5rem;
    }

    .form-wrapper {
        padding: 1rem;
    }

    .ticket-request-footer {
        padding: 1.5rem;
    }
}

@media screen and (min-width: 769px) {
    .form-wrapper {
        padding: 3rem;
    }
}
