/* ==========================================================================
   Zen Motion - Alapstílusok (Bővített & Optimalizált)
   ========================================================================== */

:root {
    --bg-dark: #121212;
    --text-light: #e0e0e0;
    --accent-gold: #c5a059; /* Finom, prémium akcentus */
    --font-main: 'Montserrat', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-main);
    line-height: 1.8;
    font-size: 16px;
    overflow-x: hidden;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* ================= HEADER & DINAMIKUS NAVIGÁCIÓ ================= */
.site-header { 
    padding: 20px 0; 
    position: sticky; 
    top: 0; 
    background: rgba(18,18,18,0.95); 
    z-index: 1000; 
    backdrop-filter: blur(8px); 
    border-bottom: 1px solid rgba(197, 160, 89, 0.1); 
    transition: all 0.4s ease;
}

.nav-container { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
    position: relative;
}

.logo a { 
    font-family: var(--font-heading); 
    font-size: 24px; 
    color: #fff; 
    text-decoration: none; 
    font-weight: 700; 
}
.logo span { color: var(--accent-gold); }

/* Alapértelmezett (Oldal tetején): Asztali nézet sorban egymás mellett */
.main-nav {
    display: block;
    position: static;
    background: transparent;
    border: none;
    max-height: none;
    overflow: visible;
    transition: all 0.4s ease;
}

.main-nav ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
    transition: all 0.4s ease;
}

.main-nav ul li {
    margin: 0;
}

.main-nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
    white-space: nowrap;
}

.main-nav ul li a:hover {
    color: var(--accent-gold);
}

/* Hamburger gomb alapból rejtve/összecsukva az oldal tetején */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 0;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: all 0.4s ease;
}
.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: left center;
}

/* Hamburger animáció X-szé */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(2px, -2px);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(10px);
}
.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(2px, 2px);
}

/* HA LEFELÉ GÖRDÜLÜNK (.scrolled class a header-en): */
.site-header.scrolled .menu-toggle {
    width: 30px;
    opacity: 1;
    visibility: visible;
}

.site-header.scrolled .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(18, 18, 18, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease;
}

.site-header.scrolled .main-nav.active {
    max-height: 450px;
}

.site-header.scrolled .main-nav ul {
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 0;
}

.site-header.scrolled .main-nav ul li {
    margin: 12px 0;
}

.site-header.scrolled .main-nav ul li a {
    font-size: 15px;
}

/* ================= HERO SZEKCIÓ ================= */
.hero-section { 
    height: 90vh; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)), url('images/IMG_2160.WebP') no-repeat center center/cover; 
    padding: 0 20px;
}
.hero-content h1 { font-family: var(--font-heading); font-size: clamp(2.2rem, 5vw, 3rem); margin-bottom: 20px; }
.hero-subtitle { font-size: clamp(1rem, 2vw, 1.2rem); margin-bottom: 40px; color: var(--accent-gold); letter-spacing: 1px; }
.btn-primary { padding: 15px 30px; background: transparent; border: 1px solid var(--accent-gold); color: #fff; text-decoration: none; transition: 0.4s; display: inline-block; cursor: pointer; border-radius: 4px; }
.btn-primary:hover { background: var(--accent-gold); color: #000; }

/* ================= SZÖVEGES RÉSZEK & ACCORDION ================= */
.about-section { padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: clamp(1.8rem, 4vw, 2.2rem); color: var(--accent-gold); margin-bottom: 10px; font-family: var(--font-heading); }
.story-wrapper, .path-section-container { max-width: 800px; margin: 0 auto; }
.story-highlight, .cancer-box, .integration-box { padding: 25px; border-left: 4px solid var(--accent-gold); background: #1a1a1a; margin: 25px 0; border-radius: 0 6px 6px 0; }
.lead-text { font-size: 1.2rem; font-style: italic; margin-bottom: 25px; }
.final-quote { font-size: 1.4rem; text-align: center; font-style: italic; color: #fff; margin: 40px 0 10px 0; }
.brand-signoff { text-align: center; font-size: 1.1rem; color: var(--accent-gold); }

/* Lenyíló doboz stílus (Accordion) */
.story-accordion {
    background: #181818;
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 6px;
    margin: 25px 0;
    overflow: hidden;
    transition: border-color 0.3s ease;
}
.story-accordion:hover {
    border-color: var(--accent-gold);
}
.story-accordion summary {
    padding: 18px 20px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--accent-gold);
    cursor: pointer;
    user-select: none;
    outline: none;
    background: #1e1e1e;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.story-accordion summary::-webkit-details-marker {
    display: none;
}
.story-accordion summary::after {
    content: '+';
    font-size: 1.4rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 10px;
}
.story-accordion[open] summary::after {
    transform: rotate(45deg);
}
.accordion-content {
    padding: 20px;
    background: #151515;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* ================= MI A ZEN MOTION BLOKK ================= */
.zen-motion-section { padding: 80px 0; background: #161616; }
.zen-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.zen-left h2 { font-size: 2.2rem; color: var(--accent-gold); margin-bottom: 20px; font-family: var(--font-heading); }
.zen-left p { margin-bottom: 15px; color: var(--text-light); }
.zen-right { display: flex; flex-direction: column; gap: 20px; }
.zen-card { background: #1a1a1a; border-left: 3px solid var(--accent-gold); padding: 20px; border-radius: 0 4px 4px 0; }
.zen-card h3 { text-transform: uppercase; font-size: 1.1rem; color: #fff; margin-bottom: 5px; letter-spacing: 1px; }
.zen-card p { font-size: 0.95rem; color: #aaa; margin: 0; }

/* ================= RYAVA SZEKCIÓ ================= */
.ryava-section { padding: 80px 0; background: #121212; }
.ryava-images-grid { display: flex; gap: 20px; margin-bottom: 40px; justify-content: center; flex-wrap: wrap; }
.ryava-img-box { flex: 1; min-width: 280px; max-width: 550px; }
.ryava-img-box img { width: 100%; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.5); display: block; }
.ryava-content-wrapper { background: #1a1a1a; padding: 30px; border-radius: 8px; max-width: 900px; margin: 0 auto; }
.ryava-principles { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 15px; margin: 30px 0; text-align: center; }
.ryava-principle-card { flex: 1; min-width: 130px; background: rgba(212,175,55,0.1); padding: 15px; border-radius: 6px; }
.ryava-principle-card strong { color: var(--accent-gold); display: block; font-size: 1.05rem; }
.ryava-principle-card span { font-size: 0.9rem; }
.ryava-principle-card small { color: #aaa; display: block; margin-top: 4px; }

/* ================= SZÖVEGKÖZTI KÉPEK ================= */
.content-image {
    margin: 30px 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(197, 160, 89, 0.3);
    background: #000;
}
.content-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    cursor: pointer;
    transition: transform 0.4s ease;
}
.content-image img:hover {
    transform: scale(1.02);
}

/* ================= GALÉRIA GRID ================= */
.gallery-section { padding: 80px 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 15px; }
.gallery-item { overflow: hidden; height: 250px; border-radius: 4px; background: #000; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; cursor: pointer; display: block; }
.gallery-item img:hover { transform: scale(1.05); }

/* ================= KAPCSOLAT SZEKCIÓ ================= */
.contact-section {
    padding: 80px 0;
    background: #151515;
    border-top: 1px solid rgba(197, 160, 89, 0.1);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-info-wrapper {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-gold);
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
}

.contact-info-wrapper h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.contact-info-wrapper p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.contact-details {
    list-style: none;
    margin-bottom: 25px;
}

.contact-details li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    word-break: break-word;
}

.contact-details li strong {
    color: #fff;
    min-width: 85px;
    flex-shrink: 0;
}

.contact-details li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details li a:hover {
    color: var(--accent-gold);
}

/* Térkép konténer */
.map-container {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(197, 160, 89, 0.3);
    background: #000;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(20%) contrast(110%) brightness(90%);
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: grayscale(0%) contrast(100%) brightness(100%);
}

/* ================= LIGHTBOX MODÁLIS ABLAK ================= */
#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    cursor: pointer;
    padding: 20px;
}
#lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    cursor: default;
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    color: #fff;
    font-size: 35px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 2001;
}
.lightbox-close:hover {
    color: var(--accent-gold);
}

/* ================= FOOTER & SOCIAL KÁRTYÁK ================= */
.site-footer { padding: 50px 0 25px 0; background: #0a0a0a; text-align: center; }
.footer-brand { margin-bottom: 30px; }
.footer-brand h3 { font-family: var(--font-heading); font-size: 1.6rem; color: var(--accent-gold); margin-bottom: 10px; }
.footer-brand p { color: #aaa; font-size: 0.95rem; }

.social-container { margin-top: 25px; }
.social-container h4 { margin-bottom: 15px; font-size: 1.05rem; color: var(--text-light); }
.social-cards { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; max-width: 700px; margin: 0 auto; padding: 0 15px; }

.social-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 12px 20px;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}
.social-card:hover {
    border-color: var(--accent-gold);
    background: #222;
    transform: translateY(-2px);
}
.social-icon {
    width: 20px;
    height: 20px;
    fill: var(--accent-gold);
    flex-shrink: 0;
}

.footer-bottom { margin-top: 40px; font-size: 0.85rem; opacity: 0.6; padding: 0 15px; }
.footer-bottom a { color: var(--accent-gold); text-decoration: none; }

/* ================= RESPONSIVE / LAPTOP & MOBIL NÉZET (<= 1366px) ================= */
@media (max-width: 1366px) {
    body { font-size: 15px; }
    
    .menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(18, 18, 18, 0.98);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(197, 160, 89, 0.2);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
    }

    .main-nav.active {
        max-height: 450px;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
    }

    .main-nav ul li {
        margin: 12px 0;
    }

    .main-nav ul li a {
        font-size: 15px;
    }

    /* Tipográfia és grid igazítások erre a méretre is */
    .hero-content h1 { font-size: 2.1rem; }
    .hero-subtitle { font-size: 1rem; margin-bottom: 30px; }
    
    .section-title h2 { font-size: 1.8rem; }
    .zen-grid { grid-template-columns: 1fr; gap: 30px; }
    .ryava-principles { flex-direction: column; }
    .gallery-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 30px; }
    
    .map-container { height: 300px; }
    
    .contact-info-wrapper { padding: 25px 20px; }
    .ryava-content-wrapper { padding: 20px; }
    
    .social-cards { flex-direction: column; align-items: stretch; }
    .social-card { justify-content: center; }
}


/* Biztosítjuk, hogy semmi se lógjon ki balra */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav ul {
    list-style: none;
}
/* A logó képének letiltása a nagyítóból / lightboxból */
img.no-lightbox {
    pointer-events: auto; /* A kattintás (és így a felgörgetés) megmarad */
}