.booking-hero {
    background: linear-gradient(135deg, #FF7F00, #CD853F);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.booking-hero .subtitle {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.booking-hero h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.booking-hero .description {
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.booking-details-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 60px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.booking-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    border-top: 6px solid #CD853F;
}

.booking-card h3 {
    margin-top: 0;
    color: #8B4513;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.booking-text {
    color: #555;
    margin-bottom: 10px;
}

.booking-highlight {
    display: block;
    font-size: 1.3rem;
    font-weight: bold;
    color: #D22B2B;
    margin-bottom: 5px;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.booking-note {
    font-size: 0.9rem;
    color: #777;
    margin-top: 10px;
}

.email-link {
    text-decoration: none;
    display: inline-block;
}

.email-link:hover {
    text-decoration: underline;
}

.booking-qr {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.booking-footer {
    text-align: center;
    padding: 30px 15px;
    background-color: #333;
    color: #fff;
}

.booking-footer a {
    color: #FFDAB9;
    text-decoration: none;
}

.booking-footer a:hover {
    text-decoration: underline;
}

@media (max-width: 576px) {
    .booking-hero h2 {
        font-size: 2rem;
    }

    .booking-card {
        padding: 20px;
    }

    .booking-qr {
        width: 160px;
        height: 160px;
    }
}

