/* ========================================================================== 
   Reservation Page Specific Styles (scoped, Bootstrap-compatible)
   ========================================================================== */

/* Fonts to match homepage design language */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* Keep layout consistent with index: no global container overrides, only scoped styles */

/* Heading treatment to mirror homepage */
.heading-primary {
    font-family: 'Playfair Display', serif;
    letter-spacing: 4px;
    text-transform: uppercase;
}
.heading-primary::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #E4AA3A, transparent);
    margin: 12px auto 0;
}

/* Intro text */
.reservation-start {
    color: #cfcfcf;
    text-align: center;
    margin: 0 0 30px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}

.reservation-success {
    color: #E4AA3A;
    text-align: center;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 20px;
    margin: 30px auto;
    max-width: 560px;
}

/* Reservation Form Container (glass/heritage) */
.reserve-form {
    background: linear-gradient(180deg, rgba(17,17,17,0.85), rgba(17,17,17,0.92));
    border: 1px solid rgba(212, 175, 55, 0.28);
    padding: 40px;
    width: 100%;
    max-width: 760px;
    margin: 0 auto 60px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.04);
    backdrop-filter: blur(8px) saturate(115%);
    -webkit-backdrop-filter: blur(8px) saturate(115%);
}

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

/* Labels & controls tuned to homepage palette */
.reserve-form .control-label {
    color: #E4AA3A;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.reserve-form .form-control {
    background: #121212;
    border: 1px solid rgba(212, 175, 55, 0.22);
    color: #f0f0f0;
    border-radius: 0;
}

.reserve-form .form-control:focus {
    background: #141414;
    border-color: #E4AA3A;
    box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.22);
}

/* Button style parity with homepage */
.btn-mogul {
    border-radius: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
    border: 1px solid;
}
.btn-mogul::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: rgba(255,255,255,0.08);
    transition: left 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.btn-mogul:hover::after { left: 100%; }

.btn-mogul-success {
    background: transparent;
    color: #d4af37;
    border-color: rgba(212, 175, 55, 0.5);
}
.btn-mogul-success:hover {
    background: rgba(212,175,55,0.1);
    border-color: #d4af37;
    box-shadow: 0 10px 30px rgba(212,175,55,0.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .reserve-form { padding: 28px 22px; margin-bottom: 40px; }
}

@media (max-width: 480px) {
    .reserve-form { padding: 22px 16px; }
}