/* =========================================
   RESERVATIONS PAGE SPECIFIC STYLES
   ========================================= */

/* === RESERVATIONS LAYOUT === */
.section {
    padding-top: 10rem;
    text-align: center;
}

.section h1 {
    margin-bottom: 1.5rem;
}

.section>.container>p {
    max-width: 700px;
    margin: 0 auto 4rem;
    font-size: 1rem;
    color: var(--text-gray);
}

/* === BOOKING CARD === */
.info-card {
    max-width: 600px;
    margin: 0 auto;
    padding: clamp(2rem, 5vw, 3.5rem);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    position: relative;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--text-accent);
    border-radius: 2px;
}

.info-card h3 {
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.info-card p {
    color: var(--text-gray);
    margin: 0 auto 2rem;
    font-size: 0.95rem;
}

.info-card .btn {
    width: 100%;
    padding: 0.85rem 1.75rem;
    font-size: 0.7rem;
}

/* === RESPONSIVE === */
@media (max-width: 640px) {
    .section {
        padding-top: 7rem;
    }

    .info-card {
        padding: 2rem 1.5rem;
    }
}