@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600&display=swap");

:root {
    --color-background: #fbf5f1;
    --color-surface: #fffdfb;

    --color-text: #203b30;
    --color-text-light: #6e756f;

    --color-green: #315d48;
    --color-green-dark: #1d4032;
    --color-green-light: #e4ebe2;

    --color-blush: #f2dfd9;
    --color-blush-light: #faefeb;

    --color-gold: #c29a55;
    --color-gold-light: #e2c891;

    --color-border: rgba(49, 93, 72, 0.15);

    --font-heading: "Cormorant Garamond", Georgia, serif;
    --font-body: "Manrope", Arial, sans-serif;

    --container-width: 1180px;
    --shadow-soft: 0 24px 70px rgba(49, 66, 55, 0.12);
    --transition: 250ms ease;
}


/* Alapbeállítások */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--color-text);
    background-color: var(--color-background);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    font: inherit;
}

/* Fejléc */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(248, 248, 244, 0.9);
    border-bottom: 1px solid var(--color-border);
    backdrop-filter: blur(16px);
}

.header-container {
    width: min(calc(100% - 48px), var(--container-width));
    min-height: 88px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.logo {
    display: inline-flex;
    flex-direction: column;
    line-height: 1;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.logo-subtitle {
    margin-top: 7px;
    color: var(--color-gold);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-navigation a {
    position: relative;
    color: var(--color-text-light);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition:
        color var(--transition),
        transform var(--transition);
}

.main-navigation a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 1px;
    background-color: var(--color-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition);
}

.main-navigation a:hover {
    color: var(--color-green-dark);
}

.main-navigation a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-button {
    display: inline-flex;
    min-height: 46px;
    padding: 0 24px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background-color: var(--color-green);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition:
        background-color var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}

.header-button:hover {
    background-color: var(--color-green-dark);
    box-shadow: 0 12px 28px rgba(36, 63, 49, 0.18);
    transform: translateY(-2px);
}

.menu-button {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    background-color: transparent;
    cursor: pointer;
}

.menu-button span {
    display: block;
    width: 18px;
    height: 1px;
    margin: 5px auto;
    background-color: var(--color-green-dark);
}

/* Nyitó szakasz */

.hero {
    position: relative;
    min-height: calc(100vh - 88px);
    overflow: hidden;
    background:
        radial-gradient(
            circle at 88% 18%,
            rgba(201, 218, 205, 0.7),
            transparent 30%
        ),
        radial-gradient(
            circle at 8% 88%,
            rgba(229, 218, 194, 0.42),
            transparent 28%
        ),
        var(--color-background);
}

.hero::before {
    content: "";
    position: absolute;
    width: 430px;
    height: 680px;
    top: 12%;
    right: -260px;
    border: 1px solid rgba(52, 88, 68, 0.14);
    border-radius: 50%;
    transform: rotate(28deg);
}

.hero-container {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 48px), var(--container-width));
    min-height: calc(100vh - 88px);
    margin-inline: auto;
    padding-block: 72px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: clamp(48px, 8vw, 110px);
}

.hero-content {
    max-width: 650px;
}

.hero-eyebrow {
    position: relative;
    margin: 0 0 24px;
    padding-left: 58px;
    color: var(--color-green);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.hero-eyebrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 40px;
    height: 1px;
    background-color: var(--color-gold);
}

.hero h1 {
    max-width: 700px;
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(4rem, 6.8vw, 6.6rem);
    font-weight: 500;
    line-height: 0.91;
    letter-spacing: -0.045em;
}

.hero h1 span {
    display: block;
    color: var(--color-green);
    font-style: italic;
}

.hero-description {
    max-width: 590px;
    margin: 32px 0 0;
    color: var(--color-text-light);
    font-size: clamp(0.96rem, 1.4vw, 1.08rem);
    line-height: 1.9;
}

.hero-actions {
    margin-top: 42px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.primary-button,
.secondary-button {
    display: inline-flex;
    min-height: 54px;
    padding: 0 30px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition:
        color var(--transition),
        background-color var(--transition),
        border-color var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}

.primary-button {
    color: #ffffff;
    background-color: var(--color-green);
    border: 1px solid var(--color-green);
}

.primary-button:hover {
    background-color: var(--color-green-dark);
    border-color: var(--color-green-dark);
    box-shadow: 0 15px 35px rgba(36, 63, 49, 0.2);
    transform: translateY(-3px);
}

.secondary-button {
    color: var(--color-green-dark);
    background-color: transparent;
    border: 1px solid rgba(52, 88, 68, 0.28);
}

.secondary-button:hover {
    background-color: var(--color-surface);
    border-color: var(--color-green);
    transform: translateY(-3px);
}

/* Jobb oldali vizuális elem */

.hero-visual {
    position: relative;
    min-height: 570px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual::before,
.hero-visual::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(185, 154, 94, 0.38);
    border-radius: 50%;
}

.hero-visual::before {
    width: 390px;
    height: 530px;
    transform: rotate(12deg);
}

.hero-visual::after {
    width: 310px;
    height: 480px;
    transform: rotate(-12deg);
}

.hero-image-placeholder {
    position: relative;
    z-index: 2;
    width: min(100%, 390px);
    aspect-ratio: 0.76;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 54px 32px;
    color: #ffffff;
    background:
        linear-gradient(
            180deg,
            rgba(34, 66, 48, 0.05),
            rgba(25, 49, 36, 0.76)
        ),
        radial-gradient(
            circle at 50% 24%,
            rgba(255, 255, 255, 0.86),
            transparent 23%
        ),
        linear-gradient(145deg, #c8d8ca, #55745f);
    border: 8px solid rgba(255, 255, 255, 0.76);
    border-radius: 190px 190px 36px 36px;
    box-shadow: var(--shadow-soft);
}

.hero-image-placeholder::before {
    content: "";
    position: absolute;
    width: 210px;
    height: 360px;
    top: 55px;
    left: 42%;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 50%;
    transform: rotate(38deg);
}

.hero-image-placeholder span,
.hero-image-placeholder strong {
    position: relative;
    z-index: 1;
}

.hero-image-placeholder span {
    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.hero-image-placeholder strong {
    margin-top: 8px;
    font-family: var(--font-heading);
    font-size: 2.35rem;
    font-weight: 500;
    line-height: 1;
}

/* Reszponzív megjelenés */

@media (max-width: 1020px) {
    .main-navigation,
    .header-button {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .hero-container {
        grid-template-columns: 1fr;
        padding-block: 80px;
    }

    .hero-content {
        max-width: 760px;
    }

    .hero-visual {
        min-height: 520px;
    }
}

@media (max-width: 700px) {
    .header-container,
    .hero-container {
        width: min(calc(100% - 32px), var(--container-width));
    }

    .header-container {
        min-height: 76px;
    }

    .hero {
        min-height: calc(100vh - 76px);
    }

    .hero-container {
        min-height: calc(100vh - 76px);
        padding-block: 60px;
        gap: 54px;
    }

    .hero h1 {
        font-size: clamp(3.4rem, 16vw, 5rem);
    }

    .hero-description {
        margin-top: 26px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
    }

    .hero-visual {
        min-height: auto;
    }

    .hero-image-placeholder {
        width: min(92%, 360px);
    }

    .hero-visual::before {
        width: 300px;
        height: 430px;
    }

    .hero-visual::after {
        width: 250px;
        height: 390px;
    }
}

@media (max-width: 420px) {
    .logo-name {
        font-size: 1.25rem;
    }

    .hero-eyebrow {
        padding-left: 45px;
        font-size: 0.62rem;
        letter-spacing: 0.16em;
    }

    .hero-eyebrow::before {
        width: 30px;
    }
}@media (min-width: 1021px) and (max-height: 900px) {
    .hero-container {
        padding-block: 42px;
    }

    .hero h1 {
        font-size: clamp(3.8rem, 5.4vw, 5.6rem);
    }

    .hero-description {
        margin-top: 24px;
        line-height: 1.75;
    }

    .hero-actions {
        margin-top: 30px;
    }

    .hero-visual {
        min-height: 510px;
    }

    .hero-image-placeholder {
        width: min(100%, 360px);
    }
}/* Rólam szakasz */

.about-section {
    position: relative;
    overflow: hidden;
    padding: clamp(90px, 10vw, 150px) 0;
    background-color: var(--color-surface);
}

.about-section::before {
    content: "";
    position: absolute;
    top: -170px;
    left: -210px;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(185, 154, 94, 0.2);
    border-radius: 50%;
}

.about-section::after {
    content: "";
    position: absolute;
    right: -180px;
    bottom: -220px;
    width: 480px;
    height: 480px;
    background-color: rgba(223, 233, 225, 0.45);
    border-radius: 50%;
    filter: blur(2px);
}

.about-container {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 48px), var(--container-width));
    margin-inline: auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: clamp(60px, 9vw, 130px);
}

/* Rólam képterület */

.about-visual {
    position: relative;
    max-width: 470px;
}

.about-image-placeholder {
    position: relative;
    min-height: 610px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 38px;
    background:
        linear-gradient(
            180deg,
            rgba(36, 63, 49, 0.03),
            rgba(36, 63, 49, 0.5)
        ),
        radial-gradient(
            circle at 48% 30%,
            rgba(255, 255, 255, 0.75),
            transparent 22%
        ),
        linear-gradient(145deg, #dce6dd, #78917f);
    border-radius: 220px 220px 28px 28px;
    box-shadow: var(--shadow-soft);
}

.about-image-placeholder::before {
    content: "";
    position: absolute;
    top: 35px;
    right: 28px;
    width: 74%;
    height: 76%;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 50%;
    transform: rotate(-24deg);
}

.about-image-placeholder span {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.about-signature {
    position: absolute;
    right: -64px;
    bottom: 55px;
    width: 210px;
    margin: 0;
    padding: 22px 26px;
    color: var(--color-green-dark);
    background-color: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    box-shadow: 0 18px 45px rgba(36, 63, 49, 0.12);
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-style: italic;
    line-height: 1.25;
}

/* Rólam szöveges tartalom */

.section-eyebrow {
    position: relative;
    margin: 0 0 24px;
    padding-left: 58px;
    color: var(--color-green);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.section-eyebrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 40px;
    height: 1px;
    background-color: var(--color-gold);
}

.about-content h2 {
    max-width: 680px;
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(3.2rem, 5vw, 5.1rem);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.035em;
}

.about-content h2 span {
    display: block;
    margin-top: 10px;
    color: var(--color-green);
    font-style: italic;
}

.about-content > p:not(.section-eyebrow) {
    max-width: 660px;
    color: var(--color-text-light);
    font-size: 0.96rem;
    line-height: 1.9;
}

.about-lead {
    margin: 34px 0 0;
    color: var(--color-text) !important;
    font-size: 1.05rem !important;
}

.about-content > p + p {
    margin-top: 20px;
}

.text-link {
    position: relative;
    margin-top: 34px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--color-green-dark);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.text-link::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 1px;
    background-color: var(--color-gold);
    transform: scaleX(0.35);
    transform-origin: left;
    transition: transform var(--transition);
}

.text-link span {
    font-size: 1.1rem;
    transition: transform var(--transition);
}

.text-link:hover::after {
    transform: scaleX(1);
}

.text-link:hover span {
    transform: translateX(6px);
}

/* Rólam szakasz – tablet */

@media (max-width: 1020px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .about-visual {
        width: min(100%, 520px);
        margin-inline: auto;
    }

    .about-content {
        max-width: 760px;
        margin-inline: auto;
    }

    .about-signature {
        right: -25px;
    }
}

/* Rólam szakasz – mobil */

@media (max-width: 700px) {
    .about-section {
        padding: 80px 0;
    }

    .about-container {
        width: min(calc(100% - 32px), var(--container-width));
        gap: 60px;
    }

    .about-image-placeholder {
        min-height: 480px;
        border-radius: 170px 170px 24px 24px;
    }

    .about-signature {
        position: relative;
        right: auto;
        bottom: auto;
        width: calc(100% - 32px);
        margin: -30px auto 0;
    }

    .about-content h2 {
        font-size: clamp(2.9rem, 13vw, 4.2rem);
    }

    .about-lead {
        margin-top: 28px;
    }
}/* Szolgáltatások szakasz */

.services-section {
    position: relative;
    overflow: hidden;
    padding: clamp(90px, 10vw, 150px) 0;
    background:
        radial-gradient(
            circle at 92% 8%,
            rgba(223, 233, 225, 0.72),
            transparent 30%
        ),
        var(--color-background);
}

.services-section::before {
    content: "FH";
    position: absolute;
    right: -20px;
    bottom: -85px;
    color: rgba(52, 88, 68, 0.035);
    font-family: var(--font-heading);
    font-size: clamp(15rem, 30vw, 32rem);
    font-weight: 600;
    line-height: 0.8;
    pointer-events: none;
}

.services-container {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 48px), var(--container-width));
    margin-inline: auto;
}

.services-heading {
    margin-bottom: clamp(55px, 7vw, 90px);
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    align-items: end;
    gap: 70px;
}

.services-heading h2 {
    max-width: 760px;
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(3.2rem, 5vw, 5.2rem);
    font-weight: 500;
    line-height: 0.96;
    letter-spacing: -0.035em;
}

.services-heading h2 span {
    display: block;
    margin-top: 10px;
    color: var(--color-green);
    font-style: italic;
}

.services-heading > p {
    max-width: 390px;
    margin: 0 0 8px;
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.85;
}

/* Szolgáltatáskártyák */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.service-card {
    position: relative;
    min-height: 390px;
    padding: 42px 38px;
    display: flex;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.5);
    transition:
        background-color var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}

.service-card:not(:last-child) {
    border-right: 1px solid var(--color-border);
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            145deg,
            rgba(223, 233, 225, 0.85),
            rgba(255, 255, 255, 0.96)
        );
    opacity: 0;
    transition: opacity var(--transition);
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-card:hover {
    z-index: 2;
    box-shadow: 0 28px 60px rgba(36, 63, 49, 0.12);
    transform: translateY(-8px);
}

.service-card:hover::before {
    opacity: 1;
}

.service-number {
    width: 48px !important;
    height: 48px !important;
    background-size: 155% auto !important;
}

.service-card h3 {
    margin: 70px 0 20px;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 2.8vw, 2.75rem);
    font-weight: 500;
    line-height: 1;
}

.service-card p {
    max-width: 320px;
    margin: 0;
    color: var(--color-text-light);
    font-size: 0.9rem;
    line-height: 1.8;
}

.service-card a {
    margin-top: auto;
    padding-top: 42px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--color-green-dark);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.service-card a span {
    font-size: 1.1rem;
    transition: transform var(--transition);
}

.service-card:hover a span {
    transform: translateX(6px);
}

/* Szolgáltatások – tablet */

@media (max-width: 1020px) {
    .services-heading {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services-heading > p {
        max-width: 600px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 310px;
    }

    .service-card:not(:last-child) {
        border-right: 0;
        border-bottom: 1px solid var(--color-border);
    }

    .service-card h3 {
        margin-top: 42px;
    }
}

/* Szolgáltatások – mobil */

@media (max-width: 700px) {
    .services-section {
        padding: 80px 0;
    }

    .services-container {
        width: min(calc(100% - 32px), var(--container-width));
    }

    .services-heading {
        margin-bottom: 50px;
    }

    .services-heading h2 {
        font-size: clamp(2.9rem, 13vw, 4.2rem);
    }

    .service-card {
        min-height: 330px;
        padding: 34px 28px;
    }

    .service-card h3 {
        font-size: 2.25rem;
    }
}@media (min-width: 1021px) and (max-height: 900px) {
    .services-section {
        padding-top: 70px;
        padding-bottom: 90px;
    }

    .services-heading {
        margin-bottom: 52px;
    }

    .service-card {
        min-height: 350px;
        padding: 36px 38px;
    }

    .service-card h3 {
        margin-top: 50px;
    }
}/* Plakát ihlette szolgáltatáskártyák */

.services-section {
    background:
        radial-gradient(
            circle at 92% 10%,
            rgba(228, 235, 226, 0.9),
            transparent 32%
        ),
        radial-gradient(
            circle at 8% 90%,
            rgba(242, 223, 217, 0.8),
            transparent 34%
        ),
        var(--color-background);
}

.services-grid {
    border-color: rgba(194, 154, 85, 0.24);
}

.service-card {
    background-color: rgba(255, 250, 247, 0.76);
}

.service-card:nth-child(2) {
    background-color: rgba(250, 239, 235, 0.72);
}

.service-card::before {
    background:
        linear-gradient(
            145deg,
            rgba(242, 223, 217, 0.95),
            rgba(255, 253, 251, 0.98)
        );
}

.service-card:not(:last-child) {
    border-color: rgba(194, 154, 85, 0.2);
}

.service-number {
    color: var(--color-gold);
}

.service-card h3 {
    color: var(--color-green-dark);
}/* Árlista szakasz */

.price-section {
    position: relative;
    overflow: hidden;
    padding: clamp(90px, 10vw, 150px) 0;
    background:
        radial-gradient(
            circle at 8% 15%,
            rgba(242, 223, 217, 0.72),
            transparent 30%
        ),
        radial-gradient(
            circle at 96% 92%,
            rgba(228, 235, 226, 0.8),
            transparent 32%
        ),
        var(--color-surface);
}

.price-section::before {
    content: "FH";
    position: absolute;
    top: 30px;
    right: -40px;
    color: rgba(49, 93, 72, 0.035);
    font-family: var(--font-heading);
    font-size: clamp(15rem, 28vw, 30rem);
    font-weight: 600;
    line-height: 0.8;
    pointer-events: none;
}

.price-container {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 48px), var(--container-width));
    margin-inline: auto;
}

/* Árlista címsor */

.price-heading {
    max-width: 790px;
    margin-bottom: clamp(55px, 7vw, 90px);
}

.price-heading h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(3.2rem, 5vw, 5.2rem);
    font-weight: 500;
    line-height: 0.96;
    letter-spacing: -0.035em;
}

.price-heading h2 span {
    display: block;
    margin-top: 10px;
    color: var(--color-green);
    font-style: italic;
}

.price-heading > p:last-child {
    max-width: 650px;
    margin: 30px 0 0;
    color: var(--color-text-light);
    font-size: 0.96rem;
    line-height: 1.85;
}

/* Árlista elrendezés */

.price-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(310px, 0.55fr);
    align-items: start;
    gap: clamp(45px, 7vw, 90px);
}

.price-list {
    border-top: 1px solid rgba(194, 154, 85, 0.32);
}

.price-item {
    position: relative;
    width: 100%;
    padding: 28px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    border-bottom: 1px solid rgba(194, 154, 85, 0.24);
    transition:
        padding var(--transition),
        background-color var(--transition);
}

.price-item:hover {
    padding-inline: 18px;
    background-color: rgba(242, 223, 217, 0.35);
}

.price-item > div {
    display: flex;
    align-items: center;
    gap: 28px;
}

.price-item span {
    flex: 0 0 auto;
    color: var(--color-gold);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 0.12em;
}

.price-item h3 {
    margin: 0;
    color: var(--color-green-dark);
    font-family: var(--font-heading);
    font-size: clamp(1.45rem, 2vw, 1.9rem);
    font-weight: 500;
    line-height: 1.15;
}

.price-item strong {
    flex: 0 0 auto;
    color: var(--color-green-dark);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

/* Időpontfoglalási kártya */

.booking-card {
    position: sticky;
    top: 120px;
    overflow: hidden;
    padding: clamp(38px, 4vw, 52px);
    color: #ffffff;
    background:
        linear-gradient(
            155deg,
            rgba(255, 255, 255, 0.08),
            transparent 45%
        ),
        var(--color-green-dark);
    border-radius: 220px 220px 28px 28px;
    box-shadow: var(--shadow-soft);
}

.booking-card::before {
    content: "";
    position: absolute;
    top: 45px;
    right: -65px;
    width: 240px;
    height: 390px;
    border: 1px solid rgba(226, 200, 145, 0.35);
    border-radius: 50%;
    transform: rotate(27deg);
}

.booking-card > * {
    position: relative;
    z-index: 1;
}

.booking-card-label {
    margin: 0 0 28px;
    color: var(--color-gold-light);
    font-size: 0.67rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.booking-card h3 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 500;
    line-height: 1.05;
}

.booking-card > p:not(.booking-card-label, .booking-social) {
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    line-height: 1.8;
}

.booking-phone {
    margin-top: 30px;
    display: inline-block;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 500;
    transition: color var(--transition);
}

.booking-phone:hover {
    color: var(--color-gold-light);
}

.booking-social {
    margin: 12px 0 32px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    overflow-wrap: anywhere;
}

.booking-card .primary-button {
    min-height: 50px;
    color: var(--color-green-dark);
    background-color: var(--color-gold-light);
    border-color: var(--color-gold-light);
}

.booking-card .primary-button:hover {
    color: #ffffff;
    background-color: var(--color-gold);
    border-color: var(--color-gold);
}

/* Árlista – tablet */

@media (max-width: 1020px) {
    .price-layout {
        grid-template-columns: 1fr;
    }

    .booking-card {
        position: relative;
        top: auto;
        width: min(100%, 560px);
        border-radius: 180px 180px 28px 28px;
    }
}

/* Árlista – mobil */

@media (max-width: 700px) {

    .price-container {
        width: min(calc(100% - 32px), var(--container-width));
    }

    .price-heading {
        margin-bottom: 50px;
    }

    .price-heading h2 {
        font-size: clamp(2.9rem, 13vw, 4.2rem);
    }

    .price-item {
        padding-block: 22px;
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .price-item:hover {
        padding-inline: 12px;
    }

    .price-item > div {
        align-items: flex-start;
        gap: 16px;
    }

    .price-item h3 {
        font-size: 1.55rem;
    }

    .price-item strong {
        padding-left: 38px;
    }

    .booking-card {
        padding: 48px 30px 38px;
        border-radius: 140px 140px 24px 24px;
    }
}

/* Fotószerű botanikus háttér a nyitó szakaszhoz */

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(251, 245, 241, 0.97) 0%,
            rgba(251, 245, 241, 0.88) 48%,
            rgba(251, 245, 241, 0.58) 100%
        ),
        url("./images/botanical-background.jpg");

    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.hero::before {
    z-index: 1;
}

.hero-container {
    z-index: 2;
}

@media (max-width: 700px) {
    .hero::after {
        background:
            linear-gradient(
                rgba(251, 245, 241, 0.9),
                rgba(251, 245, 241, 0.94)
            ),
            url("./images/botanical-background.jpg");

        background-position: 64% center;
        background-size: cover;
    }
}/* Botanikus háttér a nyitó szakaszhoz */

.hero {
    background:
        linear-gradient(
            90deg,
            rgba(251, 245, 241, 0.98) 0%,
            rgba(251, 245, 241, 0.95) 38%,
            rgba(251, 245, 241, 0.78) 62%,
            rgba(251, 245, 241, 0.45) 100%
        ),
        url("./images/leveles-hatter.jpg");

    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

@media (max-width: 700px) {
    .hero {
        background:
            linear-gradient(
                rgba(251, 245, 241, 0.92),
                rgba(251, 245, 241, 0.95)
            ),
            url("./images/leveles-hatter.jpg");

        background-position: 58% center;
        background-size: cover;
    }
}/* Erőteljesebb botanikus hero háttér */

.hero {
    background:
        linear-gradient(
            90deg,
            rgba(251, 245, 241, 0.98) 0%,
            rgba(251, 245, 241, 0.92) 34%,
            rgba(251, 245, 241, 0.62) 56%,
            rgba(251, 245, 241, 0.12) 100%
        ),
        radial-gradient(
            circle at 25% 35%,
            rgba(242, 223, 217, 0.48),
            transparent 38%
        ),
        url("./images/leveles-hatter.jpg");

    background-repeat: no-repeat;
    background-position:
        center,
        center,
        center right;
    background-size: cover;
}/* Valódi körömfotó a nyitó szakaszban */

.hero-image-placeholder {
    align-items: flex-start;
    justify-content: flex-end;

    background:
        linear-gradient(
            180deg,
            rgba(29, 64, 50, 0.02) 40%,
            rgba(29, 64, 50, 0.72) 100%
        ),
        url("./images/brand-poster.jpg");

    background-repeat: no-repeat;
    background-size: 205% auto;
    background-position: 5% 3%;
}

.hero-image-placeholder::before {
    opacity: 0.55;
}/* Letisztult hero vizuál */

.hero-image-placeholder {
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.12) 0%,
            rgba(29, 64, 50, 0.12) 42%,
            rgba(29, 64, 50, 0.9) 100%
        ),
        radial-gradient(
            circle at 50% 24%,
            rgba(255, 255, 255, 0.82),
            transparent 27%
        ),
        linear-gradient(
            145deg,
            #dce5dc 0%,
            #91a594 44%,
            #244936 100%
        );

    background-position: center;
    background-size: cover;
}/* FH monogram a nyitó vizuálon */

.hero-image-placeholder::after {
    content: "FH";
    position: absolute;
    top: 72px;
    left: 50%;
    z-index: 2;
    color: rgba(255, 255, 255, 0.92);
    font-family: var(--font-heading);
    font-size: clamp(4.5rem, 6vw, 6.5rem);
    font-weight: 500;
    line-height: 0.72;
    letter-spacing: -0.12em;
    transform: translateX(-50%);
    text-shadow: 0 8px 28px rgba(29, 64, 50, 0.16);
}.hero-image-placeholder::after {
    content: none;
}/* Saját körömfotó a nyitó szakaszban */

.hero-image-placeholder {
    background:
        linear-gradient(
            180deg,
            rgba(29, 64, 50, 0) 48%,
            rgba(29, 64, 50, 0.82) 100%
        ),
        url("./images/hero-nails.jpg");

    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.hero-image-placeholder::after {
    content: none;
}.hero-image-placeholder::before {
    content: none;
}/* Galéria szakasz */

.gallery-section {
    position: relative;
    overflow: hidden;
    padding: clamp(90px, 10vw, 150px) 0;
    background:
        radial-gradient(
            circle at 5% 10%,
            rgba(242, 223, 217, 0.72),
            transparent 30%
        ),
        radial-gradient(
            circle at 95% 90%,
            rgba(228, 235, 226, 0.78),
            transparent 32%
        ),
        var(--color-background);
}

.gallery-container {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 48px), var(--container-width));
    margin-inline: auto;
}

/* Galéria fejléc */

.gallery-heading {
    margin-bottom: clamp(55px, 7vw, 90px);
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    align-items: end;
    gap: 70px;
}

.gallery-heading h2 {
    max-width: 760px;
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(3.2rem, 5vw, 5.2rem);
    font-weight: 500;
    line-height: 0.96;
    letter-spacing: -0.035em;
}

.gallery-heading h2 span {
    display: block;
    margin-top: 10px;
    color: var(--color-green);
    font-style: italic;
}

.gallery-heading > p {
    max-width: 390px;
    margin: 0 0 8px;
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.85;
}

/* Magazin jellegű képrács */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: 290px;
    gap: 22px;
}

.gallery-item {
    position: relative;
    grid-column: span 5;
    min-width: 0;
    margin: 0;
    overflow: hidden;
    background-color: var(--color-blush-light);
    border: 7px solid rgba(255, 253, 251, 0.9);
    border-radius: 6px;
    box-shadow: 0 22px 55px rgba(49, 66, 55, 0.12);
}

.gallery-item-large {
    grid-column: span 7;
    grid-row: span 2;
}

.gallery-item-wide {
    grid-column: 1 / -1;
    min-height: 350px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition:
        transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1),
        filter 500ms ease;
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            transparent 42%,
            rgba(22, 52, 39, 0.82) 100%
        );
    pointer-events: none;
}

.gallery-item figcaption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    padding: 30px;
    color: #ffffff;
    transform: translateY(6px);
    transition: transform var(--transition);
}

.gallery-item figcaption span {
    display: block;
    margin-bottom: 7px;
    color: var(--color-gold-light);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.gallery-item figcaption strong {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 2.7vw, 2.7rem);
    font-weight: 500;
    line-height: 1;
}

.gallery-item:hover img {
    filter: saturate(1.05);
    transform: scale(1.045);
}

.gallery-item:hover figcaption {
    transform: translateY(0);
}

/* Galéria – tablet */

@media (max-width: 1020px) {
    .gallery-heading {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .gallery-heading > p {
        max-width: 620px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 360px;
    }

    .gallery-item,
    .gallery-item-large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-item-wide {
        grid-column: 1 / -1;
    }
}

/* Galéria – mobil */

@media (max-width: 700px) {
    .gallery-section {
        padding: 80px 0;
    }

    .gallery-container {
        width: min(calc(100% - 32px), var(--container-width));
    }

    .gallery-heading {
        margin-bottom: 50px;
    }

    .gallery-heading h2 {
        font-size: clamp(2.9rem, 13vw, 4.2rem);
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 420px;
        gap: 18px;
    }

    .gallery-item,
    .gallery-item-large,
    .gallery-item-wide {
        grid-column: 1;
        grid-row: auto;
        min-height: 0;
    }

    .gallery-item figcaption {
        padding: 24px;
    }
}#rolam,
#szolgaltatasok,
#arlista,
#galeria,
#kapcsolat {
    scroll-margin-top: 110px;
}/* Galéria javítása – a teljes fotók látszódjanak */

.gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 560px;
    gap: 24px;
}

.gallery-item,
.gallery-item-large,
.gallery-item-wide {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 0;
}

.gallery-item img {
    object-fit: contain;
    object-position: center;
    background-color: var(--color-blush-light);
}

@media (max-width: 700px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 470px;
    }

    .gallery-item,
    .gallery-item-large,
    .gallery-item-wide {
        grid-column: 1;
    }
}/* A fehér-ezüst körömfotó finom nagyítása */

.gallery-item:nth-child(3) img {
    object-fit: cover;
    object-position: center;
}/* Kapcsolat szakasz */

.contact-section {
    position: relative;
    overflow: hidden;
    padding: clamp(90px, 10vw, 150px) 0;
    background:
        linear-gradient(
            90deg,
            rgba(251, 245, 241, 0.97),
            rgba(251, 245, 241, 0.82)
        ),
        url("./images/leveles-hatter.jpg");

    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.contact-section::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -160px;
    width: 480px;
    height: 480px;
    border: 1px solid rgba(194, 154, 85, 0.28);
    border-radius: 50%;
    pointer-events: none;
}

.contact-container {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 48px), var(--container-width));
    margin-inline: auto;
}

/* Kapcsolat fejléc */

.contact-heading {
    max-width: 790px;
    margin-bottom: clamp(55px, 7vw, 90px);
}

.contact-heading h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(3.2rem, 5vw, 5.2rem);
    font-weight: 500;
    line-height: 0.96;
    letter-spacing: -0.035em;
}

.contact-heading h2 span {
    display: block;
    margin-top: 10px;
    color: var(--color-green);
    font-style: italic;
}

.contact-heading > p:last-child {
    max-width: 650px;
    margin: 30px 0 0;
    color: var(--color-text-light);
    font-size: 0.96rem;
    line-height: 1.85;
}

/* Kapcsolati elrendezés */

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
    align-items: start;
    gap: clamp(35px, 6vw, 80px);
}

.contact-details {
    display: grid;
    gap: 22px;
}

.contact-detail {
    padding: 38px;
    background-color: rgba(255, 253, 251, 0.85);
    border: 1px solid rgba(194, 154, 85, 0.22);
    box-shadow: 0 18px 45px rgba(49, 66, 55, 0.08);
    backdrop-filter: blur(10px);
}

.contact-label {
    display: block;
    margin-bottom: 22px;
    color: var(--color-gold);
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.contact-detail h3,
.contact-detail > a {
    margin: 0;
    color: var(--color-green-dark);
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 2.6vw, 2.5rem);
    font-weight: 500;
    line-height: 1.1;
}

.contact-detail > a {
    display: inline-block;
    transition:
        color var(--transition),
        transform var(--transition);
}

.contact-detail > a:hover {
    color: var(--color-gold);
    transform: translateX(4px);
}

.contact-detail p {
    margin: 14px 0 0;
    color: var(--color-text-light);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Üzenetküldési kártya */

.contact-booking {
    position: relative;
    height: fit-content;
align-self: start;
    overflow: hidden;
    padding: clamp(45px, 6vw, 76px);
    color: #ffffff;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.08),
            transparent 46%
        ),
        var(--color-green-dark);
    border-radius: 10px 180px 10px 10px;
    box-shadow: var(--shadow-soft);
}

.contact-booking::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -50px;
    width: 310px;
    height: 420px;
    border: 1px solid rgba(226, 200, 145, 0.34);
    border-radius: 50%;
    transform: rotate(28deg);
}

.contact-booking > * {
    position: relative;
    z-index: 1;
}

.contact-booking-label {
    margin: 0 0 28px;
    color: var(--color-gold-light);
    font-size: 0.67rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.contact-booking h3 {
    max-width: 620px;
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 4vw, 4rem);
    font-weight: 500;
    line-height: 1.02;
}

.contact-booking > p:not(.contact-booking-label) {
    max-width: 570px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.94rem;
    line-height: 1.8;
}

.contact-actions {
    margin-top: 42px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.contact-booking .primary-button {
    color: var(--color-green-dark);
    background-color: var(--color-gold-light);
    border-color: var(--color-gold-light);
}

.contact-booking .primary-button:hover {
    color: #ffffff;
    background-color: var(--color-gold);
    border-color: var(--color-gold);
}

.contact-booking .secondary-button {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.42);
}

.contact-booking .secondary-button:hover {
    color: var(--color-green-dark);
    background-color: #ffffff;
    border-color: #ffffff;
}

/* Kapcsolat – tablet */

@media (max-width: 1020px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-details {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-booking {
        border-radius: 10px 150px 10px 10px;
    }
}

/* Kapcsolat – mobil */

@media (max-width: 700px) {
    .contact-section {
        padding: 80px 0;
        background:
            linear-gradient(
                rgba(251, 245, 241, 0.92),
                rgba(251, 245, 241, 0.94)
            ),
            url("./images/leveles-hatter.jpg");

        background-position: center;
        background-size: cover;
    }

    .contact-container {
        width: min(calc(100% - 32px), var(--container-width));
    }

    .contact-heading {
        margin-bottom: 50px;
    }

    .contact-heading h2 {
        font-size: clamp(2.9rem, 13vw, 4.2rem);
    }

    .contact-details {
        grid-template-columns: 1fr;
    }

    .contact-detail {
        padding: 30px 26px;
    }

    .contact-booking {
        padding: 48px 28px 36px;
        border-radius: 8px 100px 8px 8px;
    }

    .contact-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .contact-actions a {
        width: 100%;
    }
}#rolam,
#szolgaltatasok,
#arlista,
#galeria,
#kapcsolat {
    scroll-margin-top: 145px;
}/* Hely a Kapcsolat menüpont pontos görgetéséhez */

.contact-section {
    padding-bottom: clamp(180px, 16vw, 260px);
}

@media (max-width: 700px) {
    .contact-section {
        padding-bottom: 130px;
    }
}#rolam,
#szolgaltatasok,
#arlista,
#galeria,
#kapcsolat {
    scroll-margin-top: 20px;
}/* Kapcsolat szakasz pozíciójának finomítása */

.contact-section {
    padding-top: 70px;
}

#kapcsolat {
    scroll-margin-top: 100px;
}

@media (max-width: 700px) {
    .contact-section {
        padding-top: 60px;
    }

    #kapcsolat {
        scroll-margin-top: 82px;
    }
}/* Vendégvélemények szakasz */

.reviews-section {
    position: relative;
    overflow: hidden;
    padding: clamp(90px, 10vw, 150px) 0;
    background:
        radial-gradient(
            circle at 5% 12%,
            rgba(242, 223, 217, 0.82),
            transparent 32%
        ),
        radial-gradient(
            circle at 96% 88%,
            rgba(228, 235, 226, 0.82),
            transparent 34%
        ),
        var(--color-surface);
}

.reviews-section::before {
    content: "“";
    position: absolute;
    top: 10px;
    right: 4%;
    color: rgba(194, 154, 85, 0.09);
    font-family: var(--font-heading);
    font-size: clamp(16rem, 30vw, 32rem);
    line-height: 1;
    pointer-events: none;
}

.reviews-container {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 48px), var(--container-width));
    margin-inline: auto;
}

/* Vélemények fejléc */

.reviews-heading {
    margin-bottom: clamp(55px, 7vw, 90px);
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    align-items: end;
    gap: 70px;
}

.reviews-heading h2 {
    max-width: 760px;
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(3.2rem, 5vw, 5.2rem);
    font-weight: 500;
    line-height: 0.96;
    letter-spacing: -0.035em;
}

.reviews-heading h2 span {
    display: block;
    margin-top: 10px;
    color: var(--color-green);
    font-style: italic;
}

.reviews-heading > p {
    max-width: 390px;
    margin: 0 0 8px;
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.85;
}

/* Vízszintesen lapozható véleménykártyák */

.reviews-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(330px, 390px);
    gap: 22px;
    overflow-x: auto;
    padding: 10px 4px 34px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color:
        rgba(194, 154, 85, 0.65)
        rgba(242, 223, 217, 0.45);
}

.reviews-grid::-webkit-scrollbar {
    height: 7px;
}

.reviews-grid::-webkit-scrollbar-track {
    background-color: rgba(242, 223, 217, 0.45);
    border-radius: 999px;
}

.reviews-grid::-webkit-scrollbar-thumb {
    background-color: rgba(194, 154, 85, 0.65);
    border-radius: 999px;
}

.review-card {
    position: relative;
    min-height: 370px;
    padding: 42px 38px 36px;
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
    background-color: rgba(255, 253, 251, 0.92);
    border: 1px solid rgba(194, 154, 85, 0.24);
    border-radius: 4px 90px 4px 4px;
    box-shadow: 0 20px 48px rgba(49, 66, 55, 0.09);
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        background-color var(--transition);
}

.review-card::before {
    content: "“";
    position: absolute;
    top: 54px;
    right: 28px;
    color: rgba(194, 154, 85, 0.16);
    font-family: var(--font-heading);
    font-size: 7rem;
    line-height: 0.7;
}

.review-card:hover {
    background-color: #ffffff;
    box-shadow: 0 28px 65px rgba(49, 66, 55, 0.14);
    transform: translateY(-7px);
}

.review-stars {
    position: relative;
    z-index: 1;
    color: var(--color-gold);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
}

.review-card blockquote {
    position: relative;
    z-index: 1;
    margin: 48px 0 34px;
    color: var(--color-green-dark);
    font-family: var(--font-heading);
    font-size: clamp(1.55rem, 2vw, 1.95rem);
    font-weight: 500;
    line-height: 1.28;
}

.review-author {
    position: relative;
    z-index: 1;
    margin: auto 0 0;
    padding-top: 25px;
    color: var(--color-text-light);
    border-top: 1px solid rgba(194, 154, 85, 0.22);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

/* Facebook hivatkozás */

.reviews-link {
    position: relative;
    margin-top: 38px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--color-green-dark);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.reviews-link::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 1px;
    background-color: var(--color-gold);
    transform: scaleX(0.3);
    transform-origin: left;
    transition: transform var(--transition);
}

.reviews-link span {
    font-size: 1.1rem;
    transition: transform var(--transition);
}

.reviews-link:hover::after {
    transform: scaleX(1);
}

.reviews-link:hover span {
    transform: translateX(6px);
}

/* Vélemények – tablet */

@media (max-width: 1020px) {
    .reviews-heading {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .reviews-heading > p {
        max-width: 620px;
    }

    .reviews-grid {
        grid-auto-columns: minmax(320px, 44vw);
    }
}

/* Vélemények – mobil */

@media (max-width: 700px) {
    .reviews-section {
        padding: 80px 0;
    }

    .reviews-container {
        width: min(calc(100% - 32px), var(--container-width));
    }

    .reviews-heading {
        margin-bottom: 50px;
    }

    .reviews-heading h2 {
        font-size: clamp(2.9rem, 13vw, 4.2rem);
    }

    .reviews-grid {
        grid-auto-columns: min(86vw, 350px);
        gap: 16px;
    }

    .review-card {
        min-height: 350px;
        padding: 36px 28px 30px;
        border-radius: 4px 70px 4px 4px;
    }

    .review-card blockquote {
        margin-top: 42px;
        font-size: 1.55rem;
    }

    .reviews-link {
        align-items: flex-start;
        line-height: 1.6;
    }
}#velemenyek {
    scroll-margin-top: 100px;
}

@media (max-width: 700px) {
    #velemenyek {
        scroll-margin-top: 82px;
    }
}

/* =========================================================
   Vendégvélemények – végleges elrendezési javítás
   ========================================================= */

.reviews-section {
    padding-top: 70px;
    padding-bottom: 100px;
}

.reviews-heading {
    margin-bottom: 52px;
}

.reviews-grid {
    display: grid;
    grid-auto-flow: row;
    grid-auto-columns: unset;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    overflow: visible;
    padding: 0;
    scroll-snap-type: none;
}

.review-card {
    min-width: 0;
    min-height: 340px;
    scroll-snap-align: none;
}

#velemenyek {
    scroll-margin-top: 100px;
}

@media (max-width: 1020px) {
    .reviews-section {
        padding-top: 70px;
        padding-bottom: 90px;
    }

    .reviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .reviews-section {
        padding: 60px 0 80px;
    }

    .reviews-heading {
        margin-bottom: 40px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .review-card {
        min-height: auto;
    }

    #velemenyek {
        scroll-margin-top: 82px;
    }
}

/* Portréfotó végleges igazítása */

.about-image-placeholder {
    position: relative;
    padding: 0;
    background: var(--color-green-light);
}

.about-image-placeholder::before {
    content: none;
}

.about-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center 20%;
}

/* =========================================================
   VÉGLEGES LEVELES HÁTTÉR
   RÓLAM · SZOLGÁLTATÁSOK · ÁRLISTA · GALÉRIA · VÉLEMÉNYEK
   NINCS BÉZS FEDŐRÉTEG, EZÉRT A KÉP TÉNYLEG LÁTSZIK.
   ========================================================= */

#rolam,
#szolgaltatasok,
#arlista,
#galeria,
#velemenyek,
.about-section,
.services-section,
.price-section,
.gallery-section,
.reviews-section {
    background-color: transparent !important;
    background-image: url("./images/leveles-hatter.jpg") !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: cover !important;
    background-attachment: scroll !important;
    background-blend-mode: normal !important;
}

/* A korábbi nagy dekorációs rétegek ne fedjék el a leveles képet. */
#rolam::before,
#rolam::after,
#szolgaltatasok::before,
#szolgaltatasok::after,
#arlista::before,
#arlista::after,
#galeria::before,
#galeria::after,
#velemenyek::before,
#velemenyek::after,
.about-section::before,
.about-section::after,
.services-section::before,
.services-section::after,
.price-section::before,
.price-section::after,
.gallery-section::before,
.gallery-section::after,
.reviews-section::before,
.reviews-section::after {
    content: none !important;
    display: none !important;
    background: none !important;
}

/* A szakaszok belső fő konténerei ne kapjanak teljes felületű hátteret. */
.about-container,
.services-container,
.price-container,
.gallery-container,
.reviews-container {
    background: transparent !important;
}

/* Mobilon is látható maradjon a kép. */
/* =========================================================
   UGYANAZ A HÁTTÉR AZ EGÉSZ OLDALON, MINT A HERO RÉSZEN
   ========================================================= */

html {
    min-height: 100%;
    background-color: #fbf5f1;
}

body {
    min-height: 100%;

    background-color: #fbf5f1 !important;

    background-image:
        linear-gradient(
            90deg,
            rgba(251, 245, 241, 0.98) 0%,
            rgba(251, 245, 241, 0.92) 34%,
            rgba(251, 245, 241, 0.62) 56%,
            rgba(251, 245, 241, 0.12) 100%
        ),
        radial-gradient(
            circle at 25% 35%,
            rgba(242, 223, 217, 0.48),
            transparent 38%
        ),
        url("./images/botanical-hero.jpg") !important;

    background-repeat:
        no-repeat,
        no-repeat,
        no-repeat !important;

    background-position:
        center,
        center,
        center right !important;

    background-size:
        cover,
        cover,
        cover !important;

    background-attachment:
        fixed,
        fixed,
        fixed !important;
}

/* Minden szakasz mutassa ugyanazt a közös hátteret */

.hero,
.about-section,
.services-section,
.price-section,
.gallery-section,
.reviews-section,
.contact-section,
#rolam,
#szolgaltatasok,
#arlista,
#galeria,
#velemenyek,
#kapcsolat {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}

/* A hero régi külön háttérrétegének kikapcsolása */

.hero::after {
    content: none !important;
    display: none !important;
    background: none !important;
}

/* Mobil */

@media (max-width: 700px) {
    body {
        background-image:
            linear-gradient(
                rgba(251, 245, 241, 0.90),
                rgba(251, 245, 241, 0.90)
            ),
            url("./images/botanical-hero.jpg") !important;

        background-repeat:
            no-repeat,
            no-repeat !important;

        background-position:
            center,
            62% top !important;

        background-size:
            cover,
            cover !important;

        background-attachment:
            scroll,
            scroll !important;
    }
}/* Elegánsabb bevezető és kiegészítő szövegek */

.price-heading > p:last-child,
.services-heading > p,
.gallery-heading > p,
.reviews-heading > p,
.contact-heading > p:last-child,
.about-lead {
    color: var(--color-green-dark);
    font-family: var(--font-heading);
    font-size: clamp(1.18rem, 1.5vw, 1.38rem);
    font-weight: 500;
    line-height: 1.65;
    letter-spacing: 0.01em;
}/* Mobilos teljesítmény javítása */

@media (max-width: 700px) {
    body {
        background-attachment: scroll !important;
    }

    .site-header {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .hero,
    .about-section,
    .services-section,
    .price-section,
    .gallery-section,
    .reviews-section,
    .contact-section {
        background-attachment: scroll !important;
    }

    .hero-image-placeholder,
    .about-image-placeholder,
    .gallery-item,
    .review-card,
    .booking-card,
    .contact-booking,
    .contact-detail {
        box-shadow: none !important;
    }

    .gallery-item img,
    .service-card,
    .review-card {
        transition: none !important;
    }
}/* Mobilon a jobb oldali levelek is látszódjanak */

@media (max-width: 700px) {
    html {
        background-color: #f8f4ee !important;
    }

    body {
        position: relative;
        background: transparent !important;
    }

    /* Egyetlen fix háttérkép */
    body::before {
        content: "";
        position: fixed;
        inset: 0;
        z-index: 0;
        pointer-events: none;

        background-color: #f8f4ee;

        background-image:
            linear-gradient(
                rgba(248, 244, 238, 0.84),
                rgba(248, 244, 238, 0.84)
            ),
            url("./images/leveles-hatter.jpg");

        background-position:
            center,
            62% center;

        background-size:
            cover,
            cover;

        background-repeat:
            no-repeat,
            no-repeat;
    }

    /* A tartalom a fix háttér előtt görög */
    main {
        position: relative;
        z-index: 1;
        background: transparent !important;
    }

    .site-header {
        z-index: 1000;
    }

    .hero,
    .about-section,
    .services-section,
    .price-section,
    .gallery-section,
    .reviews-section,
    .contact-section {
        background: transparent !important;
        background-image: none !important;
    }
}
/* =========================================================
   FŐOLDALI LAPOZHATÓ GALÉRIA
   ========================================================= */

.featured-gallery {
    position: relative;
    width: min(100%, 900px);
    margin-inline: auto;
}

.featured-gallery-window {
    position: relative;
    overflow: hidden;
    background-color: var(--color-blush-light);
    border: 7px solid rgba(255, 253, 251, 0.92);
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(49, 66, 55, 0.15);
}

.featured-gallery-slide {
    display: none;
    width: 100%;
    height: min(680px, 72vh);
    margin: 0;
}

.featured-gallery-slide.is-active {
    display: block;
    animation: galleryFade 450ms ease;
}

.featured-gallery-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
    background-color: var(--color-blush-light);
}

@keyframes galleryFade {
    from {
        opacity: 0.25;
        transform: scale(0.99);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.featured-gallery-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 52px;
    height: 52px;
    padding: 0;
    color: #ffffff;
    background-color: rgba(29, 64, 50, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.55rem;
    line-height: 1;
    transform: translateY(-50%);
    transition:
        background-color 200ms ease,
        transform 200ms ease;
}

.featured-gallery-arrow:hover {
    background-color: var(--color-gold);
    transform: translateY(-50%) scale(1.06);
}

.featured-gallery-prev {
    left: 20px;
}

.featured-gallery-next {
    right: 20px;
}

.featured-gallery-dots {
    margin-top: 22px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.featured-gallery-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    background-color: rgba(29, 64, 50, 0.3);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
}

.featured-gallery-dot.is-active {
    background-color: var(--color-green-dark);
    transform: scale(1.25);
}

.gallery-more-wrap {
    margin-top: 36px;
    display: flex;
    justify-content: center;
}

/* =========================================================
   TELJES GALÉRIAOLDAL
   ========================================================= */

.full-gallery-page {
    min-height: 100vh;
    padding-top: 110px;
}

.full-gallery-heading {
    margin-bottom: 55px;
    text-align: center;
}

.full-gallery-heading h1 {
    margin: 0;
    color: var(--color-green-dark);
    font-family: var(--font-heading);
    font-size: clamp(3.2rem, 7vw, 6rem);
    font-weight: 500;
    line-height: 1;
}

.full-gallery-heading p {
    max-width: 650px;
    margin: 24px auto 0;
    color: var(--color-text-light);
    line-height: 1.8;
}

.full-gallery-back {
    margin-bottom: 32px;
    display: inline-flex;
    color: var(--color-green-dark);
    font-weight: 600;
}

.full-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.full-gallery-card {
    overflow: hidden;
    margin: 0;
    aspect-ratio: 4 / 5;
    background-color: var(--color-blush-light);
    border: 6px solid rgba(255, 253, 251, 0.92);
    border-radius: 7px;
    box-shadow: 0 18px 45px rgba(49, 66, 55, 0.12);
}

.full-gallery-card a {
    width: 100%;
    height: 100%;
    display: block;
}

.full-gallery-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
    transition: transform 500ms ease;
}

.full-gallery-card:hover img {
    transform: scale(1.035);
}

.full-gallery-load-more {
    margin-top: 45px;
    display: flex;
    justify-content: center;
}

@media (max-width: 900px) {
    .full-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .featured-gallery-slide {
        height: 500px;
    }

    .featured-gallery-arrow {
        width: 44px;
        height: 44px;
        font-size: 1.25rem;
    }

    .featured-gallery-prev {
        left: 10px;
    }

    .featured-gallery-next {
        right: 10px;
    }

    .full-gallery-page {
        padding-top: 85px;
    }

    .full-gallery-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

@media (max-width: 450px) {
    .featured-gallery-slide {
        height: 430px;
    }
}/* =========================================================
   GALÉRIA – LETISZTULTABB MEGJELENÉS
   ========================================================= */

.gallery-section {
    background-image: none;
    background-color: var(--color-blush-light);
}

.featured-gallery {
    width: min(100%, 620px);
    margin-inline: auto;
}

.featured-gallery-window {
    overflow: hidden;
    background-color: transparent;
    border: 6px solid rgba(255, 255, 255, 0.95);
    border-radius: 18px;
    box-shadow: 0 22px 55px rgba(29, 64, 50, 0.16);
}

.featured-gallery-slide {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    margin: 0;
}

.featured-gallery-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    background-color: transparent;
}

.featured-gallery-arrow {
    width: 46px;
    height: 46px;
    background-color: rgba(29, 64, 50, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 8px 22px rgba(29, 64, 50, 0.25);
}

.featured-gallery-prev {
    left: 16px;
}

.featured-gallery-next {
    right: 16px;
}

.featured-gallery-dots {
    margin-top: 18px;
}

.gallery-more-wrap {
    margin-top: 28px;
}

@media (max-width: 700px) {
    .featured-gallery {
        width: min(100%, 480px);
    }

    .featured-gallery-slide {
        height: auto;
        aspect-ratio: 3 / 4;
    }

    .featured-gallery-arrow {
        width: 40px;
        height: 40px;
    }

    .featured-gallery-prev {
        left: 10px;
    }

    .featured-gallery-next {
        right: 10px;
    }
}

/* =========================================================
   3 × 3-AS, OLDALANKÉNT 9 KÉPES GALÉRIA
   Ezt a style.css LEGVÉGÉRE másold.
   ========================================================= */

.gallery-section {
    background: var(--color-blush-light) !important;
    background-image: none !important;
}

.gallery-section::before,
.gallery-section::after {
    display: none !important;
}

.home-gallery-grid {
    width: min(100%, 1120px);
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.home-gallery-card {
    position: relative;
    overflow: hidden;
    margin: 0;
    aspect-ratio: 4 / 5;
    background-color: #ffffff;
    border: 5px solid rgba(255, 255, 255, 0.96);
    border-radius: 16px;
    box-shadow: 0 16px 38px rgba(29, 64, 50, 0.13);
}

.home-gallery-card a {
    width: 100%;
    height: 100%;
    display: block;
}

.home-gallery-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition:
        transform 400ms ease,
        filter 400ms ease;
}

.home-gallery-card:hover img {
    transform: scale(1.035);
    filter: brightness(0.96);
}

.home-gallery-pagination {
    margin-top: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.gallery-page-button {
    min-width: 132px;
    padding: 13px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ffffff;
    background-color: var(--color-green-dark);
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font: inherit;
    font-weight: 600;
}

.gallery-page-button:hover:not(:disabled) {
    transform: translateY(-2px);
}

.gallery-page-button:disabled {
    cursor: not-allowed;
    opacity: 0.35;
}

.gallery-page-status {
    min-width: 70px;
    color: var(--color-green-dark);
    font-weight: 700;
    text-align: center;
}

.gallery-more-wrap {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}

.full-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.full-gallery-card {
    overflow: hidden;
    margin: 0;
    aspect-ratio: 4 / 5;
    border: 5px solid #ffffff;
    border-radius: 16px;
}

.full-gallery-card a,
.full-gallery-card img {
    width: 100%;
    height: 100%;
    display: block;
}

.full-gallery-card img {
    object-fit: cover;
    object-position: center;
}

.full-gallery-load-more {
    margin-top: 36px;
    display: flex;
    justify-content: center;
}

@media (max-width: 900px) {
    .home-gallery-grid,
    .full-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }
}

@media (max-width: 560px) {
    .home-gallery-grid,
    .full-gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .home-gallery-card,
    .full-gallery-card {
        max-width: 440px;
        width: 100%;
        margin-inline: auto;
    }

    .home-gallery-pagination {
        gap: 12px;
    }

    .gallery-page-button {
        min-width: 52px;
        padding: 13px 16px;
    }

    .gallery-page-button span {
        display: none;
    }
}
/* Elegánsabb és jobban olvasható betűk */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Lora:wght@400;500;600&display=swap");

body {
    font-family: "Lora", serif;
    font-size: 17px;
    line-height: 1.8;
    color: #26352e;
}

h1,
h2,
h3,
.logo-name,
.logo-subtitle,
.about-signature {
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    color: #1f3028;
}

h1 {
    font-size: clamp(3.2rem, 7vw, 6.5rem);
    line-height: 0.95;
}

h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.05;
}

h3 {
    font-size: 1.7rem;
}

p {
    font-size: 1.08rem;
    line-height: 1.9;
    color: #35453d;
}

.about-content p {
    font-size: 1.12rem;
    font-weight: 500;
    color: #26352e;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.9);
}

.about-lead {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.45rem !important;
    line-height: 1.7 !important;
    color: #1f3028 !important;
}

.main-navigation a,
.header-button,
.primary-button,
.secondary-button,
.text-link,
.reviews-link {
    font-family: "Lora", serif;
    font-weight: 600;
}

.section-eyebrow,
.hero-eyebrow,
.booking-card-label,
.contact-label,
.contact-booking-label {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: #4c6658;
}

.text-link {
    font-size: 1.05rem;
    color: #203c30;
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    p {
        font-size: 1rem;
        line-height: 1.75;
    }

   .about-content p {
    font-size: 1.12rem;
    font-weight: 500;
    color: #1d3027;
            text-shadow: none;
    }
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-content p,
.about-content h2,
.about-content a {
    text-shadow: none !important;
}

.about-content > p:not(.about-lead) {
    font-size: 1.05rem;
    line-height: 1.85;
    font-weight: 500;
    color: #26372f;
}


/* Mobilos beállítások */

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    p {
        font-size: 1rem;
        line-height: 1.75;
    }

    .about-content p {
        font-size: 1.02rem;
    }

    .about-lead {
        font-size: 1.25rem !important;
    }
}/* Rólam rész – nagyobb és jobban olvasható szöveg */

.about-content {
    background: rgba(250, 247, 239, 0.82);
    padding: 32px;
    border-radius: 8px;
}

.about-content p,
.about-content .about-lead {
    color: #17271f !important;
    opacity: 1 !important;
    text-shadow: none !important;
    font-weight: 600;
}

.about-content > p:not(.about-lead) {
    font-size: 1.2rem !important;
    line-height: 1.9;
}

.about-content .about-lead {
    font-size: 1.32rem !important;
    line-height: 1.85;
}

@media (max-width: 768px) {
    .about-content {
        padding: 22px 18px;
    }

    .about-content > p:not(.about-lead) {
        font-size: 1.1rem !important;
    }

    .about-content .about-lead {
        font-size: 1.2rem !important;
    }
}

/* ==================================================
   NAGYOBB ÉS OLVASHATÓBB BETŰK AZ EGÉSZ OLDALON
   ================================================== */

body {
    font-size: 18px !important;
    color: #1d3027;
}

/* Fejléc magassága */

.site-header,
.header-container {
    min-height: 94px;
}

/* Logó */

.logo-name {
    font-size: 1.75rem !important;
    line-height: 1.1;
}

.logo-subtitle {
    font-size: 0.75rem !important;
    letter-spacing: 0.28em;
    margin-top: 6px;
}

/* Felső menüpontok */

.main-navigation a {
    font-size: 1rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em;
}

/* Fejléc időpontkérés gomb */

.header-button {
    font-size: 0.95rem !important;
    padding: 16px 28px !important;
}

/* Kisebb szakaszcímek */

.section-eyebrow,
.hero-eyebrow {
    font-size: 1rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.12em;
}

/* Általános bekezdések */

p {
    font-size: 1.08rem;
    line-height: 1.8;
}

/* Rólam rész szövegdoboza */

.about-content {
    background: rgba(252, 249, 242, 0.9) !important;
    padding: 38px 42px !important;
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(36, 53, 43, 0.08);
}

/* Rólam rész normál szövege */

.about-content p {
    color: #17281f !important;
    opacity: 1 !important;
    font-size: 1.18rem !important;
    line-height: 1.85 !important;
    font-weight: 500 !important;
    text-shadow: none !important;
}

/* Rólam rész első kiemelt bekezdése */

.about-content .about-lead {
    font-size: 1.32rem !important;
    line-height: 1.75 !important;
    font-weight: 500 !important;
}

/* Szolgáltatások, árlista, galéria és kapcsolat szövegei */

.service-card p,
.services-heading > p,
.price-heading > p,
.gallery-heading > p,
.reviews-heading > p,
.contact-heading > p,
.booking-card p,
.contact-booking p,
.contact-detail p {
    font-size: 1.05rem !important;
    line-height: 1.75 !important;
}

/* Kártyacímek */

.service-card h3,
.price-item h3,
.booking-card h3,
.contact-detail h3,
.contact-booking h3 {
    font-size: 1.35rem !important;
}

/* Vélemények */

.review-card blockquote {
    font-size: 1.12rem !important;
    line-height: 1.75 !important;
}

/* Gombok és szöveges hivatkozások */

.primary-button,
.secondary-button,
.text-link,
.service-card a,
.reviews-link {
    font-size: 1rem !important;
    font-weight: 600 !important;
}

/* Mobiltelefon */

@media (max-width: 768px) {
    body {
        font-size: 17px !important;
    }

    .site-header,
    .header-container {
        min-height: 76px;
    }

    .logo-name {
        font-size: 1.45rem !important;
    }

    .about-content {
        padding: 26px 20px !important;
    }

    .about-content p {
        font-size: 1.08rem !important;
    }

    .about-content .about-lead {
        font-size: 1.2rem !important;
    }
}/* ==================================================
   NAGYOBB ÉS OLVASHATÓBB BETŰK AZ EGÉSZ OLDALON
   ================================================== */

body {
    font-size: 18px !important;
    color: #1d3027;
}

/* Fejléc magassága */

.site-header,
.header-container {
    min-height: 94px;
}

/* Logó */

.logo-name {
    font-size: 1.75rem !important;
    line-height: 1.1;
}

.logo-subtitle {
    font-size: 0.75rem !important;
    letter-spacing: 0.28em;
    margin-top: 6px;
}

/* Felső menüpontok */

.main-navigation a {
    font-size: 1rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em;
}

/* Fejléc időpontkérés gomb */

.header-button {
    font-size: 0.95rem !important;
    padding: 16px 28px !important;
}

/* Kisebb szakaszcímek */

.section-eyebrow,
.hero-eyebrow {
    font-size: 1rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.12em;
}

/* Általános bekezdések */

p {
    font-size: 1.08rem;
    line-height: 1.8;
}

/* Rólam rész szövegdoboza */

.about-content {
    background: rgba(252, 249, 242, 0.9) !important;
    padding: 38px 42px !important;
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(36, 53, 43, 0.08);
}

/* Rólam rész normál szövege */

.about-content p {
    color: #17281f !important;
    opacity: 1 !important;
    font-size: 1.18rem !important;
    line-height: 1.85 !important;
    font-weight: 500 !important;
    text-shadow: none !important;
}

/* Rólam rész első kiemelt bekezdése */

.about-content .about-lead {
    font-size: 1.32rem !important;
    line-height: 1.75 !important;
    font-weight: 500 !important;
}

/* Szolgáltatások, árlista, galéria és kapcsolat szövegei */

.service-card p,
.services-heading > p,
.price-heading > p,
.gallery-heading > p,
.reviews-heading > p,
.contact-heading > p,
.booking-card p,
.contact-booking p,
.contact-detail p {
    font-size: 1.05rem !important;
    line-height: 1.75 !important;
}

/* Kártyacímek */

.service-card h3,
.price-item h3,
.booking-card h3,
.contact-detail h3,
.contact-booking h3 {
    font-size: 1.35rem !important;
}

/* Vélemények */

.review-card blockquote {
    font-size: 1.12rem !important;
    line-height: 1.75 !important;
}

/* Gombok és szöveges hivatkozások */

.primary-button,
.secondary-button,
.text-link,
.service-card a,
.reviews-link {
    font-size: 1rem !important;
    font-weight: 600 !important;
}

/* Mobiltelefon */

@media (max-width: 768px) {
    body {
        font-size: 17px !important;
    }

    .site-header,
    .header-container {
        min-height: 76px;
    }

    .logo-name {
        font-size: 1.45rem !important;
    }

    .about-content {
        padding: 26px 20px !important;
    }

    .about-content p {
        font-size: 1.08rem !important;
    }

    .about-content .about-lead {
        font-size: 1.2rem !important;
    }
}/* ==================================================
   NAGYOBB ÉS OLVASHATÓBB BETŰK AZ EGÉSZ OLDALON
   ================================================== */

body {
    font-size: 18px !important;
    color: #1d3027;
}

/* Fejléc magassága */

.site-header,
.header-container {
    min-height: 94px;
}

/* Logó */

.logo-name {
    font-size: 1.75rem !important;
    line-height: 1.1;
}

.logo-subtitle {
    font-size: 0.75rem !important;
    letter-spacing: 0.28em;
    margin-top: 6px;
}

/* Felső menüpontok */

.main-navigation a {
    font-size: 1rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em;
}

/* Fejléc időpontkérés gomb */

.header-button {
    font-size: 0.95rem !important;
    padding: 16px 28px !important;
}

/* Kisebb szakaszcímek */

.section-eyebrow,
.hero-eyebrow {
    font-size: 1rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.12em;
}

/* Általános bekezdések */

p {
    font-size: 1.08rem;
    line-height: 1.8;
}

/* Rólam rész szövegdoboza */

.about-content {
    background: rgba(252, 249, 242, 0.9) !important;
    padding: 38px 42px !important;
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(36, 53, 43, 0.08);
}

/* Rólam rész normál szövege */

.about-content p {
    color: #17281f !important;
    opacity: 1 !important;
    font-size: 1.18rem !important;
    line-height: 1.85 !important;
    font-weight: 500 !important;
    text-shadow: none !important;
}

/* Rólam rész első kiemelt bekezdése */

.about-content .about-lead {
    font-size: 1.32rem !important;
    line-height: 1.75 !important;
    font-weight: 500 !important;
}

/* Szolgáltatások, árlista, galéria és kapcsolat szövegei */

.service-card p,
.services-heading > p,
.price-heading > p,
.gallery-heading > p,
.reviews-heading > p,
.contact-heading > p,
.booking-card p,
.contact-booking p,
.contact-detail p {
    font-size: 1.05rem !important;
    line-height: 1.75 !important;
}

/* Kártyacímek */

.service-card h3,
.price-item h3,
.booking-card h3,
.contact-detail h3,
.contact-booking h3 {
    font-size: 1.35rem !important;
}

/* Vélemények */

.review-card blockquote {
    font-size: 1.12rem !important;
    line-height: 1.75 !important;
}

/* Gombok és szöveges hivatkozások */

.primary-button,
.secondary-button,
.text-link,
.service-card a,
.reviews-link {
    font-size: 1rem !important;
    font-weight: 600 !important;
}

/* Mobiltelefon */

@media (max-width: 768px) {
    body {
        font-size: 17px !important;
    }

    .site-header,
    .header-container {
        min-height: 76px;
    }

    .logo-name {
        font-size: 1.45rem !important;
    }

    .about-content {
        padding: 26px 20px !important;
    }

    .about-content p {
        font-size: 1.08rem !important;
    }

    .about-content .about-lead {
        font-size: 1.2rem !important;
    }
}
/* Rövid szakaszleírások – elegáns, doboz nélkül */

.services-heading > p,
.price-heading > p:last-child,
.gallery-heading > p,
.reviews-heading > p,
.contact-heading > p:last-child {
    max-width: 560px !important;
    padding: 0 !important;

    color: #203b30 !important;
    background: transparent !important;

    font-family: var(--font-heading) !important;
    font-size: clamp(1.3rem, 1.5vw, 1.55rem) !important;
    font-weight: 600 !important;
    line-height: 1.55 !important;
    letter-spacing: 0.01em !important;

    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;

    opacity: 1 !important;
    text-shadow: none !important;
}

@media (max-width: 768px) {
    .services-heading > p,
    .price-heading > p:last-child,
    .gallery-heading > p,
    .reviews-heading > p,
    .contact-heading > p:last-child {
        font-size: 1.2rem !important;
        line-height: 1.55 !important;
    }
}
/* Rólam rész – kiegyensúlyozott mobilméret */

@media (max-width: 768px) {
    .about-section {
        padding-top: 55px !important;
        padding-bottom: 55px !important;
    }

    .about-content {
        padding: 22px 18px !important;
    }

    .about-content .section-eyebrow {
        margin-bottom: 18px !important;
        font-size: 0.85rem !important;
    }

    .about-content h2 {
        font-size: clamp(2.35rem, 9.5vw, 3rem) !important;
        line-height: 1 !important;
        letter-spacing: -0.025em !important;
    }

    .about-content h2 span {
        margin-top: 7px !important;
    }

    .about-content p {
        font-size: 1rem !important;
        line-height: 1.7 !important;
        font-weight: 500 !important;
    }

    .about-content .about-lead {
        margin-top: 24px !important;
        font-size: 1.05rem !important;
        line-height: 1.7 !important;
    }

    .about-content > p + p {
        margin-top: 16px !important;
    }
}
/* Mobil hamburger menü */

@media (max-width: 1020px) {
    .header-container {
        position: relative;
    }

    .menu-button {
        position: relative;
        z-index: 1002;
        flex-shrink: 0;
    }

    .main-navigation {
        position: absolute;
        z-index: 1001;
        top: 100%;
        right: 0;
        left: 0;

        display: flex !important;
        flex-direction: column;
        align-items: stretch;
        gap: 0;

        padding: 12px 24px 20px;
        background: rgba(248, 248, 244, 0.98);
        border: 1px solid rgba(49, 93, 72, 0.15);
        border-top: none;
        box-shadow: 0 20px 35px rgba(30, 55, 43, 0.12);

        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px);

        transition:
            opacity 200ms ease,
            visibility 200ms ease,
            transform 200ms ease;
    }

    .main-navigation.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .main-navigation a {
        display: block;
        padding: 14px 0;
        color: #1d4032 !important;
        font-size: 1rem !important;
        text-align: center;
        border-bottom: 1px solid rgba(49, 93, 72, 0.12);
    }

    .main-navigation a:last-child {
        border-bottom: none;
    }

    .menu-button span {
        transition:
            transform 200ms ease,
            opacity 200ms ease;
    }

    .menu-button.is-open span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .menu-button.is-open span:nth-child(2) {
        opacity: 0;
    }

    .menu-button.is-open span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}
/* Mobil hamburger menü */

@media (max-width: 1020px) {
    .header-container {
        position: relative;
    }

    .menu-button {
        position: relative;
        z-index: 1002;
    }

    .main-navigation {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        z-index: 1001;

        display: none !important;
        flex-direction: column;
        padding: 14px 24px 20px;

        background: #faf8f2;
        border-top: 1px solid rgba(32, 59, 48, 0.15);
        box-shadow: 0 18px 30px rgba(32, 59, 48, 0.12);
    }

    .main-navigation.is-open {
        display: flex !important;
    }

    .main-navigation a {
        display: block;
        padding: 14px 4px;
        text-align: center;
        border-bottom: 1px solid rgba(32, 59, 48, 0.12);
    }

    .main-navigation a:last-child {
        border-bottom: none;
    }
}/* Időpontfoglalási kártya – olvashatóság és mobil igazítás */

.booking-card .booking-card-label {
    color: #e8cf91 !important;
    opacity: 1 !important;
    font-size: 0.82rem !important;
    line-height: 1.5 !important;
    font-weight: 600 !important;
}

.booking-card h3 {
    color: #fffdf7 !important;
    opacity: 1 !important;
    font-size: 1.75rem !important;
    line-height: 1.18 !important;
    font-weight: 600 !important;
}

.booking-card > p:not(.booking-card-label, .booking-social) {
    color: rgba(255, 255, 255, 0.92) !important;
    opacity: 1 !important;
    font-size: 1rem !important;
    line-height: 1.7 !important;
    font-weight: 500 !important;
}

.booking-card .booking-social {
    color: rgba(255, 255, 255, 0.9) !important;
    opacity: 1 !important;
    font-size: 0.92rem !important;
}

.booking-card .booking-phone {
    color: #ffffff !important;
}

@media (max-width: 700px) {
    .booking-card {
        width: 100% !important;
        padding: 76px 30px 40px !important;
        border-radius: 80px 80px 24px 24px !important;
    }

    .booking-card .booking-card-label {
        margin-bottom: 22px !important;
    }

    .booking-card h3 {
        font-size: 1.6rem !important;
        line-height: 1.2 !important;
    }

    .booking-card::before {
        top: 95px !important;
        right: -100px !important;
        opacity: 0.65;
        pointer-events: none;
    }
}
/* Kapcsolatfoglalási kártya – jobb olvashatóság */

.contact-booking .contact-booking-label {
    color: #e8cf91 !important;
    opacity: 1 !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    line-height: 1.5 !important;
}

.contact-booking h3 {
    color: #fffdf7 !important;
    opacity: 1 !important;
    font-size: 1.75rem !important;
    font-weight: 600 !important;
    line-height: 1.25 !important;
}

.contact-booking > p:not(.contact-booking-label) {
    color: rgba(255, 255, 255, 0.92) !important;
    opacity: 1 !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    line-height: 1.7 !important;
}

.contact-booking .primary-button {
    color: #173b2f !important;
}

.contact-booking .secondary-button {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.55) !important;
}

.contact-booking::before {
    opacity: 0.5 !important;
    pointer-events: none;
}

@media (max-width: 700px) {
    .contact-booking {
        padding: 58px 24px 36px !important;
    }

    .contact-booking .contact-booking-label {
        margin-bottom: 20px !important;
    }

    .contact-booking h3 {
        font-size: 1.5rem !important;
    }

    .contact-booking > p:not(.contact-booking-label) {
        font-size: 1rem !important;
    }
}
/* Főoldali galéria – mobilon kétoszlopos rács */

@media (max-width: 768px) {
    .home-gallery-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    .home-gallery-card {
        width: 100% !important;
        margin: 0 !important;
        grid-column: auto !important;
        aspect-ratio: 3 / 4;
        overflow: hidden;
        border-radius: 10px;
    }

    .home-gallery-card a {
        display: block;
        width: 100%;
        height: 100%;
    }

    .home-gallery-card img {
        display: block;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover;
        border-radius: 10px;
    }
} /* A mobilos galéria @media blokkjának lezárása */

/* ==================================================
   VÉGLEGES FEJLÉC- ÉS LOGÓJAVÍTÁS
   ================================================== */

/* Teljes fejléc */
.site-header {
  min-height: 0 !important;
  padding: 0 !important;
}

/* Fejléc belső része */
.site-header .header-container {
  min-height: 0 !important;
  height: auto !important;
  padding-top: 2px !important;
  padding-bottom: 2px !important;
}

/* Logó gépen */
.site-header .logo {
  display: flex !important;
  align-items: center !important;

  width: 140px !important;
  flex: 0 0 140px !important;

  height: auto !important;
  min-height: 0 !important;

  overflow: visible !important;
  line-height: 0 !important;
}

/* Logókép gépen */
.site-header .site-logo-image {
  display: block !important;

  width: 100% !important;
  max-width: 100% !important;

  height: auto !important;
  max-height: none !important;

  transform: none !important;
  object-fit: contain !important;
}

/* Telefon */
@media (max-width: 768px) {
  .site-header .header-container {
    min-height: 0 !important;
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }

  .site-header .logo {
    width: 80px !important;
    flex: 0 0 80px !important;

    height: auto !important;
    min-height: 0 !important;

    overflow: visible !important;
  }

  .site-header .site-logo-image {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;

    transform: none !important;
  }

  .site-header .menu-button {
    width: 38px !important;
    height: 38px !important;
  }
}/* =========================================
   RÓLAM RÉSZ KISEBB MÉRETE
   ========================================= */

#rolam,
.about-section {
  min-height: auto !important;
  padding-top: 65px !important;
  padding-bottom: 65px !important;
}

.about-container,
.about-inner,
.about-content-wrapper {
  max-width: 1100px !important;
  margin: 0 auto !important;
  gap: 55px !important;
  align-items: center !important;
}

/* Rólam kép */
.about-image img,
.about-photo img {
  display: block !important;
  width: 100% !important;
  max-width: 370px !important;
  height: 490px !important;
  object-fit: cover !important;
}

/* Jobb oldali szövegrész */
.about-content {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Nagy cím */
.about-content h2,
.about-title {
  font-size: clamp(48px, 4vw, 68px) !important;
  line-height: 1.02 !important;
  margin-top: 0 !important;
  margin-bottom: 25px !important;
}

/* Bekezdések */
.about-content p {
  font-size: 17px !important;
  line-height: 1.65 !important;
  margin-top: 0 !important;
  margin-bottom: 14px !important;
}

/* Telefon */
@media (max-width: 768px) {
  #rolam,
  .about-section {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
  }

  .about-container,
  .about-inner,
  .about-content-wrapper {
    gap: 30px !important;
  }

  .about-image img,
  .about-photo img {
    max-width: 280px !important;
    height: 370px !important;
    margin: 0 auto !important;
  }

  .about-content h2,
  .about-title {
    font-size: 43px !important;
    line-height: 1.05 !important;
  }

  .about-content p {
    font-size: 16px !important;
    line-height: 1.6 !important;
  }
}

/* =========================================
   KÖRMÖS MOTÍVUM – VÉGLEGES, TISZTA BEÁLLÍTÁS
   ========================================= */

.service-number,
.price-item > div > span {
    display: block;
    flex: 0 0 auto;
    color: transparent !important;
    font-size: 0 !important;
    line-height: 0 !important;
    letter-spacing: 0 !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    opacity: 1 !important;
}

/* Az árlista soros elrendezése */
.price-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.price-item > div {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 18px !important;
}

.price-item h3 {
    min-width: 0;
}

.price-item strong {
    flex: 0 0 auto;
    margin-left: auto;
    padding-left: 18px;
    font-size: clamp(1.08rem, 1.35vw, 1.25rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

/* Gépi nézet: külön, kivágott és enyhén vastagított képfájl */
@media (min-width: 701px) {
    .service-number,
    .price-item > div > span {
        background-image: url("./images/kormos-motivum-desktop.webp?v=1") !important;
        background-size: contain !important;
        filter: none !important;
    }

    .service-number {
        width: 48px !important;
        height: 48px !important;
    }

    .service-card h3 {
        margin-top: 38px !important;
    }

    .price-item > div > span {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        flex-basis: 36px !important;
    }
}

/* Telefon: a korábbi, bevált motívum és méretezés */
@media (max-width: 700px) {
    .service-number,
    .price-item > div > span {
        background-image: url("./images/kormos-motivum.webp?v=5") !important;
        filter: none !important;
    }

    .service-number {
        width: 42px !important;
        height: 42px !important;
        background-size: 160% auto !important;
    }

    .service-card h3 {
        margin-top: 30px !important;
    }

    .price-item {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .price-item > div {
        align-items: flex-start;
        gap: 14px !important;
    }

    .price-item > div > span {
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important;
        flex-basis: 32px !important;
        background-size: 165% auto !important;
    }

    .price-item strong {
        margin-left: 0;
        padding-left: 46px !important;
        font-size: 1.15rem;
    }
}
/* Asztali motívum – megfelelő méret és finom vonal */
@media (min-width: 701px) {
    .service-number,
    .price-item > div > span {
        background-image: url("./images/kormos-motivum.webp?v=7") !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        opacity: 1 !important;

        filter:
            brightness(0.58)
            contrast(1.45)
            saturate(1.15) !important;
    }

    /* Szolgáltatáskártyák */
    .service-number {
        background-size: 200% auto !important;
    }

    /* Árlista */
    .price-item > div > span {
        background-size: 190% auto !important;
    }
}
/* Asztali motívumméretek végleges összehangolása */
@media (min-width: 701px) {

    /* Szolgáltatáskártyák – ez már jó */
    .service-number {
        background-size: 200% auto !important;
    }

    /* Árlista – nagyobb nagyítás a kisebb tartóelem miatt */
    .price-item > div > span {
        background-size: 265% auto !important;
    }
}
/* Ismerj meg kártya – végleges asztali javítás */

@media (min-width: 769px) {
    #rolam .about-content {
        padding: 42px 64px 48px !important;
    }

    #rolam .about-content > p:not(.section-eyebrow) {
        max-width: 38ch !important;
    }

    #rolam .text-link {
        margin-top: 24px !important;
    }

    #rolam .text-link::after {
        content: none !important;
        display: none !important;
        width: 0 !important;
        height: 0 !important;
        background: none !important;
    }
/* ISMERJ MEG – kompaktabb doboz */

#rolam .about-content {
    padding: 26px 32px;
}

#rolam .about-content h2 {
    font-size: clamp(2.1rem, 3.2vw, 3.2rem);
    line-height: 1.05;
    margin-bottom: 16px;
}

#rolam .about-content p {
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 10px;
}

#rolam .about-content .eyebrow,
#rolam .about-content .section-label {
    margin-bottom: 10px;
}

#rolam .about-content .text-link {
    margin-top: 8px;
}

/* Mobil */
@media (max-width: 768px) {
    #rolam .about-content {
        padding: 20px 20px;
    }

    #rolam .about-content p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 9px;
    }

    #rolam .about-content .text-link {
        margin-top: 6px;
    }

} /* ← EZ zárja az @media blokkot */

    #rolam .about-content p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 9px;
    }

    #rolam .about-content .text-link {
        margin-top: 6px;
    }
}
/* ===== VÉLEMÉNYEK – nagyobb szöveg + Facebook / Google ===== */

.reviews-all {
  margin-top: 42px;
}

.reviews-all-title {
  margin: 0 0 16px;
  font-size: 1.15rem;
  line-height: 1.4;
  font-weight: 600;
  color: var(--color-green-dark);
  letter-spacing: 0.02em;
}

.reviews-all-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 32px;
}

.reviews-all .reviews-link {
  margin-top: 0;
  font-size: 1rem;
  line-height: 1.5;
  gap: 10px;
}

/* Mobil */
@media (max-width: 768px) {
  .reviews-all {
    margin-top: 32px;
  }

  .reviews-all-title {
    font-size: 1.05rem;
  }

  .reviews-all .reviews-link {
    font-size: 0.95rem;
  }

  .reviews-all-links {
    gap: 14px 24px;
  }
}
/* ==================================================
   VÉLEMÉNYEK – végleges finomhangolás
   ================================================== */

/* Vélemény szövege */
.review-card blockquote {
  font-size: 24px !important;
  line-height: 1.55;
}

/* Csillagok */
.review-stars {
  font-size: 0.95rem;
  letter-spacing: 0.18em;
}

/* Vendég neve */
.review-author {
  font-size: 0.82rem;
}

/* Összes vélemény rész */
.reviews-all {
  margin-top: 42px;
}

.reviews-all-title {
  margin: 0 0 16px;
  color: var(--color-green-dark);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.reviews-all-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 32px;
}

/* Facebook + Google */
.reviews-all .reviews-link {
  margin-top: 0;
  font-size: 1rem;
  line-height: 1.5;
  gap: 10px;
}

/* Mobil */
@media (max-width: 768px) {
  .review-card blockquote {
  font-size: 19px !important;
  line-height: 1.55;
}

  .review-stars {
    font-size: 0.9rem;
  }

  .review-author {
    font-size: 0.78rem;
  }

  .reviews-all {
    margin-top: 32px;
  }

  .reviews-all-title {
    font-size: 1.05rem;
  }

  .reviews-all .reviews-link {
    font-size: 0.95rem;
  }

  .reviews-all-links {
    gap: 14px 24px;
  }
} /* ez zárja a @media blokkot */

.contact-map {
  margin-top: 18px;
  width: 100%;
  overflow: hidden;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 180px;
  border: 0;
}
/* =========================================================
   KAPCSOLAT – VEGLEGES 2x2 ELRENDEZES ES ZOLD NYITVATARTAS
   ========================================================= */

@media (min-width: 1021px) {
  .contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
    grid-template-areas:
      "salon booking"
      "phone hours";
    align-items: stretch;
    gap: 22px clamp(35px, 6vw, 80px);
  }

  .contact-salon {
    grid-area: salon;
  }

  .contact-phone {
    grid-area: phone;
  }

  .contact-booking {
    grid-area: booking;
    height: auto;
    align-self: stretch;
  }

  .contact-hours {
    grid-area: hours;
  }

  .contact-salon,
  .contact-phone,
  .contact-booking,
  .contact-hours {
    width: 100%;
    min-width: 0;
  }
}

/* Nyitvatartas – ugyanaz a sotetzold vizualis vilag, mint az idopontfoglalasnal */
.contact-hours {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.08),
      transparent 46%
    ),
    var(--color-green-dark);
  border-color: rgba(194, 154, 85, 0.28);
  box-shadow: var(--shadow-soft);
}

.contact-hours::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -55px;
  width: 250px;
  height: 340px;
  border: 1px solid rgba(226, 200, 145, 0.30);
  border-radius: 50%;
  transform: rotate(28deg);
  pointer-events: none;
}

.contact-hours > * {
  position: relative;
  z-index: 1;
}

.contact-hours .contact-label {
  color: var(--color-gold-light) !important;
}

.contact-hours h3 {
  color: #fffdf7 !important;
}

.contact-hours p {
  color: rgba(255, 255, 255, 0.82) !important;
}

/* Tablet: egy oszlop, attekintheto sorrendben */
@media (max-width: 1020px) {
  .contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "salon"
      "booking"
      "phone"
      "hours";
    align-items: stretch;
    gap: 22px;
  }

  .contact-salon { grid-area: salon; }
  .contact-booking { grid-area: booking; }
  .contact-phone { grid-area: phone; }
  .contact-hours { grid-area: hours; }

  .contact-booking {
    height: auto;
    align-self: stretch;
  }
}

/* =========================================================
   GYIK – GYAKRAN ISMÉTELT KÉRDÉSEK
   ========================================================= */

#gyik {
    scroll-margin-top: 100px;
}

.faq-section {
    position: relative;
    overflow: hidden;
    padding: clamp(80px, 9vw, 130px) 0;
    background: transparent !important;
}

.faq-container {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 48px), var(--container-width));
    margin-inline: auto;
}

.faq-heading {
    max-width: 820px;
    margin-bottom: clamp(44px, 6vw, 68px);
    padding: clamp(30px, 4vw, 46px);
    background: rgba(252, 249, 242, 0.90);
    border: 1px solid rgba(194, 154, 85, 0.20);
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(36, 53, 43, 0.08);
}

.faq-heading h2 {
    margin: 0;
    color: var(--color-green-dark);
    font-family: var(--font-heading);
    font-size: clamp(2.9rem, 5vw, 4.8rem);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.035em;
}

.faq-heading h2 span {
    display: block;
    margin-top: 8px;
    color: var(--color-green);
    font-style: italic;
}

.faq-heading > p:last-child {
    max-width: 690px;
    margin: 26px 0 0;
    color: #26372f;
    font-size: 1.08rem;
    font-weight: 500;
    line-height: 1.8;
}

.faq-group {
    max-width: 980px;
    margin-top: 48px;
}

.faq-group:first-of-type {
    margin-top: 0;
}

.faq-group-title {
    margin: 0 0 16px;
    color: var(--color-green-dark);
    font-family: var(--font-heading);
    font-size: clamp(1.55rem, 2.2vw, 2rem);
    font-weight: 600;
    line-height: 1.2;
}

.faq-list {
    overflow: hidden;
    background: rgba(255, 253, 251, 0.90);
    border: 1px solid rgba(194, 154, 85, 0.25);
    border-radius: 12px;
    box-shadow: 0 18px 45px rgba(49, 66, 55, 0.08);
}

.faq-item {
    background: transparent;
}

.faq-item + .faq-item {
    border-top: 1px solid rgba(194, 154, 85, 0.22);
}

.faq-item summary {
    position: relative;
    padding: 24px 70px 24px 28px;
    color: var(--color-green-dark);
    cursor: pointer;
    list-style: none;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.5;
    transition: background-color var(--transition), color var(--transition);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 26px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background-color: var(--color-green);
    border-radius: 50%;
    font-family: var(--font-body);
    font-size: 1.35rem;
    font-weight: 400;
    line-height: 1;
    transform: translateY(-50%);
    transition: background-color var(--transition), transform var(--transition);
}

.faq-item summary:hover {
    background-color: rgba(242, 223, 217, 0.30);
}

.faq-item summary:hover::after {
    background-color: var(--color-gold);
}

.faq-item[open] summary {
    color: var(--color-green-dark);
    background-color: rgba(228, 235, 226, 0.46);
}

.faq-item[open] summary::after {
    background-color: var(--color-gold);
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    max-width: 860px;
    padding: 4px 70px 28px 28px;
}

.faq-answer p {
    margin: 0 0 12px;
    color: #35453d;
    font-size: 1rem;
    line-height: 1.8;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer strong {
    color: var(--color-green-dark);
    font-weight: 700;
}

.faq-answer a {
    color: var(--color-green-dark);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: var(--color-gold);
    text-underline-offset: 4px;
}

/* A plusz GYIK menüpont miatt a fejléc maradjon kényelmes asztali nézetben. */
@media (min-width: 1021px) {
    .main-navigation {
        gap: 22px;
    }
}

@media (max-width: 700px) {
    #gyik {
        scroll-margin-top: 82px;
    }

    .faq-section {
        padding: 70px 0 82px;
    }

    .faq-container {
        width: min(calc(100% - 32px), var(--container-width));
    }

    .faq-heading {
        margin-bottom: 38px;
        padding: 26px 20px;
    }

    .faq-heading h2 {
        font-size: clamp(2.65rem, 12vw, 3.8rem);
    }

    .faq-heading > p:last-child {
        margin-top: 22px;
        font-size: 1rem;
    }

    .faq-group {
        margin-top: 36px;
    }

    .faq-group-title {
        margin-bottom: 12px;
        font-size: 1.55rem;
    }

    .faq-list {
        border-radius: 10px;
        box-shadow: none;
    }

    .faq-item summary {
        padding: 20px 58px 20px 20px;
        font-size: 1rem;
    }

    .faq-item summary::after {
        right: 18px;
        width: 30px;
        height: 30px;
        font-size: 1.2rem;
    }

    .faq-answer {
        padding: 2px 20px 22px;
    }

    .faq-answer p {
        font-size: 0.98rem;
        line-height: 1.72;
    }
}

/* =========================================================
   GYIK – VÉGLEGES MEGJELENÉS
   ========================================================= */

.faq-section {
    position: relative;
    padding: clamp(80px, 9vw, 120px) 0;
    background: transparent !important;
}

.faq-container {
    width: min(calc(100% - 48px), 1040px);
    margin-inline: auto;
}

/* Fejléc */

.faq-heading {
    max-width: 1040px;
    margin: 0 auto 55px;
    padding: clamp(38px, 5vw, 58px);
    background: rgba(255, 253, 249, 0.88);
    border: 1px solid rgba(194, 154, 85, 0.22);
    border-radius: 22px;
    box-shadow: 0 18px 50px rgba(29, 64, 50, 0.08);
    backdrop-filter: blur(8px);
}

.faq-heading h2 {
    margin: 0;
    color: var(--color-green-dark);
    font-family: var(--font-heading);
    font-size: clamp(3rem, 5.5vw, 5rem);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.03em;
}

.faq-heading h2 span {
    display: block;
    margin-top: 8px;
    color: var(--color-green);
    font-style: italic;
}

.faq-heading > p:last-child {
    max-width: 680px;
    margin: 26px 0 0;
    color: #35453d;
    font-size: 1.05rem;
    line-height: 1.8;
}


/* Kérdéslista */

.faq-list {
    width: 100%;
    margin-inline: auto;
}


/* Kategóriák */

.faq-category {
    position: relative;
    margin: 52px 0 18px;
    padding-left: 48px;
    color: var(--color-green-dark);
    font-family: var(--font-body);
    font-size: 0.82rem !important;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.faq-category:first-child {
    margin-top: 0;
}

.faq-category::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 32px;
    height: 1px;
    background-color: var(--color-gold);
}


/* Kérdéskártyák */

.faq-item {
    margin-bottom: 10px;
    overflow: hidden;
    background: rgba(255, 253, 249, 0.9);
    border: 1px solid rgba(194, 154, 85, 0.2);
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(29, 64, 50, 0.045);
    transition:
        border-color 250ms ease,
        box-shadow 250ms ease,
        transform 250ms ease;
}

.faq-item:hover {
    border-color: rgba(194, 154, 85, 0.45);
    box-shadow: 0 12px 30px rgba(29, 64, 50, 0.08);
}

.faq-item[open] {
    background: rgba(255, 253, 249, 0.97);
    border-color: rgba(49, 93, 72, 0.24);
}


/* Kérdés */

.faq-item summary {
    position: relative;
    min-height: 78px;
    padding: 22px 82px 22px 28px;
    display: flex;
    align-items: center;
    color: var(--color-green-dark);
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.3;
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}


/* Plusz ikon */

.faq-item summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 26px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background-color: var(--color-green);
    border-radius: 50%;
    font-family: Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1;
    transform: translateY(-50%);
    transition:
        transform 250ms ease,
        background-color 250ms ease;
}

.faq-item[open] summary::after {
    background-color: var(--color-gold);
    transform: translateY(-50%) rotate(45deg);
}


/* Válasz */

.faq-answer {
    padding: 0 78px 28px 28px;
}

.faq-answer p {
    max-width: 800px;
    margin: 0;
    color: #405047;
    font-size: 1rem;
    line-height: 1.85;
}

.faq-answer p + p {
    margin-top: 14px;
}

.faq-answer strong {
    color: var(--color-green-dark);
}

.faq-answer a {
    color: var(--color-green);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(194, 154, 85, 0.7);
    text-underline-offset: 4px;
}


/* Görgetési pozíció */

#gyik {
    scroll-margin-top: 105px;
}


/* Mobil */

@media (max-width: 700px) {

    .faq-section {
        padding: 65px 0 80px;
    }

    .faq-container {
        width: min(calc(100% - 28px), 1040px);
    }

    .faq-heading {
        margin-bottom: 38px;
        padding: 32px 24px;
        border-radius: 16px;
    }

    .faq-heading h2 {
        font-size: clamp(2.8rem, 13vw, 4rem);
    }

    .faq-heading > p:last-child {
        font-size: 0.98rem;
    }

    .faq-category {
        margin-top: 42px;
        padding-left: 38px;
        font-size: 0.72rem !important;
    }

    .faq-category::before {
        width: 24px;
    }

    .faq-item {
        border-radius: 12px;
    }

    .faq-item summary {
        min-height: 72px;
        padding: 20px 64px 20px 20px;
        font-size: 1.2rem;
    }

    .faq-item summary::after {
        right: 18px;
        width: 32px;
        height: 32px;
    }

    .faq-answer {
        padding: 0 20px 24px;
    }

    .faq-answer p {
        font-size: 0.97rem;
        line-height: 1.75;
    }

    #gyik {
        scroll-margin-top: 82px;
    }
}
/* GYIK – térközök finomítása */

.faq-heading {
    margin-bottom: 38px;
    padding: 38px 52px;
}

.faq-heading > p:last-child {
    margin-top: 20px;
}

.faq-category {
    margin-top: 38px;
}

.faq-category:first-child {
    margin-top: 0;
}

@media (max-width: 700px) {
    .faq-heading {
        padding: 28px 22px;
        margin-bottom: 30px;
    }

    .faq-category {
        margin-top: 32px;
    }
}
/* =========================================================
   GYIK – KOMPAKT VÉGLEGES FINOMÍTÁS
   ========================================================= */

.faq-section {
    padding-top: 70px !important;
    padding-bottom: 90px !important;
}

.faq-container {
    width: min(calc(100% - 48px), 960px) !important;
}

/* Felső GYIK fejléc */
.faq-heading {
    max-width: none !important;
    margin: 0 0 32px !important;
    padding: 34px 42px 36px !important;
    border-radius: 18px !important;
}

.faq-heading .section-eyebrow {
    margin: 0 0 18px !important;
}

.faq-heading h2 {
    margin: 0 !important;
    font-size: clamp(3rem, 5vw, 4.4rem) !important;
    line-height: 0.95 !important;
}

.faq-heading h2 span {
    margin-top: 4px !important;
}

.faq-heading > p:last-child {
    margin: 22px 0 0 !important;
    max-width: 720px !important;
    line-height: 1.65 !important;
}

/* Kategóriák */
.faq-category {
    margin: 32px 0 12px !important;
}

.faq-category:first-child {
    margin-top: 0 !important;
}

/* Kérdés kártyák */
.faq-item {
    margin-bottom: 8px !important;
    border-radius: 12px !important;
}

.faq-item summary {
    min-height: 64px !important;
    padding: 16px 70px 16px 24px !important;
    font-size: 1.18rem !important;
}

.faq-item summary::after {
    right: 20px !important;
    width: 30px !important;
    height: 30px !important;
    font-size: 1.05rem !important;
}

/* Kinyitott válasz */
.faq-answer {
    padding: 0 70px 22px 24px !important;
}

.faq-answer p {
    font-size: 0.98rem !important;
    line-height: 1.7 !important;
}

/* Mobil */
@media (max-width: 700px) {
    .faq-section {
        padding-top: 45px !important;
        padding-bottom: 65px !important;
    }

    .faq-container {
        width: calc(100% - 28px) !important;
    }

    .faq-heading {
        padding: 28px 22px !important;
        margin-bottom: 26px !important;
    }

    .faq-heading h2 {
        font-size: clamp(2.6rem, 12vw, 3.6rem) !important;
    }

    .faq-category {
        margin-top: 28px !important;
    }

    .faq-item summary {
        min-height: 62px !important;
        padding: 16px 58px 16px 18px !important;
        font-size: 1.08rem !important;
    }

    .faq-item summary::after {
        right: 16px !important;
        width: 29px !important;
        height: 29px !important;
    }

    .faq-answer {
        padding: 0 18px 20px !important;
    }
}
/* GYIK – kategóriák belső igazítása */

.faq-category {
    margin-left: 24px !important;
    margin-right: 24px !important;
    padding-left: 42px !important;
}

.faq-category::before {
    left: 0 !important;
}

@media (max-width: 700px) {
    .faq-category {
        margin-left: 18px !important;
        margin-right: 18px !important;
        padding-left: 36px !important;
    }
}

/* ===== GYIK KATEGÓRIÁK LENYITÁSA ===== */

.faq-group {
    margin: 28px 0 0;
    border: 0;
}

.faq-group > .faq-category {
    list-style: none;
    cursor: pointer;
    position: relative;

    /* több hely felül-alul */
    padding: 22px 55px 22px 40px;

    color: var(--color-green-dark);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* Chrome alap nyilának eltüntetése */
.faq-group > .faq-category::-webkit-details-marker {
    display: none;
}

/* bal oldali arany vonal */
.faq-group > .faq-category::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 28px;
    height: 1px;
    background: var(--color-gold);
}

/* jobb oldali lenyitó nyíl */
.faq-group > .faq-category::after {
    content: "⌄";
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-55%);
    font-size: 1.4rem;
    color: var(--color-green);
    transition: transform 0.25s ease;
}

.faq-group[open] > .faq-category::after {
    transform: translateY(-45%) rotate(180deg);
}

/* kérdések csak kategória megnyitásakor jelenjenek meg */
.faq-group-content {
    padding-top: 6px;
}
/* GYIK kategóriák – kompaktabb elrendezés */

.faq-group {
    margin: 0 !important;
}

.faq-group > .faq-category {
    min-height: 68px;
    padding: 22px 55px 22px 54px !important;
    display: flex;
    align-items: center;
}

.faq-group > .faq-category::before {
    left: 20px !important;
    width: 24px !important;
}

.faq-group + .faq-group {
    border-top: 1px solid rgba(194, 154, 85, 0.18);
}
/* =========================================================
   GYIK – PRÉMIUM FINOMHANGOLÁS
   ========================================================= */

/* Több levegő a fejléc és a kategóriák között */
.faq-list {
    margin-top: 48px !important;
}

/* Kategóriasorok */
.faq-group {
    background: rgba(255, 253, 249, 0.82);
    transition:
        background-color 220ms ease,
        box-shadow 220ms ease;
}

.faq-group:hover {
    background: rgba(255, 253, 249, 0.96);
}

.faq-group[open] {
    background: rgba(255, 253, 249, 0.98);
    box-shadow: inset 0 0 0 1px rgba(49, 93, 72, 0.06);
}

/* Kategóriacím */
.faq-group > .faq-category {
    min-height: 72px !important;
    padding: 22px 72px 22px 58px !important;
    letter-spacing: 0.13em !important;
}

/* Arany vonal */
.faq-group > .faq-category::before {
    width: 28px !important;
    background-color: var(--color-gold) !important;
}

/* Elegáns chevron a "v" helyett */
.faq-group > .faq-category::after {
    content: "" !important;
    position: absolute;
    right: 28px;
    top: 50%;

    width: 9px;
    height: 9px;

    border-right: 1.5px solid var(--color-green);
    border-bottom: 1.5px solid var(--color-green);

    transform: translateY(-65%) rotate(45deg);
    transition: transform 220ms ease;
}

/* Nyitott állapot */
.faq-group[open] > .faq-category::after {
    transform: translateY(-35%) rotate(225deg);
}

/* A lenyíló kérdések kapjanak kis belső teret */
.faq-group-content {
    padding: 0 14px 14px !important;
}

/* Kérdéskártyák finomítása */
.faq-group-content .faq-item {
    background: rgba(255, 255, 255, 0.78);
    border-color: rgba(194, 154, 85, 0.18);
}

.faq-group-content .faq-item:hover {
    background: rgba(255, 255, 255, 0.96);
}

/* Mobil */
@media (max-width: 700px) {
    .faq-list {
        margin-top: 36px !important;
    }

    .faq-group > .faq-category {
        min-height: 64px !important;
        padding: 18px 58px 18px 50px !important;
    }

    .faq-group > .faq-category::after {
        right: 20px;
        width: 8px;
        height: 8px;
    }
}
/* =========================================================
   GYIK – UTOLSÓ VIZUÁLIS FINOMÍTÁS
   ========================================================= */

/* A fix fejléc ne takarja a GYIK tetejét */
.faq-section {
    padding-top: 150px !important;
}

/* Felső bemutatkozó kártya */
.faq-heading {
    box-shadow: 0 18px 55px rgba(49, 66, 55, 0.07);
}

/* Kategóriák külső kártyája */
.faq-list {
    box-shadow: 0 18px 55px rgba(49, 66, 55, 0.06);
}

/* Kategóriasorok picit kompaktabbak */
.faq-group > .faq-category {
    min-height: 68px !important;
}

/* Finomabb elválasztó */
.faq-group + .faq-group {
    border-top: 1px solid rgba(194, 154, 85, 0.16);
}

/* Mobilon ne legyen túl nagy felső tér */
@media (max-width: 700px) {
    .faq-section {
        padding-top: 105px !important;
    }

    .faq-group > .faq-category {
        min-height: 62px !important;
    }
}
/* GYIK – utolsó apró finomítás */

/* Kategóriacímek picit nagyobbak */
.faq-group > .faq-category {
    font-size: 0.92rem !important;
    font-weight: 600;
}

/* Nyitott kategória finom kiemelése */
.faq-group[open] > .faq-category {
    background: rgba(49, 93, 72, 0.045);
}

/* Nyitott kategória arany vonala picit hangsúlyosabb */
.faq-group[open] > .faq-category::before {
    width: 36px !important;
    transition: width 220ms ease;
}