:root {
    --color-bg: #fafaf9;
    --color-surface: #ffffff;
    --color-text: #000000;
    --color-text-muted: #1a1a1a;
    --color-accent: #1e3a5f;
    --color-accent-light: #2d4a6f;
    --color-border: #e7e5e4;
    --color-free: #15803d;
    --color-booked: #b91c1c;
    --color-disabled: #a8a29e;
    --font-sans: 'DM Sans', system-ui, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --radius: 8px;
    --shadow: 0 1px 3px rgba(0,0,0,.08);
    --shadow-lg: 0 4px 20px rgba(0,0,0,.08);
    /* Fo szin: #e3d6b6 es arnyalatai */
    --gold-50: #f7f5ef;
    --gold-100: #efeade;
    --gold-200: #e2dbc9;
    --gold-300: #d6ccb3;
    --gold-400: #e3d6b6;
    --gold-500: #b8ab8d;
    --gold-600: #998b70;
    --gold-rgb: 207, 196, 167;
    --gold-light-rgb: 239, 234, 222;
    --gold-border: rgba(var(--gold-rgb), 0.45);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    /* Sticky fejléc miatt az anchor célpont ne tűnjön a header mögé */
    scroll-padding-top: 7rem;
}

/* Sticky fejléc miatt az anchor pozicionálás korrigálása */
#bemutato,
#rolunk,
#szelfigep,
#szolgaltatasok,
#arlista,
#foglalas,
#kapcsolat,
main > section {
    scroll-margin-top: 6.5rem;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes shimmer-sweep {
    0%, 100% { background-position: -100% 50%; }
    50% { background-position: 200% 50%; }
}

@keyframes sparkle {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.6; }
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.9; }
}

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    background: linear-gradient(135deg, #fdf8e8 0%, #f5e6c8 15%, #efe0b8 30%, #e8d4a0 50%, #f0e4c0 70%, #f8f0d8 85%, #fff8e8 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Archik: a viragminta es zaj a body hatteren van (lasd lenn), igy nem takarjak a szekciok */
body::before,
body::after {
    content: none;
    display: none;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(180deg, rgba(255, 250, 230, 0.98) 0%, rgba(255, 248, 220, 0.95) 100%);
    backdrop-filter: blur(12px);
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.6), rgba(255, 223, 128, 0.9), rgba(212, 175, 55, 0.6), transparent) 1;
    box-shadow: 0 2px 20px rgba(212, 175, 55, 0.2);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 4rem;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-shrink: 0;
}

.header-tagline {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text, #4a4335);
    letter-spacing: 0.02em;
    line-height: 1.15;
    white-space: nowrap;
}

.logo {
    display: inline-block;
    text-decoration: none;
    line-height: 0;
}

.logo img {
    display: block;
    height: 2.5rem;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

nav {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    flex-wrap: wrap;
}

nav a {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    font-size: .9375rem;
    transition: color .2s;
}

nav a:hover {
    color: #333333;
}

.nav-admin {
    color: #000000;
    font-size: .875rem;
}

/* Mobil navigáció (hamburger) */
.nav-toggle-checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.12);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    transition: transform .15s, background .2s;
}

.nav-toggle:active {
    transform: scale(.98);
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #000000;
    border-radius: 3px;
    margin: 0;
    transition: transform .2s ease, opacity .2s ease;
}

.site-nav {
    margin: 0;
}

/* Intro / Bemutató */
.section-intro {
    padding: 4rem 0 4.5rem;
    background: linear-gradient(180deg, rgba(255, 250, 235, 0.8) 0%, transparent 60%);
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), rgba(255, 223, 128, 0.7), rgba(212, 175, 55, 0.5), transparent) 1;
    text-align: center;
}

.intro-lead {
    max-width: 640px;
    margin: 0 auto 2rem;
    font-size: 1.125rem;
    line-height: 1.7;
    color: #000000;
}

.intro-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.intro-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.intro-card {
    position: relative;
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.5);
    box-shadow: 0 8px 28px rgba(212, 175, 55, 0.22);
    background: #fff;
    min-height: 190px;
}

.intro-card__text {
    position: absolute;
    inset: 0 auto 0 0;
    width: 46%;
    z-index: 2;
    padding: 1.1rem 1.05rem;
    background: linear-gradient(135deg, rgba(132, 101, 45, 0.95) 0%, rgba(201, 168, 108, 0.75) 55%, rgba(90, 60, 20, 0.18) 100%);
    border-right: 2px solid rgba(212, 175, 55, 0.65);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.55rem;
}

.intro-card__label {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

.intro-card__sub {
    font-size: 0.95rem;
    line-height: 1.35;
    color: #ffffff;
    font-weight: 500;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

.intro-card__media {
    position: absolute;
    inset: 0;
    background: #000;
    z-index: 0;
}

.intro-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.04) contrast(1.02);
}

.intro-card__media::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    /* Arany „wash” sáv a fotó bal oldalán (átmenet a szövegsávhoz). */
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.55) 0%, rgba(212, 175, 55, 0.18) 38%, rgba(212, 175, 55, 0) 62%);
}

@media (max-width: 600px) {
    html {
        scroll-padding-top: 9rem;
    }

    .intro-images {
        grid-template-columns: 1fr;
    }

    .intro-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .intro-card {
        display: flex;
        flex-direction: column;
        min-height: 0;
    }

    .intro-card__text {
        position: relative;
        width: 100%;
        z-index: 2;
        border-right: none;
        border-bottom: 2px solid rgba(212, 175, 55, 0.55);
        padding: 0.95rem 0.85rem;
        gap: 0.45rem;
        background: linear-gradient(135deg, rgba(140, 112, 52, 0.95) 0%, rgba(201, 168, 108, 0.72) 55%, rgba(90, 60, 20, 0.18) 100%);
    }

    .intro-card__label {
        font-size: 1.1rem;
        text-align: left;
        color: #ffffff;
        text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
    }

    .intro-card__sub {
        font-size: 0.92rem;
        text-align: left;
        color: #ffffff;
        text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
    }

    .intro-card__media {
        position: relative;
        inset: auto;
        height: 180px;
    }

    .site-header {
        padding-top: 0.25rem;
        padding-bottom: 0.25rem;
    }

    .header-inner {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 0.5rem;
        flex-wrap: wrap;
        min-height: 3.2rem;
        position: relative;
    }

    .nav-toggle {
        display: inline-flex;
        align-self: flex-end;
        order: 2;
        margin-left: auto;
        margin-top: 0;
        margin-bottom: 0;
    }

    nav.site-nav {
        display: flex;
        order: 3;
        flex: 0 0 auto;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: center;
        width: calc(100% - 0px);
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 999;
        gap: 0.75rem;
        padding: 0.75rem 0;
        background: rgba(236, 226, 202, 0.98) !important;
        background-color: rgba(236, 226, 202, 0.98) !important;
        backdrop-filter: blur(10px);
        border: 1px solid var(--color-border, #c9bb98) !important;
        border-radius: var(--radius);
        box-shadow: 0 12px 28px rgba(74, 67, 53, 0.14) !important;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-8px);
        transition: max-height .25s ease, opacity .2s ease, transform .25s ease;
    }

    .nav-toggle-checkbox:checked ~ nav.site-nav {
        max-height: 280px;
        opacity: 1;
        transform: translateY(0);
    }

    nav.site-nav a {
        font-size: 1rem;
        padding: 0.45rem 0.6rem;
        border-radius: 10px;
        width: 100%;
        display: block;
        text-align: center;
    }

    nav.site-nav a:hover {
        background: rgba(255, 255, 255, 0.75);
    }

    nav a {
        font-size: 0.9rem;
    }

    .logo img {
        max-width: 160px;
    }

    .header-brand {
        order: 1;
        flex: 1 1 auto;
        min-width: 0;
    }

    .header-tagline {
        font-size: 1.1rem;
        letter-spacing: 0.01em;
    }

    .nav-toggle-checkbox:checked + .nav-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .nav-toggle-checkbox:checked + .nav-toggle span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0.2);
    }
    .nav-toggle-checkbox:checked + .nav-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

.intro-img {
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.3);
    border: 2px solid rgba(212, 175, 55, 0.5);
}

.intro-img img {
    display: block;
    width: 100%;
    height: 280px;
    object-fit: cover;
}

/* Rólunk */
.section-about {
    background: linear-gradient(180deg, rgba(255, 248, 230, 0.6) 0%, transparent 100%);
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), rgba(255, 223, 128, 0.6), rgba(212, 175, 55, 0.4), transparent) 1;
}

/* Mi az a szelfigép */
.section-what {
    background: linear-gradient(180deg, rgba(255, 248, 230, 0.6) 0%, transparent 100%);
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), rgba(255, 223, 128, 0.6), rgba(212, 175, 55, 0.4), transparent) 1;
}

.dreams-square-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 0 auto 1.5rem;
    max-width: 720px;
}

.dreams-square-item {
    margin: 0;
    flex: 0 0 auto;
    width: 200px;
}

.dreams-square-item img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 200px;
    border-radius: var(--radius);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.2);
    border: 2px solid rgba(212, 175, 55, 0.5);
}

@media (max-width: 520px) {
    .dreams-square-item {
        width: 140px;
    }
    .dreams-square-item img {
        max-width: 140px;
    }
}

.section-what .about-content p {
    margin-bottom: 1rem;
}

/* Csomaglista */
.package-list {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.package-list li {
    position: relative;
    padding: 0.75rem 0 0.75rem 1.5rem;
    border-bottom: 1px solid var(--gold-border);
    color: #000000;
    font-size: .9375rem;
    line-height: 1.5;
}

.package-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.1rem;
    width: 6px;
    height: 6px;
    background: #000000;
    border-radius: 50%;
}

.package-list li:last-child {
    border-bottom: none;
}

.package-list strong {
    font-weight: 600;
}

.package-note {
    max-width: 720px;
    margin: 0 auto;
    font-size: .9375rem;
    font-style: italic;
    color: #000000;
    text-align: center;
}

.about-content {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    margin: 0 0 1rem;
    color: #000000;
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* Árlista – designba illeszkedő */
.section-pricing {
    background: linear-gradient(180deg, rgba(255, 248, 230, 0.6) 0%, transparent 100%);
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), rgba(255, 223, 128, 0.6), rgba(212, 175, 55, 0.4), transparent) 1;
    padding: 4rem 0;
}

.pricing-card {
    max-width: 560px;
    margin: 0 auto;
    padding: 2rem 2rem;
    background: #ece2ca;
    border-radius: var(--radius);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.25), inset 0 1px 0 rgba(255,255,255,0.7);
    border: 2px solid transparent;
    border-image: linear-gradient(135deg, rgba(212, 175, 55, 0.4), rgba(255, 223, 128, 0.8), rgba(212, 175, 55, 0.4)) 1;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: none;
    display: none;
}

.pricing-card > * {
    position: relative;
    z-index: 1;
}

.pricing-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: #000000;
    margin: 0 0 1.5rem;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.6), transparent) 1;
}

.pricing-list {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
}

.pricing-list li {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .65rem 0;
    font-size: 1rem;
    color: var(--color-text);
    border-bottom: 1px solid var(--gold-border);
}

.pricing-list li:last-of-type {
    border-bottom: none;
}

.price-name {
    flex-shrink: 0;
}

.price-dots {
    flex: 1;
    min-width: 20px;
    border-bottom: 1px dotted var(--gold-border);
    align-self: flex-end;
    margin-bottom: .35em;
}

.price-value {
    flex-shrink: 0;
    font-weight: 600;
    color: #000000;
}

.pricing-note {
    margin: 0;
    padding-top: 1rem;
    border-top: 1px solid var(--gold-border);
    font-size: .9375rem;
    font-style: italic;
    color: #000000;
    text-align: left;
}

.pricing-cta {
    margin: 1.25rem 0 0;
    text-align: center;
}

.btn {
    display: inline-block;
    padding: .75rem 1.5rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background .2s, transform .15s;
}

.btn:active {
    transform: scale(.98);
}

.btn-primary {
    background: linear-gradient(135deg, #8b7355 0%, #c9a86c 30%, #e8d48c 50%, #c9a86c 70%, #8b7355 100%);
    background-size: 200% auto;
    color: #000000;
    text-shadow: 0 1px 0 rgba(255,255,255,0.4);
    box-shadow: 0 4px 15px rgba(201, 168, 108, 0.5), inset 0 1px 0 rgba(255,255,255,0.3);
}

.btn-primary:hover {
    background-position: 100% 0;
    box-shadow: 0 6px 20px rgba(201, 168, 108, 0.6), inset 0 1px 0 rgba(255,255,255,0.4);
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* Sections */
.section {
    padding: 4rem 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: #000000;
    margin: 0 0 1rem;
    text-align: center;
}

.section-lead {
    text-align: center;
    color: #000000;
    max-width: 540px;
    margin: 0 auto 2.5rem;
}

/* Services */
.section-services {
    background: linear-gradient(180deg, rgba(255, 248, 230, 0.6) 0%, transparent 100%);
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), rgba(255, 223, 128, 0.6), rgba(212, 175, 55, 0.4), transparent) 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-card {
    padding: 1.75rem;
    background: linear-gradient(145deg, rgba(255, 252, 245, 0.95) 0%, rgba(255, 248, 230, 0.9) 100%);
    border-radius: var(--radius);
    border: 1px solid rgba(212, 175, 55, 0.5);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.15), inset 0 1px 0 rgba(255,255,255,0.6);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.4) 50%, transparent 65%);
    background-size: 200% 100%;
    background-position: 200% 50%;
    animation: shimmer-sweep 5s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-icon {
    display: inline-flex;
    color: #000000;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 .5rem;
}

.service-card p {
    margin: 0;
    font-size: .9375rem;
    color: #000000;
}

/* Booking */
.section-booking {
    background: linear-gradient(180deg, rgba(255, 248, 230, 0.6) 0%, transparent 100%);
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), rgba(255, 223, 128, 0.6), rgba(212, 175, 55, 0.4), transparent) 1;
}

.booking-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

@media (max-width: 800px) {
    .booking-layout {
        grid-template-columns: 1fr;
    }
}

.calendar-wrap {
    background: linear-gradient(145deg, rgba(255, 252, 245, 0.98) 0%, rgba(255, 248, 230, 0.95) 100%);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.2), inset 0 1px 0 rgba(255,255,255,0.5);
    border: 2px solid rgba(212, 175, 55, 0.5);
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.cal-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    padding: 0;
    border: none;
    background: var(--color-bg);
    color: var(--color-text);
    border-radius: var(--radius);
    cursor: pointer;
    transition: background .2s;
}

.cal-nav:hover {
    background: var(--color-border);
}

.cal-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
}

.calendar-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: .8125rem;
    color: #000000;
}

.leg {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}

.leg-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.leg-free .leg-dot {
    background: #15803d;
    box-shadow: 0 0 0 1px rgba(22, 101, 52, 0.35);
}
.leg-booked .leg-dot {
    background: #b91c1c;
    box-shadow: 0 0 0 1px rgba(127, 29, 29, 0.35);
}
.leg-disabled .leg-dot {
    background: #78716c;
    box-shadow: 0 0 0 1px rgba(68, 64, 60, 0.35);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.cal-day-name {
    text-align: center;
    font-size: .6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #000000;
    padding: .35rem 0;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .875rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: default;
    transition: background 0.15s ease, color 0.15s ease, transform 0.12s ease, box-shadow 0.15s ease;
    border: 1px solid transparent;
    box-sizing: border-box;
}

.cal-day.other-month {
    color: #78716c;
    background: #f5f5f4;
    border-color: rgba(120, 113, 108, 0.2);
    opacity: 0.72;
}

.cal-day.past {
    color: #78716c;
    background: #f5f5f4;
    border-color: rgba(120, 113, 108, 0.28);
    cursor: not-allowed;
    opacity: 0.88;
}

.cal-day.free {
    color: #14532d;
    cursor: pointer;
    background: #bbf7d0;
    border-color: rgba(22, 101, 52, 0.35);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.cal-day.free:hover {
    background: #86efac;
    border-color: rgba(22, 101, 52, 0.55);
    transform: scale(1.04);
}

.cal-day.booked {
    color: #7f1d1d;
    cursor: not-allowed;
    background: #fecaca;
    border-color: rgba(185, 28, 28, 0.45);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.cal-day.disabled {
    color: #57534e;
    cursor: not-allowed;
    background: #e7e5e4;
    border-color: rgba(120, 113, 108, 0.4);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.cal-day.selected {
    background: linear-gradient(135deg, #8b7355 0%, #c9a86c 50%, #8b7355 100%);
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border-color: rgba(74, 60, 42, 0.55);
    box-shadow: 0 2px 8px rgba(139, 115, 85, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.cal-day.selected:hover {
    background: linear-gradient(135deg, #9a8255 0%, #d4b87c 50%, #9a8255 100%);
    transform: scale(1.04);
}

/* Form */
.booking-form-wrap {
    background: linear-gradient(145deg, rgba(255, 252, 245, 0.98) 0%, rgba(255, 248, 230, 0.95) 100%);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.2), inset 0 1px 0 rgba(255,255,255,0.5);
    border: 2px solid rgba(212, 175, 55, 0.5);
}

.booking-form label {
    display: block;
    font-size: .875rem;
    font-weight: 500;
    margin-top: 1rem;
    margin-bottom: .35rem;
}

.booking-form label:first-of-type {
    margin-top: 0;
}

.form-selected {
    font-size: .9375rem;
    color: #000000;
    margin: 0 0 1rem;
    min-height: 1.4em;
}

.booking-form input {
    width: 100%;
    padding: .6rem .75rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-bg);
    transition: border-color .2s;
}

.booking-form input:focus {
    outline: none;
    border-color: var(--gold-500);
}

.booking-form button[type="submit"] {
    margin-top: 1.25rem;
}

.form-message {
    margin-top: 1rem;
    font-size: .9375rem;
    min-height: 1.4em;
}

.form-message.success { color: var(--color-free); }
.form-message.error { color: var(--color-booked); }

/* Contact */
.section-contact {
    background: linear-gradient(180deg, rgba(255, 248, 230, 0.6) 0%, transparent 100%);
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), rgba(255, 223, 128, 0.6), rgba(212, 175, 55, 0.4), transparent) 1;
}

.quote-request-page .quote-back-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 1.75rem;
}

.quote-request-page .btn-back-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.9rem 1.65rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1510;
    text-decoration: none;
    background: linear-gradient(165deg, #fffdf8 0%, #f5ecd8 45%, #ebe0c8 100%);
    border: 2px solid rgba(139, 115, 85, 0.55);
    border-radius: var(--radius);
    box-shadow:
        0 4px 14px rgba(139, 115, 85, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.quote-request-page .btn-back-nav:hover {
    transform: translateY(-3px);
    border-color: rgba(201, 168, 108, 0.95);
    box-shadow:
        0 10px 28px rgba(201, 168, 108, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.quote-request-page .btn-back-nav:active {
    transform: translateY(-1px);
}

.quote-request-page .btn-back-nav__icon {
    flex-shrink: 0;
    margin-top: 1px;
}

.contact-block {
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
}

.contact-block p {
    margin: 0 0 .5rem;
    color: #000000;
}

.contact-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.contact-links a {
    color: #000000;
    font-weight: 500;
    text-decoration: none;
}

.contact-links a:hover {
    text-decoration: underline;
}

.contact-form-wrap {
    max-width: 520px;
    margin: 2rem auto 0;
    padding: 1.5rem;
    background: linear-gradient(145deg, rgba(255, 252, 245, 0.98) 0%, rgba(255, 248, 230, 0.95) 100%);
    border-radius: var(--radius);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.2), inset 0 1px 0 rgba(255,255,255,0.5);
    border: 2px solid rgba(212, 175, 55, 0.5);
}

.contact-form label {
    display: block;
    font-size: .875rem;
    font-weight: 500;
    margin-top: 1rem;
    margin-bottom: .35rem;
    color: #000000;
}

.contact-form label:first-of-type {
    margin-top: 0;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: .6rem .75rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    border: 1px solid var(--gold-border);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.8);
    transition: border-color .2s;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold-500);
}

.contact-form button[type="submit"] {
    margin-top: 1.25rem;
}

.contact-form-message {
    margin-top: 1rem;
    font-size: .9375rem;
    min-height: 1.4em;
}

.contact-form-message.success { color: var(--color-free); }
.contact-form-message.error { color: var(--color-booked); }

/* Footer */
.site-footer {
    padding: 1.5rem;
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.6), rgba(255, 223, 128, 0.9), rgba(212, 175, 55, 0.6), transparent) 1;
    background: linear-gradient(180deg, rgba(255, 248, 220, 0.95) 0%, rgba(255, 250, 230, 0.98) 100%);
    box-shadow: 0 -2px 20px rgba(212, 175, 55, 0.15);
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.footer-copy {
    margin: 0;
    font-size: .875rem;
    color: #000000;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 0;
}

.footer-nav a {
    font-size: .875rem;
    color: #000000;
    text-decoration: none;
}

.footer-nav a:hover {
    color: #333333;
}

/* Jogi oldalak (ASZF, Cookie, Adatkezelés) */
.legal-page {
    padding: 3rem 0 4rem;
    min-height: 100vh;
}

.legal-page h1 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    margin: 0 0 1.5rem;
    color: #000000;
}

.legal-content {
    max-width: 720px;
    margin: 0 0 2rem;
}

.legal-content h2 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 2rem 0 .75rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    margin: 0 0 1rem;
    color: #000000;
}

.legal-content em {
    color: #000000;
    font-size: .9375rem;
}

.legal-back {
    margin: 0;
}

.legal-back a {
    color: #000000;
    font-weight: 500;
    text-decoration: none;
}

.legal-back a:hover {
    text-decoration: underline;
}

/* #e3d6b6 fo szin finom arnyalatai az egesz oldalon */
.site-header,
.site-footer {
    border-image: linear-gradient(90deg, transparent, rgba(var(--gold-rgb), 0.6), rgba(var(--gold-light-rgb), 0.9), rgba(var(--gold-rgb), 0.6), transparent) 1;
}

.site-header {
    box-shadow: 0 2px 20px rgba(var(--gold-rgb), 0.2);
}

.site-footer {
    box-shadow: 0 -2px 20px rgba(var(--gold-rgb), 0.15);
}

.section-intro,
.section-about,
.section-what,
.section-pricing,
.section-services,
.section-booking,
.section-contact {
    border-image: linear-gradient(90deg, transparent, rgba(var(--gold-rgb), 0.45), rgba(var(--gold-light-rgb), 0.7), rgba(var(--gold-rgb), 0.45), transparent) 1;
}

.intro-card,
.intro-img,
.dreams-square-item img,
.pricing-card,
.service-card,
.calendar-wrap,
.booking-form-wrap,
.contact-form-wrap,
.site-modal__panel,
.back-to-top {
    border-color: rgba(var(--gold-rgb), 0.5);
}

.intro-card,
.intro-img,
.pricing-card,
.service-card,
.calendar-wrap,
.booking-form-wrap,
.contact-form-wrap {
    box-shadow: 0 6px 25px rgba(var(--gold-rgb), 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-600) 0%, var(--gold-500) 30%, var(--gold-300) 50%, var(--gold-500) 70%, var(--gold-600) 100%);
    box-shadow: 0 4px 15px rgba(var(--gold-rgb), 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(var(--gold-rgb), 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.cal-day.selected,
.cal-day.selected:hover {
    background: linear-gradient(135deg, var(--gold-600) 0%, var(--gold-400) 50%, var(--gold-600) 100%);
}

/* Hatter: kozep tiszta (szin + finom zaj); viragok: .page-floral — veletlenszeru hatasu elforgatas + meret, csak szelen */
html {
    min-height: 100%;
    background-color: #e3d6b6 !important;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 180px 180px;
    background-position: 0 0;
}

.page-floral {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(
        90deg,
        #000 0%,
        #000 16%,
        transparent 22%,
        transparent 78%,
        #000 84%,
        #000 100%
    );
    mask-image: linear-gradient(
        90deg,
        #000 0%,
        #000 16%,
        transparent 22%,
        transparent 78%,
        #000 84%,
        #000 100%
    );
}

.page-floral__bloom {
    position: absolute;
    background: url('flower-accent.svg') center / contain no-repeat;
    opacity: 0.48;
    transform-origin: 50% 50%;
}

/* Bal oldal — kulonbozo meret + forgatas (fix, de veletlenszeru hatasu) */
.page-floral__bloom:nth-child(1) {
    left: -4%;
    top: 4%;
    width: min(210px, 24vw);
    height: min(210px, 24vw);
    transform: rotate(-19deg) scale(0.78);
}

.page-floral__bloom:nth-child(2) {
    left: -1%;
    top: 30%;
    width: min(270px, 30vw);
    height: min(270px, 30vw);
    transform: rotate(14deg) scale(1.12);
}

.page-floral__bloom:nth-child(3) {
    left: -3%;
    top: 54%;
    width: min(185px, 22vw);
    height: min(185px, 22vw);
    transform: rotate(-11deg) scale(0.88);
}

.page-floral__bloom:nth-child(4) {
    left: 0%;
    bottom: 7%;
    top: auto;
    width: min(245px, 27vw);
    height: min(245px, 27vw);
    transform: rotate(22deg) scale(0.96);
}

/* Jobb oldal */
.page-floral__bloom:nth-child(5) {
    right: -4%;
    top: 6%;
    width: min(255px, 28vw);
    height: min(255px, 28vw);
    transform: rotate(9deg) scale(1.06);
}

.page-floral__bloom:nth-child(6) {
    right: -1%;
    top: 32%;
    width: min(195px, 23vw);
    height: min(195px, 23vw);
    transform: rotate(-16deg) scale(0.72);
}

.page-floral__bloom:nth-child(7) {
    right: -3%;
    top: 55%;
    width: min(285px, 31vw);
    height: min(285px, 31vw);
    transform: rotate(7deg) scale(1.18);
}

.page-floral__bloom:nth-child(8) {
    right: 0%;
    bottom: 8%;
    top: auto;
    width: min(225px, 25vw);
    height: min(225px, 25vw);
    transform: rotate(-13deg) scale(0.91);
}

@media (max-width: 600px) {
    .page-floral__bloom {
        opacity: 0.38;
    }

    .page-floral__bloom:nth-child(3),
    .page-floral__bloom:nth-child(7) {
        display: none;
    }
}

body {
    position: relative;
    z-index: 1;
    background-color: transparent !important;
    background-image: none !important;
}

.section-intro,
.section-about,
.section-what,
.section-pricing,
.section-services,
.section-booking,
.section-contact,
.site-header,
.site-footer {
    background: transparent !important;
}

.calendar-wrap,
.booking-form-wrap,
.contact-form-wrap,
.pricing-card,
.service-card,
.site-modal__panel,
.back-to-top {
    background: #e3d6b6 !important;
}

/* Teljes vizualis tema a #e3d6b6 kore hangolva */
:root {
    --color-bg: #e3d6b6;
    --color-surface: #ece2ca;
    --color-text: #4a4335;
    --color-text-muted: #5a5244;
    --color-border: #c9bb98;
    --color-accent: #7a6c52;
    --color-accent-light: #978667;
    --gold-rgb: 227, 214, 182;
    --gold-light-rgb: 243, 236, 220;
    --gold-border: rgba(174, 160, 127, 0.45);
}

.calendar-wrap,
.booking-form-wrap,
.contact-form-wrap,
.pricing-card,
.service-card,
.site-modal__panel,
.back-to-top,
.nav-toggle {
    background-color: #e3d6b6 !important;
    color: var(--color-text) !important;
}

.section,
.site-header,
.site-footer {
    background-color: transparent !important;
    color: var(--color-text) !important;
}

h1, h2, h3, h4, h5, h6,
p, li, span, label,
.footer-copy,
.section-lead,
.intro-lead,
.about-content p,
.package-note,
.pricing-note,
.contact-block p,
.contact-form-message,
.form-message {
    color: var(--color-text) !important;
}

a,
nav a,
.footer-nav a,
.contact-links a,
.legal-back a {
    color: #5d523d !important;
}

nav a:hover,
.footer-nav a:hover,
.contact-links a:hover,
.legal-back a:hover {
    color: #3f372a !important;
}

.intro-card,
.intro-img,
.dreams-square-item img,
.pricing-card,
.service-card,
.calendar-wrap,
.booking-form-wrap,
.contact-form-wrap,
.site-modal__panel,
.back-to-top,
.nav-toggle,
.cal-nav,
.booking-form input,
.contact-form input,
.contact-form textarea {
    border-color: var(--color-border) !important;
}

.intro-card,
.intro-img,
.pricing-card,
.service-card,
.calendar-wrap,
.booking-form-wrap,
.contact-form-wrap,
.site-modal__panel,
.back-to-top,
.nav-toggle {
    box-shadow: 0 6px 22px rgba(122, 108, 82, 0.16) !important;
}

/* Asztali fejléc: a menü linkek ne legyenek kiemelő „dobozban” (csak ≥601px) */
@media (min-width: 601px) {
    .site-header nav.site-nav {
        background: transparent !important;
        background-color: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }
}

.btn-primary {
    background: linear-gradient(135deg, #8c7a5d 0%, #b09f7f 45%, #d7c8a7 50%, #b09f7f 55%, #8c7a5d 100%) !important;
    color: #2f291f !important;
    border: 1px solid #9b8a6b !important;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #7f6f55 0%, #a39375 45%, #cdbd9d 50%, #a39375 55%, #7f6f55 100%) !important;
}

/* Arlista: statikus hatter, semmi csillogó reteg */
.pricing-card {
    background-color: #ece2ca !important;
    background-image: none !important;
    animation: none !important;
}

.pricing-card::before {
    content: none !important;
    display: none !important;
}

.booking-form input,
.contact-form input,
.contact-form textarea,
.cal-nav,
.back-to-top {
    background: #efe6d2 !important;
    color: var(--color-text) !important;
}

/* Naptár: fejléc és jelmagyarázat (kötelező !important a globális span szabály miatt) */
.cal-day-name {
    color: #292524 !important;
}

.calendar-legend {
    color: #292524 !important;
}

/* Naptár cellák: szín + szöveg (a span { color: !important } felülírásához) */
.cal-day.other-month {
    background: #f5f5f4 !important;
    color: #78716c !important;
    border-color: rgba(120, 113, 108, 0.22) !important;
    opacity: 0.72 !important;
}

.cal-day.past {
    background: #f5f5f4 !important;
    color: #78716c !important;
    border-color: rgba(120, 113, 108, 0.28) !important;
}

.cal-day.free {
    background: #bbf7d0 !important;
    color: #14532d !important;
    border-color: rgba(22, 101, 52, 0.38) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45) !important;
}

.cal-day.free:hover {
    background: #86efac !important;
    border-color: rgba(22, 101, 52, 0.55) !important;
}

.cal-day.booked {
    background: #fecaca !important;
    color: #7f1d1d !important;
    border-color: rgba(185, 28, 28, 0.45) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35) !important;
}

.cal-day.disabled {
    background: #e7e5e4 !important;
    color: #57534e !important;
    border-color: rgba(120, 113, 108, 0.4) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
}

.cal-day.selected,
.cal-day.selected:hover {
    background: linear-gradient(135deg, #8d7b5e 0%, #b5a686 50%, #8d7b5e 100%) !important;
    color: #ffffff !important;
    border-color: rgba(74, 60, 42, 0.55) !important;
    box-shadow: 0 2px 8px rgba(139, 115, 85, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
}

/* Modal (foglalás siker) */
.site-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.site-modal.show {
    display: flex;
}

.site-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.site-modal__panel {
    position: relative;
    width: 100%;
    max-width: 520px;
    background: var(--color-surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(212, 175, 55, 0.5);
    padding: 1.25rem 1.25rem 1rem;
    text-align: center;
}

.site-modal__close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: var(--font-sans);
    font-weight: 600;
    padding: 0.25rem 0.5rem;
}

.site-modal__title {
    margin: 0 0 0.5rem;
}

.site-modal__check {
    width: 84px;
    height: 84px;
    margin: 0 auto 0.25rem;
    color: var(--color-free);
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-modal__check svg {
    width: 84px;
    height: 84px;
}

.site-modal__desc {
    margin: 0.5rem 0 0;
    font-size: 1rem;
}

.site-modal__actions {
    margin-top: 1rem;
    display: flex;
    justify-content: flex-end;
}

/* Vissza a tetejére gomb */
.back-to-top {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 10000;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.5);
    background: rgba(255, 248, 220, 0.95);
    backdrop-filter: blur(10px);
    color: #000000;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transition: opacity .2s, transform .2s, background .2s;
    opacity: 0;
    transform: translateY(10px);
    font-size: 1.2rem;
    pointer-events: none;
}

.back-to-top.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-top:hover {
    background: rgba(255, 248, 220, 1);
}

.back-to-top:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.35), 0 10px 30px rgba(0, 0, 0, 0.12);
}

@media (max-width: 600px) {
    .back-to-top {
        right: 1rem;
        bottom: 1rem;
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
}
