﻿/* === header.css === */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');

@font-face {
    font-family: 'PlayfairDisplay';
    src: url('/assets/fonts/PlayfairDisplay-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

body.menu-page-zoomed {
    max-width: none;
    overflow-x: auto;
}

/* Alap stílusok */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 17px;
}

.site-header {
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1280px;
    z-index: 1000;
    box-sizing: border-box;

    background-color: #a8b9a3;
    padding: 10px 20px;
    border-radius: 16px;
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    top: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo {
    flex-shrink: 0;
    max-width: 140px;
}

.logo img {
    height: 14px;
    max-width: 100%;
    display: block;
}

/* Navigációs menü */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.main-nav a {
    text-transform: uppercase;
    font-family: 'PlayfairDisplay', serif;
    font-size: 15px;
    letter-spacing: 1.5px;
    text-decoration: none;
    color: #000;
    padding: 8px 12px;
    transition: all 0.3s ease;
    border-radius: 4px;
    font-weight: bold;
}

.main-nav a.active {
    background-color: #a67852;
    color: #fff;
}

.main-nav a:hover {
    background-color: #a67852;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(166, 120, 82, 0.15);
}

/* Social ikonok */
.social-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-icons a {
    color: #000;
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #a67852;
}

/* Hamburger ikon */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #000;
}

/* Külön mobil header rész (ikonok + hamburger) */
.mobile-header {
    display: none;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

/* Desktop / mobil váltás */
.desktop-only {
    display: flex;
}

.mobile-only {
    display: none;
}

/* Mobil nézet */
@media (max-width: 950px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 95px;
        right: 15px;
        background-color: #a8b9a3;
        flex-direction: column;
        width: 150px;
        padding: 10px;
        border-radius: 16px;
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.25);
        transition: right 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
        border: 1px solid rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(8px);
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding-right: 10px;
    }

    .header-flex {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 12px;
    }

    .main-nav li {
        display: inline-block;
        width: 100%;
        text-align: right;
        padding: 10px 10px;
    }

    .main-nav.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: flex;
    }

    .mobile-header {
        display: flex;
    }

    .logo img {
        height: 14px;
        max-width: 100%;
    }

    .mobile-header {
        gap: 10px;
    }

    .menu-toggle {
        padding: 4px;
    }
}

/* === footer.css === */

.site-footer {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    width: 100%;
    padding: 68px 24px 0;
    box-sizing: border-box;
    color: #36261d;
    background:
        linear-gradient(115deg, rgba(255, 252, 244, 0.94) 0%, rgba(241, 232, 215, 0.9) 43%, rgba(196, 207, 178, 0.92) 100%),
        radial-gradient(ellipse at 22% 16%, rgba(214, 190, 128, 0.32), transparent 42%),
        radial-gradient(ellipse at 72% 76%, rgba(88, 104, 62, 0.18), transparent 46%);
    border-top: 1px solid rgba(144, 101, 58, 0.22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 28px 24px auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(132, 92, 54, 0.2), rgba(190, 159, 90, 0.45), rgba(132, 92, 54, 0.2), transparent);
    pointer-events: none;
}

.site-footer::after {
    content: '';
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: 58px;
    z-index: -1;
    height: 120px;
    background: linear-gradient(90deg, transparent, rgba(255, 246, 222, 0.38), rgba(109, 123, 82, 0.16), transparent);
    filter: blur(30px);
    pointer-events: none;
}

.footer-shell {
    display: grid;
    grid-template-columns: minmax(245px, 0.78fr) minmax(560px, 1.52fr);
    gap: clamp(28px, 4.8vw, 64px);
    width: min(1160px, 100%);
    margin: 0 auto;
    align-items: stretch;
}

.footer-brand {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 265px;
    padding: 8px 30px 8px 0;
    text-align: center;
}

.footer-brand::before {
    content: '';
    position: absolute;
    top: 10px;
    right: 0;
    bottom: 10px;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(142, 101, 55, 0.28), rgba(197, 166, 98, 0.4), rgba(142, 101, 55, 0.18), transparent);
}

.footer-brand::after {
    content: '';
    display: block;
    width: 86px;
    height: 1px;
    margin: 24px auto 0;
    background: linear-gradient(90deg, transparent, rgba(151, 113, 61, 0.58), transparent);
}

.footer-kicker {
    display: inline-block;
    margin-bottom: 16px;
    color: #88703e;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    line-height: 1.5;
    text-transform: uppercase;
}

.footer-logo {
    display: block;
    width: min(150px, 100%);
    margin: 0 auto 18px;
    transition: transform 0.28s ease, filter 0.28s ease;
}

.footer-logo:hover {
    transform: translateY(-2px);
    filter: drop-shadow(0 10px 18px rgba(78, 58, 36, 0.14));
}

.footer-logo img {
    width: 100%;
    height: auto;
    display: block;
}

.footer-brand-text {
    max-width: 260px;
    margin: 0 auto;
    color: #5f4b3b;
    font-size: clamp(13px, 1vw, 15px);
    line-height: 1.75;
    font-family: 'PlayfairDisplay', serif;
}

.newsletter-form {
    max-width: 340px;
}

.newsletter-form label {
    display: block;
    margin-bottom: 14px;
    color: #3d2b20;
    font-family: 'PlayfairDisplay', serif;
    font-size: 17px;
}

.newsletter-row {
    display: flex;
    align-items: center;
    gap: 0;
    border-bottom: 1px solid rgba(84, 62, 43, 0.34);
    transition: border-color 0.25s ease;
}

.newsletter-row:focus-within {
    border-color: rgba(137, 113, 63, 0.85);
}

.newsletter-form input {
    flex: 1;
    min-width: 0;
    height: 50px;
    border: 0;
    padding: 0;
    color: #39291f;
    background: transparent;
    outline: none;
    font-size: 15px;
}

.newsletter-form input::placeholder {
    color: rgba(77, 58, 43, 0.58);
}

.newsletter-form button {
    height: 50px;
    border: 0;
    padding: 0 0 0 22px;
    color: #5d6f3f;
    background: transparent;
    font-weight: 700;
    cursor: pointer;
    transition: color 0.25s ease, transform 0.25s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    color: #8a5e40;
    transform: translateX(3px);
}

.footer-content {
    display: grid;
    grid-template-rows: auto auto;
    gap: 26px;
    padding-top: 2px;
}

.footer-columns {
    display: grid;
    grid-template-columns: 0.95fr 1.35fr 0.8fr;
    gap: 24px;
    align-items: start;
    padding-bottom: 26px;
    border-bottom: 1px solid rgba(151, 113, 61, 0.2);
}

.footer-column {
    position: relative;
    padding-left: 20px;
}

.footer-column::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 0;
    width: 1px;
    height: calc(100% - 6px);
    background: linear-gradient(180deg, rgba(151, 113, 61, 0.5), rgba(151, 113, 61, 0.08));
}

.footer-column h4,
.footer-map-copy h4 {
    margin: 0 0 12px;
    color: #312219;
    font-family: 'PlayfairDisplay', serif;
    font-size: 21px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    text-transform: none;
}

.footer-column p {
    margin: 6px 0;
    color: #574436;
    line-height: 1.65;
}

.footer-column a {
    color: inherit;
    text-decoration: none;
    background-image: linear-gradient(rgba(137, 113, 63, 0.42), rgba(137, 113, 63, 0.42));
    background-repeat: no-repeat;
    background-size: 0 1px;
    background-position: 0 100%;
    transition: color 0.24s ease, background-size 0.24s ease, transform 0.24s ease;
}

.footer-column a:hover {
    color: #76502f;
    background-size: 100% 1px;
}

.footer-socials {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-socials a {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 10px;
    color: #574436;
    text-decoration: none;
    transition: color 0.24s ease, transform 0.24s ease;
}

.footer-socials a:hover {
    color: #5d6f3f;
    transform: translateX(4px);
}

.footer-socials i {
    width: 18px;
    color: #8a5e40;
    transition: color 0.24s ease;
}

.footer-socials a:hover i {
    color: #5d6f3f;
}

.footer-location {
    display: grid;
    grid-template-columns: minmax(160px, 0.56fr) minmax(320px, 1.44fr);
    gap: 24px;
    align-items: stretch;
    padding-top: 2px;
}

.footer-map-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 150px;
}

.footer-map-copy::after {
    content: '';
    width: 54px;
    height: 1px;
    margin-top: 18px;
    background: rgba(151, 113, 61, 0.4);
}

.footer-map {
    height: 154px;
    overflow: hidden;
    border: 1px solid rgba(119, 89, 49, 0.18);
    border-radius: 8px;
    box-shadow: 0 16px 36px rgba(58, 42, 32, 0.12);
    background: rgba(255, 250, 240, 0.45);
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: saturate(0.78) contrast(0.95) sepia(0.1);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.footer-map:hover iframe {
    filter: saturate(0.95) contrast(0.98) sepia(0.04);
    transform: scale(1.01);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    width: min(70%, 980px);
    margin: 46px auto 0;
    padding: 18px 0 22px;
    color: #675444;
    font-size: 13px;
    border-top: 1px solid rgba(151, 113, 61, 0.24);
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom .developer a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #49382d;
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
}

.footer-bottom .developer a:hover {
    color: #8a5e40;
    transform: translateY(-1px);
}

@media (max-width: 1080px) {
    .footer-shell {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .footer-brand {
        min-height: auto;
        padding: 0 0 34px;
    }

    .footer-brand::before {
        top: auto;
        right: 18%;
        bottom: 0;
        left: 18%;
        width: auto;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(142, 101, 55, 0.28), transparent);
    }
}

@media (max-width: 760px) {
    .site-footer {
        padding: 52px 18px 0;
    }

    .footer-columns,
    .footer-location {
        grid-template-columns: 1fr;
    }

    .footer-columns {
        gap: 24px;
    }

    .footer-column {
        padding-left: 18px;
    }

    .footer-map-copy {
        min-height: auto;
    }

    .footer-map {
        height: 210px;
    }

    .footer-bottom {
        width: 88%;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 420px) {
    .footer-logo {
        width: 128px;
    }

    .footer-bottom {
        width: 92%;
    }
}
/* === home.css === */

.hero {
    position: relative;
    width: 100%;
    height: 88vh;
    min-height: 650px;
    overflow: hidden;
    background: #3b2d22;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.01);
    filter: saturate(1.08) contrast(1.04) brightness(1.03);
    transition: transform 1.6s ease;
}

.hero:hover .hero-image {
    transform: scale(1.025);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at 74% 28%, rgba(255, 224, 176, 0.16), transparent 31%),
        radial-gradient(circle at 28% 42%, rgba(196, 141, 86, 0.16), transparent 38%),
        linear-gradient(90deg, rgba(31, 25, 20, 0.42) 0%, rgba(55, 43, 33, 0.18) 43%, rgba(42, 34, 27, 0.02) 100%),
        linear-gradient(180deg, rgba(28, 23, 18, 0.03) 0%, rgba(28, 23, 18, 0.22) 100%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    height: 42%;
    background:
        radial-gradient(ellipse at 36% 100%, rgba(178, 111, 58, 0.18), transparent 54%),
        linear-gradient(180deg, transparent, rgba(31, 25, 20, 0.24));
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    padding: 132px 8.5vw 78px;
    box-sizing: border-box;
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: minmax(320px, 520px) minmax(160px, 1fr);
    gap: clamp(26px, 5vw, 72px);
    width: min(1100px, 100%);
    margin: 0 auto;
    align-items: center;
}

.hero-copy {
    position: relative;
    max-width: 520px;
    padding: 8px 0 10px 28px;
    color: #fffaf0;
    border-left: 1px solid rgba(229, 202, 145, 0.48);
    text-shadow: 0 10px 26px rgba(24, 18, 13, 0.34);
}

.hero-copy::before {
    content: '';
    position: absolute;
    top: -18px;
    left: 28px;
    width: 96px;
    height: 1px;
    background: linear-gradient(90deg, rgba(229, 202, 145, 0.68), transparent);
}

.hero-kicker {
    display: inline-block;
    margin-bottom: 16px;
    color: #f0d9a5;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero-copy h1 {
    max-width: 520px;
    margin: 0;
    color: #fffaf0;
    font-family: 'PlayfairDisplay', serif;
    font-size: clamp(40px, 5.2vw, 68px);
    line-height: 1.03;
    font-weight: 600;
    letter-spacing: 0.005em;
    text-transform: none;
}

.hero-copy p {
    max-width: 410px;
    margin: 20px 0 0;
    color: rgba(255, 250, 240, 0.9);
    font-size: clamp(15px, 1.1vw, 17px);
    line-height: 1.72;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    padding: 12px 25px;
    color: #fff8ea;
    border: 1px solid rgba(225, 193, 134, 0.5);
    border-radius: 4px;
    background: linear-gradient(135deg, rgba(122, 82, 49, 0.88), rgba(82, 53, 34, 0.86));
    box-shadow: 0 13px 28px rgba(29, 18, 11, 0.2), inset 0 1px 0 rgba(255, 239, 204, 0.2);
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.hero-cta::after {
    content: '\2192';
    font-size: 15px;
    transition: transform 0.28s ease;
}

.hero-cta:hover {
    transform: translateY(-2px);
    border-color: rgba(229, 202, 145, 0.76);
    background: linear-gradient(135deg, rgba(134, 91, 56, 0.96), rgba(90, 58, 37, 0.94));
    box-shadow: 0 17px 36px rgba(29, 18, 11, 0.25), inset 0 1px 0 rgba(255, 239, 204, 0.28);
}

.hero-cta:hover::after {
    transform: translateX(4px);
}

.hero-logo-circle {
    justify-self: end;
    align-self: center;
    width: clamp(196px, 15vw, 244px);
    height: clamp(196px, 15vw, 244px);
    min-width: clamp(196px, 15vw, 244px);
    min-height: clamp(196px, 15vw, 244px);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    display: flex;
    flex: 0 0 auto;
    justify-content: center;
    align-items: center;
    padding: clamp(26px, 2.35vw, 34px);
    box-sizing: border-box;
    margin-top: 10px;
    margin-right: clamp(10px, 4vw, 72px);
    background: rgba(255, 250, 240, 0.18);
    border: 1px solid rgba(255, 250, 240, 0.28);
    box-shadow: 0 16px 36px rgba(24, 18, 13, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(2px);
    transition: transform 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}

.hero-logo-circle img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    display: block;
    opacity: 0.88;
    filter: drop-shadow(0 7px 14px rgba(40, 30, 22, 0.12));
}

.hero-logo-circle:hover {
    transform: translateY(-3px);
    background: rgba(255, 250, 240, 0.26);
    box-shadow: 0 20px 46px rgba(24, 18, 13, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

@media (max-width: 900px) {
    .hero {
        min-height: 680px;
    }

    .hero-overlay {
        padding: 118px 30px 58px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .hero-copy {
        max-width: 560px;
    }

    .hero-logo-circle {
        justify-self: end;
        width: 154px;
        height: 154px;
        min-width: 154px;
        min-height: 154px;
        margin-top: 2px;
        margin-right: 28px;
        margin-left: 0;
        padding: 23px;
    }
}

@media (max-width: 560px) {
    .hero {
        height: 100svh;
        min-height: 620px;
        max-height: 760px;
    }

    .hero-image {
        object-position: center top;
    }

    .hero-overlay {
        align-items: flex-end;
        padding: 104px 18px 40px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-end;
        gap: 18px;
        width: 100%;
    }

    .hero-copy {
        max-width: 100%;
        padding-left: 18px;
        box-sizing: border-box;
    }

    .hero-copy h1 {
        font-size: clamp(34px, 10.5vw, 46px);
        line-height: 1.06;
    }

    .hero-copy p {
        font-size: 14px;
        line-height: 1.65;
        max-width: 330px;
        margin-top: 16px;
    }

    .hero-kicker {
        margin-bottom: 12px;
        font-size: 10px;
        letter-spacing: 0.18em;
    }

    .hero-cta {
        margin-top: 22px;
        padding: 11px 20px;
        font-size: 14px;
    }

    .hero-logo-circle {
        order: -1;
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        align-self: center;
        width: 136px;
        height: 136px;
        min-width: 136px;
        min-height: 136px;
        margin-top: 0;
        margin-right: auto;
        margin-left: auto;
        padding: 17px;
        transform: none;
    }

    .hero-logo-circle:hover {
        transform: translateY(-3px);
    }
}

@media (max-width: 420px) {
    .hero {
        min-height: 570px;
        max-height: 700px;
    }

    .hero-overlay {
        padding: 96px 16px 32px;
    }

    .hero-copy {
        padding-left: 16px;
    }

    .hero-copy::before {
        left: 16px;
        width: 72px;
    }

    .hero-copy h1 {
        font-size: clamp(31px, 10vw, 39px);
    }

    .hero-copy p {
        max-width: 295px;
    }

    .hero-logo-circle {
        width: 124px;
        height: 124px;
        min-width: 124px;
        min-height: 124px;
        padding: 16px;
    }
}
/*features*/
.features {
    background-color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-item img {
    height: 60px;
    margin-bottom: 2px;
    transition: transform 0.3s ease;
}

.feature-item img:hover {
    transform: scale(1.1);
}

.feature-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}
/*features vége*/



/* Reszponzivitás */
@media (max-width: 1200px) {
}

@media (max-width: 1000px) {

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
}

.home-intro {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    margin-top: -1px;
    padding: clamp(92px, 10vw, 148px) 24px clamp(88px, 9vw, 132px);
    color: #33241b;
    background:
        radial-gradient(circle at 18% 10%, rgba(224, 196, 139, 0.28), transparent 36%),
        radial-gradient(circle at 88% 70%, rgba(91, 111, 65, 0.2), transparent 40%),
        linear-gradient(135deg, #fffaf0 0%, #f3e8d6 44%, #e6ead8 100%);
}

.home-intro::before {
    content: '';
    position: absolute;
    top: 38px;
    left: 9vw;
    right: 9vw;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(103, 123, 78, 0.24), rgba(214, 182, 116, 0.5), rgba(128, 88, 54, 0.22), transparent);
    pointer-events: none;
}

.home-intro::after {
    content: '';
    position: absolute;
    right: 12vw;
    bottom: 62px;
    z-index: -1;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255, 246, 219, 0.5);
    filter: blur(42px);
    pointer-events: none;
}

.intro-shell {
    display: grid;
    grid-template-columns: minmax(360px, 1.12fr) minmax(300px, 0.68fr);
    gap: clamp(58px, 8vw, 124px);
    width: min(1160px, 100%);
    margin: 0 auto;
    align-items: center;
}

.intro-copy {
    position: relative;
    padding-left: clamp(30px, 3.6vw, 52px);
}

.intro-copy,
.intro-details {
    opacity: 0;
    will-change: transform, opacity;
    transition:
        opacity 1.05s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.05s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.32s ease;
}

.intro-copy {
    transform: translate3d(-46px, 16px, 0);
}

.intro-details {
    transform: translate3d(46px, 16px, 0);
}

.home-intro.is-visible .intro-copy,
.home-intro.is-visible .intro-details {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.home-intro.is-visible .intro-details {
    transition-delay: 0.18s;
}

.intro-copy::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 0;
    width: 1px;
    height: calc(100% - 12px);
    background: linear-gradient(180deg, rgba(103, 123, 78, 0.12), rgba(138, 91, 51, 0.5), rgba(218, 190, 129, 0.18));
}

.intro-kicker {
    display: inline-block;
    margin-bottom: 22px;
    color: #657848;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.home-intro h2 {
    font-family: 'PlayfairDisplay', serif;
    font-size: clamp(38px, 4.4vw, 62px);
    line-height: 1.04;
    max-width: 760px;
    margin: 0;
    color: #302017;
    font-weight: 600;
}

.home-intro p {
    max-width: 600px;
    margin: 28px 0 0;
    color: #584534;
    font-size: clamp(16px, 1.25vw, 18px);
    line-height: 1.9;
}

.home-intro .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    padding: 13px 28px;
    color: #fff8ea;
    border: 1px solid rgba(206, 171, 105, 0.48);
    border-radius: 3px;
    background: linear-gradient(135deg, #765136, #4f3425);
    box-shadow: 0 16px 32px rgba(75, 48, 32, 0.16), inset 0 1px 0 rgba(255, 239, 204, 0.2);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease, background 0.32s ease, letter-spacing 0.32s ease;
}

.home-intro .btn::after {
    content: '\2192';
    font-size: 15px;
    transition: transform 0.28s ease;
}

.home-intro .btn:hover {
    transform: translateY(-3px);
    border-color: rgba(222, 190, 126, 0.72);
    background: linear-gradient(135deg, #845b3d, #5a3b2a);
    box-shadow: 0 22px 46px rgba(75, 48, 32, 0.22), inset 0 1px 0 rgba(255, 239, 204, 0.26);
    letter-spacing: 0.04em;
}

.home-intro .btn:hover::after {
    transform: translateX(6px);
}

.intro-details {
    position: relative;
    width: min(390px, 100%);
    justify-self: end;
    padding: clamp(34px, 4.2vw, 52px);
    color: #39291e;
    background:
        radial-gradient(circle at 18% 0%, rgba(229, 197, 137, 0.2), transparent 34%),
        linear-gradient(150deg, rgba(255, 252, 244, 0.74), rgba(244, 231, 205, 0.44)),
        rgba(255, 250, 240, 0.34);
    border: 1px solid rgba(131, 91, 54, 0.16);
    border-radius: 6px;
    box-shadow: 0 28px 70px rgba(75, 53, 37, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.58);
    backdrop-filter: blur(2px);
    transition:
        opacity 1.05s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.05s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.32s ease;
}

.intro-details::before {
    content: '';
    position: absolute;
    top: 22px;
    right: 22px;
    width: 66px;
    height: 1px;
    background: linear-gradient(90deg, rgba(103, 123, 78, 0.38), rgba(206, 171, 105, 0.4));
}

.intro-details p {
    margin: 0 0 20px;
    color: #657848;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    line-height: 1.5;
    text-transform: uppercase;
}

.intro-details strong {
    display: block;
    color: #332219;
    font-family: 'PlayfairDisplay', serif;
    font-size: clamp(23px, 2.15vw, 32px);
    font-weight: 600;
    line-height: 1.34;
}

.intro-details span {
    display: block;
    margin-top: 30px;
    padding-top: 20px;
    color: #6f5642;
    font-size: 14px;
    border-top: 1px solid rgba(103, 123, 78, 0.16);
}

.intro-details:hover {
    transform: translateY(-4px);
    box-shadow: 0 34px 82px rgba(75, 53, 37, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.64);
}

.home-intro.is-visible .intro-details:hover {
    transform: translateY(-4px);
}

@media (max-width: 860px) {
    .intro-shell {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .intro-details {
        justify-self: start;
        max-width: 560px;
        margin-left: clamp(30px, 3.6vw, 52px);
    }

    .intro-copy,
    .intro-details {
        transform: translate3d(0, 34px, 0);
    }

    .home-intro.is-visible .intro-details {
        transition-delay: 0.22s;
    }
}

@media (max-width: 560px) {
    .home-intro {
        padding: 68px 18px 76px;
    }

    .intro-shell {
        width: 100%;
    }

    .intro-copy {
        padding-left: 22px;
        width: 100%;
        box-sizing: border-box;
    }

    .home-intro h2 {
        font-size: clamp(32px, 9.4vw, 42px);
        line-height: 1.08;
    }

    .home-intro p {
        margin-top: 22px;
        font-size: 15px;
        line-height: 1.75;
    }

    .home-intro .btn {
        justify-content: center;
        margin-top: 30px;
        padding: 12px 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        font-size: 14px;
    }

    .intro-details {
        width: 100%;
        margin-left: 0;
        padding: 28px 24px;
        box-sizing: border-box;
    }

    .intro-details strong {
        font-size: clamp(22px, 7.1vw, 28px);
    }
}

@media (max-width: 420px) {
    .home-intro {
        padding: 58px 16px 66px;
    }

    .intro-shell {
        gap: 32px;
    }

    .intro-copy {
        padding-left: 18px;
    }

    .intro-kicker,
    .intro-details p {
        font-size: 10px;
        letter-spacing: 0.16em;
    }

    .home-intro h2 {
        font-size: clamp(29px, 9.2vw, 36px);
    }

    .home-intro p {
        font-size: 14px;
    }

    .intro-details {
        padding: 24px 20px;
    }

    .intro-details span {
        font-size: 13px;
        line-height: 1.6;
    }
}

@media (prefers-reduced-motion: reduce) {
    .intro-copy,
    .intro-details {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.featured-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-overlay {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 10px;
    border-radius: 12px;
    text-align: center;
}

.banner-overlay h2 {
    color: #fff;
    font-family: 'PlayfairDisplay', serif;
    font-size: 32px;
}

/* === about.css === */

.about-hero {
    background: url('/assets/img/banner2.jpg') no-repeat center/cover;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.about-hero h1 {
    font-family: 'PlayfairDisplay', serif;
    font-size: 42px;
    margin-bottom: 10px;
}

.about-hero p {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    letter-spacing: 1px;
}

.about-story, .renovation, .opening {
    background-color: #fefefe;
    padding: 10px 20px;
    text-align: center;
}

.about-story h2, .renovation h2, .opening h2 {
    font-family: 'PlayfairDisplay', serif;
    margin-bottom: 20px;
    font-size: 32px;
}

.about-story p, .renovation p, .opening p {
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 16px;
    line-height: 1.8;
}

/* Váltakozó kép-szöveg blokkok */
.about-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 30px 20px;
    flex-wrap: wrap;
    background-color: #fefefe;
}

.about-block.reverse {
    flex-direction: row-reverse;
}

.about-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.05);
}

.about-text {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
}

.about-story p, .renovation p, .opening p {
    text-align: justify;
}

.about-text ul {
    list-style: none;
    padding-left: 0;
}

.about-text ul li {
    margin-bottom: 10px;
}

.about-thankyou {
    padding: 40px 20px;
    background-color: #fff;
}

.thankyou-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.thankyou-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.thankyou-image img:hover {
    transform: scale(1.03);
}

.thankyou-text {
    flex: 1;
    min-width: 300px;
    max-width: 700px;
    text-align: justify;
}

.thankyou-text ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.thankyou-text li {
    margin-bottom: 8px;
}

/* Reszponzivitás */
@media (max-width: 800px) {
    .thankyou-container {
        flex-direction: column;
        align-items: center;
    }

    .thankyou-text {
        max-width: 100%;
    }
}

/* Felújítás galéria */
.renovation-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.renovation-gallery img {
    width: 300px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.renovation-gallery img:hover {
    transform: scale(1.05);
}

/* Megnyitó kép */
.opening-photo img {
    width: 400px;
    max-width: 90%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.opening-photo img:hover {
    transform: scale(1.05);
}

.thanks-list {
    max-width: none;
    text-align: left;
    margin: 0 0 30px 0;
    padding-left: 40px;
}

.fullwidth {
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.closing-message {
    text-align: center;
    font-size: 26px;
    font-weight: bold;
    margin: 60px 0;
    color: #2f2f2f;
    font-family: 'PlayfairDisplay', serif;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 20px 10px;
    background-color: #f9f9f9;
}

/* Reszponzivitás */
@media (max-width: 1000px) {
    .renovation-gallery img {
        width: 45%;
    }

    .about-block {
        flex-direction: column;
        text-align: center;
    }

    .about-block.reverse {
        flex-direction: column;
    }

    .about-text {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .renovation-gallery img {
        width: 100%;
    }
}

/* === gallery.css === */

.gallery-hero {
    background: url('/assets/img/banner2.jpg') no-repeat center/cover;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.gallery-hero h1 {
    font-family: 'PlayfairDisplay', serif;
    font-size: 42px;
    margin-bottom: 10px;
}

.gallery-hero p {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    letter-spacing: 1px;
}

.gallery-section {
    background-color: #fefefe;
    padding: 60px 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

.coming-soon {
    background-color: #fefefe;
    padding: 80px 20px;
    text-align: center;
}

.coming-soon p {
    font-family: 'PlayfairDisplay', serif;
    font-size: 28px;
    color: #a67852;
    letter-spacing: 1.5px;
    margin: 0;
}

/* Reszponzivitás */
@media (max-width: 1000px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* === flavour.css === */

.flavor-page {
    background: white;
    min-height: 100vh;
    font-family: 'PlayfairDisplay', serif;
    color: #B5AC9A;
}

.flavor-hero {
    text-align: center;
    padding: 80px 20px 40px;
    color: #ffffff;
    background: url('/assets/img/banner2.jpg') no-repeat center/cover;
}

.flavor-hero h1 {
    font-size: 42px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.flavor-hero p {
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
}

.flavor-list-section {
    padding: 40px 20px 80px;
}

.flavor-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 30px;
}

.flavor-card {
    background: #ccc3ba;
    color: #4a2f1d;
    border-radius: 16px;
    padding: 30px 25px;
    box-shadow: 0 15px 30px rgba(74, 47, 29, 0.15);
    border: 1px solid rgba(180, 137, 101, 0.25);
    text-align: center;
}

.flavor-card h2 {
    margin-bottom: 16px;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.flavor-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.7;
}

.flavor-card li::before {
    content: none;
}

.flavor-contact {
    margin-top: 60px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #4a2f1d;
}

.phone-link {
    color: #4a2f1d;
    text-decoration: none;
}

.phone-link:hover {
    text-decoration: underline;
}


@media (max-width: 1200px) {
    .flavor-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .flavor-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .flavor-grid {
        grid-template-columns: 1fr;
    }
}

/* === price.css === */

.price-hero {
    background: url('/assets/img/banner2.jpg') no-repeat center/cover;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.price-hero h1 {
    font-family: 'PlayfairDisplay', serif;
    font-size: 42px;
    margin-bottom: 10px;
}

.price-hero p {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    letter-spacing: 1px;
}

.price-page .menu-section {
    padding: 60px 20px;
    text-align: center;
}

.menu-section h2 {
    font-family: 'PlayfairDisplay', serif;
    font-size: 36px;
    margin-bottom: 30px;
}

.menu-document-controls {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    box-sizing: border-box;
    gap: 10px;
    margin: 0 auto 18px;
    padding: 8px;
    border: 1px solid rgba(138, 94, 64, 0.18);
    border-radius: 8px;
    background: #fffaf6;
    box-shadow: 0 8px 22px rgba(74, 52, 41, 0.08);
}

.menu-document-controls button {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 6px;
    background: #a67852;
    color: #fff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.menu-document-controls button:hover:not(:disabled) {
    background: #8a5e40;
    transform: translateY(-1px);
}

.menu-document-controls button:disabled {
    cursor: not-allowed;
    opacity: 0.45;
}

.menu-document-controls span {
    min-width: 92px;
    color: #4a3429;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.menu-document-viewer {
    width: min(calc(100vw - 40px), 980px);
    margin: 0 auto 22px;
    border-radius: 8px;
    overflow: visible;
    background: #f7f1ec;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.menu-document-viewer img {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
    margin: 0 auto;
    transform-origin: top center;
    cursor: zoom-in;
    transition: transform 0.25s ease, margin-bottom 0.25s ease;
}

.menu-document-viewer img.is-zoomed {
    cursor: zoom-out;
}

body.menu-page-zoomed .menu-document-viewer {
    overflow: visible;
}

.menu-image img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.menu-images-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.menu-images-row img {
    max-width: 45%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.menu-images-row img:hover {
    transform: scale(1.02);
}

.download-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 26px;
    background-color: #a67852;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'PlayfairDisplay', serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background-color: #8a5e40;
}

@media (max-width: 700px) {
    .menu-document-controls {
        display: grid;
        grid-template-columns: 42px minmax(80px, 1fr) 42px;
        width: min(100%, 300px);
    }

    .menu-document-controls span {
        min-width: 0;
    }

    .menu-document-viewer {
        border-radius: 6px;
    }
}

/* === contact.css === */

.contact-hero {
    background: url('/assets/img/banner2.jpg') no-repeat center/cover;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.contact-hero h1 {
    font-family: 'PlayfairDisplay', serif;
    font-size: 42px;
    margin-bottom: 10px;
}

.contact-hero p {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    letter-spacing: 1px;
}

.contact-details {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.contact-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

.contact-info-block,
.contact-map {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.contact-info-block:hover,
.contact-map:hover {
    transform: translateY(-4px);
}

.contact-info-block h2 {
    font-family: 'PlayfairDisplay', serif;
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

.contact-info-block p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 14px;
    color: #444;
}

.contact-info-block a {
    color: #a67852;
    text-decoration: none;
    font-weight: 500;
}

.contact-info-block a:hover {
    text-decoration: underline;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border: none;
    border-radius: 10px;
}

.contact-map {
    padding: 0;
    box-shadow: none;
}

@media (max-width: 800px) {
    .contact-grid {
        flex-direction: column;
        gap: 40px;
    }

    .contact-info-block,
    .contact-map {
        padding: 25px;
    }
}

@media (max-width: 600px) {
    .gallery-hero {
        padding: 40px 20px; /* kisebb mint 80px */
    }
}

/* === 404.css === */

.error-hero {
    background-image: url('/assets/img/banner.jpg');
    background-size: cover;
    background-position: center;
    height: 90vh;
    position: relative;
    padding-top: 80px;
}

.error-content {
    text-align: center;
    color: #fff;
    background-color: rgba(0,0,0,0.4);
    padding: 10px 10px;
    border-radius: 12px;
    max-width: 400px;
    margin: 120px auto;
}

.error-content h1 {
    font-size: 100px;
    margin-bottom: 5px;
    font-family: 'PlayfairDisplay', serif;
}

.error-content p {
    font-size: 20px;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
}

.error-content .btn {
    background-color: #a67852;
    color: #fff;
    padding: 12px 26px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    font-family: 'PlayfairDisplay', serif;
    transition: all 0.3s ease;
    display: inline-block;
}

.error-content .btn:hover {
    background-color: #8a5e40;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}
