/* ============================ Reservations Hero ============================ */
.reservations-hero {
    background-image: url('../images/bg4.jpg');
    background-size: cover;
    background-position: center;
    height: 38vh;
    min-height: 220px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    margin-top: 60px;
}

.reservations-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.62);
}

.reservations-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 20px 40px;
}

.reservations-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 0;
}

.reservations-hero-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: #d4af37;
    margin: 12px auto 0;
}

.reservations-hero-sub {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
}

/* ============================ Main Section ============================ */
.reservations-main {
    background-color: #f5f3ef;
    padding: clamp(40px, 6vw, 80px) 0;
}

/* ============================ Form Card ============================ */
.reservations-form-card {
    background: #fff;
    border: 1px solid #e8e0d0;
    padding: clamp(24px, 4vw, 48px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.reservations-form-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 700;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0;
}

.reservations-form-title::after {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: #d4af37;
    margin: 10px 0 16px;
}

.reservations-form-sub {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 28px;
    line-height: 1.6;
}

.reservations-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #9c7d3a;
    margin-bottom: 6px;
}

.reservations-input {
    width: 100%;
    padding: 11px 14px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #333;
    background: #fff;
    border: 1.5px solid #d9cfc0;
    border-radius: 0;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    appearance: none;
    -webkit-appearance: none;
}

.reservations-input:focus {
    border-color: #9c7d3a;
    box-shadow: 0 0 0 3px rgba(156, 125, 58, 0.12);
}

.reservations-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%239c7d3a' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

.reservations-textarea {
    resize: vertical;
    min-height: 110px;
}

/* ============================ Form Message ============================ */
.reservations-msg {
    display: none;
    padding: 12px 16px;
    font-size: 0.88rem;
    font-family: 'Poppins', sans-serif;
    border-radius: 2px;
    margin: 20px 0 0;
}

.reservations-msg--success {
    background: rgba(25, 135, 84, 0.08);
    color: #198754;
    border: 1px solid #198754;
}

.reservations-msg--error {
    background: rgba(220, 53, 69, 0.08);
    color: #dc3545;
    border: 1px solid #dc3545;
}

/* ============================ Submit Button ============================ */
.reservations-submit-btn {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 32px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #d4af37;
    background: transparent;
    border: 2px solid #d4af37;
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease;
    width: 100%;
    justify-content: center;
}

.reservations-submit-btn:hover {
    background-color: #d4af37;
    color: #000;
}

.reservations-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ============================ Info Cards ============================ */
.reservations-info-card {
    background: #111;
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 24px 26px;
    margin-bottom: 16px;
}

.reservations-info-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #d4af37;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.reservations-info-row {
    display: flex;
    gap: 16px;
    margin-bottom: 10px;
    align-items: flex-start;
}

.reservations-info-day {
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: #d4af37;
    min-width: 72px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-top: 1px;
}

.reservations-info-time {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

.reservations-info-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    margin: 0;
}

.reservations-info-text a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.2s;
}

.reservations-info-text a:hover {
    color: #9c7d3a;
    text-decoration: underline;
}

.reservations-note-card {
    border-color: rgba(212, 175, 55, 0.35);
}

.reservations-note-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    line-height: 1.7;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.reservations-note-card p i {
    color: #d4af37;
    margin-top: 2px;
    flex-shrink: 0;
}

.reservations-note-card p strong {
    color: rgba(255, 255, 255, 0.8);
}

/* ============================ Responsive ============================ */
@media (max-width: 991px) {
    .reservations-hero { height: 30vh; }
}

@media (max-width: 600px) {
    .reservations-hero { margin-top: 56px; }
    .reservations-form-card { padding: 20px 16px; }
}
