/* =========================
   RESERVATION PAGE BASE
========================= */

.reservation {
    position: relative;
    width: 95%;
    margin: 60px auto;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 40px 0;
}

/* =========================
   BACKGROUND IMAGE
========================= */

.reservation .hero-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.reservation .hero-image img {
    width: 60%;
    max-width: 750px;
    padding: 0 20px;
    opacity: 1;
    border-radius: 25px;
}

/* dark overlay */
.reservation::before {
    content: "";
    position: absolute;
    inset: 0;
    
    z-index: 0;
}

/* =========================
   TEXT AREA
========================= */

.reservation .hero-text {
    position: relative;
    z-index: 1;
    width: 100%;
}

/* subtitle */
.reservation .hero-subtitle {
    display: flex;
    align-items: center;
    color: var(--gold);
    letter-spacing: 3px;
    font-size: 14px;
    font-weight: 500;
}

.reservation .hero-subtitle hr {
    margin-left: 10px;
    width: 60px;
    border: 1px solid var(--gold);
}

/* title */
.reservation h1 {
    font-size: clamp(38px, 5vw, 70px);
    color: var(--white);
    line-height: 1.1;
    margin: 20px 0;
}

.reservation h1 span {
    color: var(--green_primary);
}

/* paragraph */
.reservation p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    max-width: 520px;
    margin-bottom: 25px;
}

/* =========================
   FORM
========================= */

.reservation-form {
    margin-top: 20px;
    max-width: 900px;
}

/* GRID */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* INPUTS */
.form-grid input,
.form-grid textarea {
    width: 100%;
    padding: 14px 15px;

    border-radius: 10px;

    border: 1px solid rgba(217, 180, 90, 0.4);
    background: rgba(0,0,0,0.35);

    color: var(--white);
    font-size: 14px;

    outline: none;
    transition: 0.3s ease;
}

/* textarea full width */
.form-grid textarea {
    grid-column: span 2;
    min-height: 120px;
    resize: none;
}

/* focus effect */
.form-grid input:focus,
.form-grid textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 12px rgba(217, 180, 90, 0.35);
}

/* placeholder */
.form-grid input::placeholder,
.form-grid textarea::placeholder {
    color: rgba(255,255,255,0.6);
}

/* =========================
   BUTTON (reuse your system style)
========================= */

.hero-buttons {
    margin-top: 20px;
}

.btn-primary {
    background: var(--gold);
    color: #000;
    padding: 12px 35px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(217, 180, 90, 0.3);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {

    .reservation {
        flex-direction: column;
        text-align: center;
    }

    .reservation .hero-image {
        opacity: 0.2;
        justify-content: center;
    }

    .reservation .hero-image img {
        width: 100%;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-grid textarea {
        grid-column: span 1;
    }

    .reservation p {
        margin: 0 auto 25px auto;
    }
}

@media (max-width: 576px) {

    .hero-buttons {
        width: 100%;
    }

    .btn-primary {
        width: 100%;
    }
}