/* --- SZÍNEK ÉS VÁLTOZÓK A PALETTÁBÓL (DARK MODE) --- */
:root {
    /* Hátterek */
    --bg-main: #0a1833; /* Az app fő sötétkék háttere */
    --bg-card: #142340; /* Egy picivel világosabb kék a kártyáknak */
    
    /* Szöveg színek */
    --text-light: #effffc; /* Nagyon világos menta/fehér a főszövegnek */
    --text-muted: #effffc; /* Halványabb szürke/kék az alcímeknek */
    
    /* Fő színek (Márka) */
    --main-green: #0EFABE; /* Fő zöld/türkiz szín */
    --accent-pink-strong: #fb0081; /* Az appban látható erős "Analyze" gomb színe */
    --accent-pink-soft: #ffe2ee; /* Lágy rózsaszín akcentus */
    --accent-purple: #4e0b3e; /* Sötét lila */
}

/* --- NAVIGÁCIÓ ÉS LOGÓ --- */
.navbar {
    background-color: var(--bg-main);
    padding: 15px 0;
    border-bottom: 1px solid var(--bg-card); 
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 20px;
}

.nav-logo-icon {
    height: 24px;
    width: auto;
    border-radius: 4px;
}

.nav-logo-text {
    height: 24px;
    width: auto;
}

.logo-spin {
    color: var(--accent-pink-strong);
}

.logo-vahti {
    color: var(--main-green);
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-light);
    line-height: 1.6;
}

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

/* --- GOMBOK --- */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--accent-pink-strong);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--accent-purple);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--main-green);
}

.btn-secondary:hover {
    background-color: rgba(95, 164, 161, 0.1);
    transform: translateY(-2px);
}

.btn-tertiary {
    background-color: var(--main-green);
    color: var(--bg-main); 
}

.btn-tertiary:hover {
    background-color: var(--text-light);
    transform: translateY(-2px);
}

/* --- HERO SZEKCIÓ --- */
.hero {
    padding: 100px 0;
    text-align: center;
    background-color: var(--bg-main);
    border-bottom: 5px solid var(--accent-purple);
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p.subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.hero p.safety-note {
    font-size: 0.9rem;
    color: var(--main-green);
    font-weight: 600;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* --- ÁLTALÁNOS SZEKCIÓ STÍLUSOK --- */
section {
    padding: 80px 0;
}

.bg-light {
    background-color: #0d1e3d;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.section-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 50px auto;
}

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

/* --- LÉPÉSEK (STEPS) KÁRTYÁI --- */
.step-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.step-card {
    background-color: var(--bg-card);
    border-radius: 12px;
    padding: 30px 20px;
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    border-top: 4px solid var(--accent-pink-strong);
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-number {
    background-color: var(--main-green);
    color: var(--bg-main);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 20px auto;
}

.step-card h3 {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* --- CÉLCSOPORT (Audience) KÁRTYÁK --- */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.audience-card {
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: 12px;
    border-left: 5px solid var(--main-green);
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.audience-card h3 {
    color: var(--text-light);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.audience-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- ELŐNYÖK (Benefits) LISTA --- */
.benefit-list {
    list-style-type: none;
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
}

.benefit-list li {
    background-color: var(--bg-card);
    margin-bottom: 15px;
    padding: 20px 25px;
    border-radius: 8px;
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 600;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.benefit-list li::before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: var(--accent-pink-strong);
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
}

/* --- VIDEÓ DEMÓK --- */
.video-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.video-card {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background-color: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    border: 1px solid var(--accent-purple);
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: var(--bg-main);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--main-green);
    font-weight: bold;
    border-bottom: 2px solid var(--accent-purple);
}

.video-caption {
    padding: 20px;
}

.video-caption p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* --- HIBATÍPUSOK (Fallacies) --- */
.fallacy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.fallacy-card {
    background-color: var(--bg-main);
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid var(--accent-pink-soft);
    color: var(--text-light);
    font-size: 0.95rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.fallacy-card strong {
    color: var(--accent-pink-soft);
    display: block;
    margin-bottom: 5px;
    font-size: 1.05rem;
}

.fallacy-note {
    text-align: center;
    color: var(--main-green);
    font-style: italic;
    font-weight: 600;
    margin-top: 20px;
}

/* --- CSAPAT (Team) --- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.team-card {
    background-color: var(--bg-card);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    border-bottom: 4px solid var(--main-green);
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.team-card h3 {
    color: var(--text-light);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.team-role {
    color: var(--accent-pink-strong);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.team-focus {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* --- FOOTER --- */
.site-footer {
    padding: 80px 0 40px 0;
}
