body {
    background-color: #EFEFE8;
    color: #000;
    height: auto;
}

/* Navbar Overrides */
.navbar {
    opacity: 1 !important;
    position: fixed !important;
}

/* Hero Section */
.reservation-hero {
    width: 100%;
    height: 70vh;
    min-height: 500px;
    background-color: #000;
    overflow: hidden;
    position: relative;
}

.reservation-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Main Container */
.reservation-container {
    padding: 80px 80px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reservation-header {
    text-align: center;
    margin-bottom: 48px;
}

.reservation-header h1 {
    font-family: 'Cubao', sans-serif;
    font-size: 48px;
    margin-bottom: 16px;
    color: #000;
    letter-spacing: 2px;
}

.reservation-header p {
    font-size: 16px;
    color: #555;
}

.reservation-form-wrapper {
    background: #fff;
    padding: 48px;
    border-radius: 8px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
    font-weight: 700;
}

input[type="text"],
input[type="number"],
input[type="date"],
input[type="time"],
select {
    background: #f9f9f9;
    border: 1px solid #ddd;
    padding: 14px 16px;
    border-radius: 6px;
    color: #000;
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s ease;
}

input:focus,
select:focus {
    outline: none;
    border-color: #000;
    background: #fff;
}

select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
}

.submit-btn {
    margin-top: 16px;
    background: #000;
    color: #fff;
    border: none;
    padding: 18px;
    border-radius: 6px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .reservation-container {
        padding: 40px 20px;
    }
    
    .reservation-form-wrapper {
        padding: 32px 24px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
}

/* Footer override for this page */
.scene5-footer.journal-footer {
    position: relative;
    background: #000;
    padding-top: 60px;
}
