/* PAGE HERO – Rólam oldal */
.page-hero {
    min-height: 350px;
    background-image: url("/images/hero-bg.jpg");
    background-size: cover;
    background-position: center;
}
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.5);
}
.page-hero-title {
    color: var(--dark);
}
.page-hero-sub {
    color: var(--dark);
}

/* ABOUT BLOCKS */
.about-block {
    padding: 60px 0;
}
.about-grid {
    display: grid;
    grid-template-columns: 1.55fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-grid.text-right {
    grid-template-columns: 1fr 1.55fr;
}
.about-text {
    font-size: 18px;
}
.about-text p + p {
    margin-top: 12px;
}
.about-img-soft {
    width: 80%;
    border-radius: 10px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
    margin: 0 auto;
}
.about-img-bold {
    width: 90%;
    border-radius: 10px;
    box-shadow: -25px 25px 0 5px var(--red);
    margin: 0 auto;
}

/* KAPCSOLAT – Rólam oldal */
.contact-section {
    background: rgba(0, 0, 0, 0.06);
    padding: 60px 0;
}
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin: 0 auto;
}
.contact-heading {
    font-family: "Playfair Display", serif;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 14px;
}
.contact-intro {
    font-size: 16px;
    margin-bottom: 20px;
}
.contact-email-row {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 22px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 28px;
}
.contact-email-row i {
    color: var(--red);
    font-size: 40px;
}
.contact-social-label {
    color: var(--red);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* RESPONSIVE – Rólam */
@media (max-width: 1024px) {
    .about-grid,
    .about-grid.text-right {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-grid.text-right > :first-child {
        order: 2;
    }
    .about-img-soft,
    .about-img-bold {
        width: 60%;
    }
    .contact-layout {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin: 0 auto;
    }
}
@media (max-width: 767px) {
    .about-img-soft,
    .about-img-bold {
        width: 80%;
    }
}
