/* ===== HÁTTÉR ===== */

.reservation-hero {
    min-height: 100vh;
    /* background:
        linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.65)),
        url("../../assets/img/wood.jpg") center/cover fixed; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}


/* ===== FŐ PANEL ===== */

.reservation-card {
    background: linear-gradient(180deg, #fffaf2, #f3e3c8);
    border-radius: 18px;
    padding: 60px;
    max-width: 700px;
    text-align: center;
    box-shadow: 0 25px 70px rgba(0,0,0,0.6);
    border: 4px solid #8b5a2b;
    position: relative;
}


/* pergamen díszítés */
.reservation-card::before {
    content: "";
    position: absolute;
    inset: 10px;
    border: 2px dashed rgba(139,90,43,0.35);
    border-radius: 12px;
    pointer-events: none; /* EZ A LÉNYEG */
}

/* ===== CÍM ===== */

.reservation-card h1 {
    font-size: 3rem;
    color: #5a2e0c;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}


/* ===== ELVÁLASZTÓ ===== */

.divider {
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #c99a4d, transparent);
    margin: 25px auto 35px;
}


/* ===== SZÖVEG ===== */

.reservation-card p {
    color: #3b2a1a;
    font-size: 1.2rem;
    line-height: 1.7;
}

.lead {
    font-weight: 600;
}


/* ===== TELEFON GOMB ===== */

.call-btn {
    display: inline-block;
    margin-top: 40px;
    padding: 22px 50px;
    font-size: 1.6rem;
    font-weight: 700;
    text-decoration: none;
    color: white;
    border-radius: 60px;

    background: linear-gradient(180deg, #e6a23c, #b87012);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);

    transition: all .3s ease;
}

.call-btn span {
    font-size: 2rem;
    display: block;
    margin-top: 5px;
}

.call-btn:hover {
    transform: scale(1.05);
    background: linear-gradient(180deg, #f1bb5f, #d08417);
}


/* ===== NYITVATARTÁS ===== */

.hours {
    margin-top: 30px;
    font-size: 1rem;
    color: #6d4a2b;
}


/* ===== MOBIL ===== */

@media (max-width: 768px) {

    .reservation-card {
        padding: 40px 25px;
    }

    .reservation-card h1 {
        font-size: 2.2rem;
    }

    .call-btn {
        width: 100%;
        padding: 20px;
    }

}