/* =========================
   AKTUALITÁS CÍM
========================= */

.section-title {
    font-family: "Playfair Display", serif;
    font-size: 42px;
    color: #5a2e0a;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

/* =========================
   PROMO CARD
========================= */

.promo-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    cursor: pointer;

    box-shadow:
        0 20px 50px rgba(0,0,0,0.35),
        inset 0 0 40px rgba(139,69,19,0.25);

    border: 2px solid #e0c18c;
}

.promo-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform .6s ease;
}

/* =========================
   OVERLAY
========================= */

.promo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.85),
        rgba(0,0,0,0.1)
    );

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;

    color: #fff;
    opacity: 0;
    transition: all .5s ease;
}

.promo-overlay h4 {
    font-family: "Playfair Display", serif;
    font-size: 24px;
    margin-bottom: 6px;
}

.promo-overlay p {
    font-size: 15px;
    opacity: 0.9;
}

/* =========================
   HOVER EFFEKT
========================= */

.promo-card:hover img {
    transform: scale(1.1);
}

.promo-card:hover .promo-overlay {
    opacity: 1;
}

/* =========================
   MOBIL
========================= */

@media (max-width: 768px) {

    .promo-card img {
        height: 220px;
    }
}



/* =========================
   RÓLUNK KIEMELŐ BLOKK
========================= */

.about-highlight {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px;

    border-radius: 20px;

    background:
        linear-gradient(135deg, #fff8ec, #f2e3c9);

    box-shadow:
        0 25px 60px rgba(0,0,0,0.25),
        inset 0 0 40px rgba(139,69,19,0.2);

    border: 2px solid #e0c18c;
}

/* =========================
   KÉP
========================= */

.about-img {
    flex: 1;
}

.about-img img {
    width: 100%;
    border-radius: 16px;

    box-shadow:
        0 15px 40px rgba(0,0,0,0.35);

    transition: transform .5s ease;
}

.about-img img:hover {
    transform: scale(1.05);
}

/* =========================
   SZÖVEG
========================= */

.about-text {
    flex: 1;
}

.about-text h2 {
    font-family: "Playfair Display", serif;
    font-size: 36px;
    color: #5a2e0a;
    margin-bottom: 15px;
}

.about-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #3d2a14;
    margin-bottom: 25px;
}

/* =========================
   GOMB
========================= */

.about-btn {
    display: inline-block;
    padding: 14px 28px;

    background: linear-gradient(135deg, #7b3f00, #c79a4a);
    color: #fff;
    text-decoration: none;

    border-radius: 40px;
    font-weight: 600;
    letter-spacing: 1px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.35);

    transition: all .3s ease;
}

.about-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.45);
}

/* =========================
   MOBIL
========================= */

@media (max-width: 768px) {

    .about-highlight {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .about-text h2 {
        font-size: 28px;
    }
}

.capacity-highlight{
    background-image: url("../../assets/img/hero/hero_06.jpg"); /* háttérkép */
    background-size: cover;
    background-position: center;
    border-radius: 18px;
    overflow: hidden;
    margin: 60px 0;
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
    height: 30rem;
}

.capacity-overlay{
    background: linear-gradient(
        rgba(30,20,10,0.75),
        rgba(30,20,10,0.75)
    );
    padding: 40px 30px;
    text-align: center;
}

.capacity-text{
    color: #fff6e8;
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.6;
}

.capacity-text b{
    color: #ffd38a;
    font-weight: 700;
    font-size: 1.5rem;
}


/* PARALAX */
.parallax-window{
    height: 80vh;
    background-image: url("../../assets/img/hero/hero_06.jpg");
    background-attachment: fixed;   /* EZ adja a varázst */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.parallax-overlay{
    position: absolute;
    inset: 0;
    background: rgba(25,15,8,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.parallax-text{
    color: #fff5e6;
    max-width: 700px;
    padding: 40px;
}

.parallax-text h2{
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ffd38a;
}

.parallax-text p{
    font-size: 1.3rem;
    line-height: 1.7;
}