/*
Theme Name: Tudatosság
Author: Horizon Marketing
Version: 2.1
*/

/* =========================================
   PRÉMIUM SZÍNPALETTA ÉS VÁLTOZÓK
========================================= */
:root {
    --bg-main: #FCFBF9;
    --bg-sec: #F3F1EB;
    --text-main: #363636;
    --text-muted: #666666;
    --accent: #A8957A;
    --accent-hover: #8C7B61;
    --white: #FFFFFF;
    --border: #E5E1D8;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.7;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    margin-top: 0;
    color: var(--text-main);
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 30px;
}

/* =========================================
   GOMBOK
========================================= */
.cta-button, .ebook-btn {
    background-color: var(--accent);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.cta-button:hover, .ebook-btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(168, 149, 122, 0.2);
}
/* =========================================
   GÖRGETÉST JELZŐ SÁV
========================================= */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%; /* Alapértelmezetten 0, a JS fogja növelni */
    height: 4px; /* A sáv vastagsága (finom, elegáns) */
    background-color: var(--accent); /* A Webshop gomb arany/bronz színe */
    z-index: 1005; /* Nagyon magas érték, hogy biztosan a menüsáv (1000) felett legyen */
    transition: width 0.1s ease-out; /* Hogy ne ugráljon, hanem simán kövesse a görgetést */
}

/* =========================================
   FEJLÉC (HEADER)
========================================= */
.site-header {
    background-color: var(--bg-main);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    max-width: 1140px;
    margin: 0 auto;
}

.logo-link { display: flex; align-items: center; }

.site-logo {
    max-height: 45px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.site-logo:hover { transform: scale(1.02); }
.site-branding { min-width: 150px; }

.main-navigation {
    display: flex;
    align-items: center;
    flex-grow: 1;
    justify-content: center;
}

.nav-menu {
    display: flex;
    gap: 35px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-menu a:hover, 
.nav-menu li.current-menu-item a {
    color: var(--accent);
}

.header-actions {
    min-width: 150px;
    text-align: right;
}

.mobile-cta { display: none; }

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.hamburger .bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-main);
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
    position: absolute;
    left: 0;
}

.hamburger .bar:nth-child(1) { top: 0; }
.hamburger .bar:nth-child(2) { top: 10px; }
.hamburger .bar:nth-child(3) { top: 20px; }

.hamburger.is-active .bar:nth-child(1) { top: 10px; transform: rotate(45deg); }
.hamburger.is-active .bar:nth-child(2) { opacity: 0; }
.hamburger.is-active .bar:nth-child(3) { top: 10px; transform: rotate(-45deg); }

/* =========================================
   FŐOLDAL: BEMUTATKOZÓ SZEKCIÓ
========================================= */
.hero-section { padding: 80px 0; }
.hero-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 60px;
    align-items: center;
}
.hero-media { display: flex; flex-direction: column; align-items: center; gap: 20px; }

/* =========================================
   PRÉMIUM VIDEÓ KERET & JAVÍTÁS
========================================= */
.video-wrapper.shorts-video {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 9 / 16;
    border-radius: 24px;
    background-color: var(--white);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06), 0 0 0 1px var(--accent), 0 0 0 6px rgba(168, 149, 122, 0.08);
    position: relative;
}

.video-wrapper.shorts-video iframe {
    position: absolute; top: 12px; left: 12px; width: calc(100% - 24px); height: calc(100% - 24px);
    border-radius: 14px; border: none; background-color: #000;
}

/* JAVÍTOTT HAGYOMÁNYOS VIDEÓ: Itt volt a hiányzó pozicionálás! */
.video-wrapper:not(.shorts-video) {
    position: relative; /* EZ TARTJA A HELYÉN! */
    width: 100%;
    aspect-ratio: 16 / 9; 
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    background-color: #000;
    overflow: hidden;
}

.video-wrapper:not(.shorts-video) iframe {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none;
}

.laci-image { max-width: 200px; border-radius: 50%; box-shadow: 0 10px 30px rgba(0,0,0,0.05); object-fit: cover; }
.laci-image[alt]:empty { display: none; }

.hero-content h2 { font-size: 2.5rem; font-weight: 700; margin-bottom: 25px; letter-spacing: -0.5px; }
.hero-content p { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 20px; }

/* =========================================
   FŐOLDAL: EBOOK SZEKCIÓ
========================================= */
.ebooks-section { padding: 80px 0; background-color: var(--bg-sec); border-top: 1px solid var(--border); }
.section-title { text-align: center; font-size: 2rem; margin-bottom: 50px; }
.ebooks-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 30px; }
.ebook-card { background-color: var(--white); padding: 30px 25px; border-radius: 8px; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.03); transition: transform 0.3s ease, box-shadow 0.3s ease; display: flex; flex-direction: column; }
.ebook-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(0,0,0,0.08); }
.ebook-img { width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 4px; margin-bottom: 20px; }
.ebook-card h4 { margin: 0 0 15px 0; font-size: 1.15rem; line-height: 1.4; }
.ebook-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 25px; flex-grow: 1; }
.ebook-btn { width: 100%; box-sizing: border-box; }

/* =========================================
   FOOTER (LÁBLÉC)
========================================= */
.site-footer { background-color: var(--accent); color: var(--white); padding-top: 60px; }
.site-footer .container { max-width: 1000px; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-bottom: 60px; }
.footer-col { display: flex; flex-direction: column; align-items: flex-start; }
.footer-title { font-size: 1.15rem; font-weight: 600; color: var(--white); margin-bottom: 25px; position: relative; display: inline-block; padding-bottom: 8px; }
.footer-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 1px; background-color: rgba(255, 255, 255, 0.6); }
.footer-col p { margin: 0 0 15px 0; color: rgba(255, 255, 255, 0.9); font-size: 0.95rem; font-weight: 300; letter-spacing: 0.5px; }
.footer-pill-btn { background-color: var(--white); color: var(--accent); padding: 10px 24px; border-radius: 30px; text-decoration: none; font-size: 0.9rem; font-weight: 500; margin-bottom: 12px; transition: transform 0.3s ease, box-shadow 0.3s ease; display: inline-block; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.footer-pill-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 15px rgba(0,0,0,0.1); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.2); padding: 25px 0; text-align: center; font-size: 0.85rem; color: rgba(255, 255, 255, 0.8); font-weight: 300; }
.footer-bottom p { margin: 0; }
.footer-bottom a { color: var(--white); text-decoration: none; }
.horizon-link { font-weight: 500; border-bottom: 1px solid var(--white); padding-bottom: 2px; }
/* Lábléc telefon és e-mail linkek */
.footer-phone-link,
.footer-email-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.footer-phone-link:hover,
.footer-email-link:hover {
    opacity: 0.8; /* Finom halványodás kattintás előtt */
}
/* =========================================
   PODCAST OLDAL STÍLUSOK
========================================= */
.podcast-hero { padding: 80px 0 60px 0; background-color: var(--bg-main); }
.podcast-hero-header { text-align: center; max-width: 800px; margin: 0 auto 60px auto; }
.podcast-title { font-size: 3rem; font-weight: 700; color: var(--text-main); margin-bottom: 15px; letter-spacing: -1px; }
.podcast-subtitle { font-size: 1.25rem; color: var(--accent); font-family: var(--font-heading); font-weight: 500; }
.podcast-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.podcast-info-card { background-color: var(--white); padding: 40px 30px; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); border: 1px solid var(--border); transition: transform 0.3s ease; }
.podcast-info-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.06); }
.podcast-info-card h3 { font-size: 1.2rem; color: var(--text-main); margin-bottom: 20px; padding-bottom: 15px; border-bottom: 2px solid var(--bg-sec); }
.podcast-info-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }
.podcast-info-card.accent-card { background-color: var(--accent); border-color: var(--accent); }
.podcast-info-card.accent-card h3, .podcast-info-card.accent-card p { color: var(--white); }
.podcast-info-card.accent-card h3 { border-bottom-color: rgba(255, 255, 255, 0.2); }
/* Kinek szól lista formázása */
.podcast-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.podcast-list li {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7; /* Most már tökéletesen megegyezik a többi kártya sorközével */
    margin-bottom: 15px;
    padding-left: 18px; /* Távolság a ponttól */
    position: relative;
}

.podcast-list li::before {
    content: '•'; /* Kötőjel helyett elegáns pont (bullet) */
    color: var(--accent);
    position: absolute;
    left: 0;
    top: -2px; /* Kicsit feljebb húzzuk, hogy optikailag középen legyen */
    font-size: 1.2rem; /* Kicsit nagyobb, jól látható pont */
}

/* Új: Legfrissebb adás */
.podcast-latest {
    padding: 0 0 60px 0;
    background-color: var(--bg-main);
}
.latest-video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    background-color: var(--white);
    padding: 10px;
}

/* Korábbi videók szekció */
.podcast-videos { padding: 80px 0; background-color: var(--bg-sec); }
.videos-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }

/* =========================================
   MOBIL NÉZET
========================================= */
@media (max-width: 768px) {
    .desktop-cta { display: none; }
    
    .header-actions {
        min-width: unset; display: flex; justify-content: flex-end; flex-grow: 1;
    }
    .hamburger { display: block; margin-left: auto; }
       
    .main-navigation {
        position: absolute; top: 100%; left: 0; width: 100%; background-color: var(--bg-main); 
        border-bottom: 1px solid var(--border); max-height: 0; overflow: hidden; 
        transition: max-height 0.4s ease-in-out; z-index: 999;
    }
    .main-navigation.is-open { max-height: 500px; }
    .nav-menu { flex-direction: column; gap: 0; }
    .nav-menu li { text-align: center; border-bottom: 1px solid var(--border); }
    .nav-menu a { display: block; padding: 15px; }
    .mobile-cta { display: block; text-align: center; padding: 20px; }

    .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero-media { margin-bottom: 20px; }
    .hero-content h2 { font-size: 2rem; }
    
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .footer-col { align-items: center; }
    
    .podcast-title { font-size: 2.2rem; }
    .podcast-info-grid { grid-template-columns: 1fr; gap: 20px; }
    .videos-grid { grid-template-columns: 1fr; gap: 30px; }
}