
body{
    background-color: #2c2c2c;
}
header{
    background-color: rgba(240, 248, 255, 0.658);
}
header{
    background-color: #2c2c2c62;
}

/* Reset spacing for main area */
.booking-section {
    margin-top: 2rem;
    font-family: 'Inter', sans-serif;
    background:#161616;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Container feel */
.booking-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(0,0,0,0.04), transparent 60%);
    z-index: 0;
}

/* Card wrapper effect */
.booking-section iframe {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1100px;
    height: 85vh;

    border: none;
    border-radius: 16px;

    background: white;

    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.08),
        0 2px 10px rgba(0, 0, 0, 0.04);

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Subtle hover polish */
.booking-section iframe:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.12),
        0 5px 20px rgba(0, 0, 0, 0.06);
}

/* Optional heading styling (if you add one later) */
.booking-title {
    text-align: center;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 30px;
    color: #2c2c2c;
    letter-spacing: 0.5px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .booking-section {
        margin-top: 3rem;
        padding: 30px 10px;
    }

    .booking-section iframe {
        height: 100vh;
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .booking-section iframe {
        height: 75vh;
    }
}