/* ALAP BEÁLLÍTÁSOK */

/* style.css eleje */
html {
    scroll-behavior: smooth; /* <-- EZ A VARÁZSSZÓ */
}

:root {
    --primary-color: #007A74; /* A megadott HEX kód */
    --text-dark: #333333;
    --text-grey: #666666;
    --bg-light: #f9f9f9;
    --white: #ffffff;
    --font-main: 'Roboto', sans-serif;
}

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

body {
    font-family: var(--font-main);
    font-weight: 300; /* Light */
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

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

/* FEJLÉC */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
}

.header-content {
    display: flex;
    justify-content: space-between; /* A két széle közé tolja az elemeket */
    align-items: center; /* Függőlegesen középre igazít */
}

/* Ez biztosítja, hogy a menü jobbra tolódjon a logótól */
nav {
    margin-left: auto; /* A menüt eltolja a logótól jobbra */
    margin-right: 20px; /* Kis hely a menü és a nyelvváltó között */
}

/* Ha esetleg korábban nem volt beállítva, ez fontos a listához */
.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
}

.logo {
    height: 60px; /* Logó méretének beállítása */
    width: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 400;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.lang-switch button {
    background: none;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 4px;
    font-family: var(--font-main);
    transition: all 0.3s;
}

.lang-switch button:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* HERO SZEKCIÓ (A referencia kép stílusa) */
.hero {
    /* Csak a fájlnevet írd be idézőjelek közé */
    background-image: url('hero-hatter.png'); 
    
    background-size: cover;
    background-position: center;
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
}

 /* style.css - Nagyobb kör + belső térköz a logónak */

.hero-floating-btn {
    position: absolute;
    top: 30px;
    right: 50px;
    z-index: 10;
    
    /* MÉG NAGYOBB MÉRET */
    width: 220px;
    height: 220px;
    
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    background-color: white; /* Fehér háttér a körnek */
    
    /* EZ A TRÜKK: 
       Adunk neki egy belső keretet, így a kép beljebb kerül, 
       és a kör széle nem vágja le a buborék szárát. */
    padding: 25px; 
}

.hero-floating-btn img {
    width: 100%;
    height: 100%;
    /* Ez biztosítja, hogy a teljes kép látszódjon a kereten belül */
    object-fit: contain; 
}

.hero-floating-btn:hover {
    transform: scale(1.05);
}

/* MOBIL NÉZET */
@media (max-width: 768px) {
    .hero-floating-btn {
        width: 140px; /* Mobilon is kicsit nagyobb */
        height: 140px;
        padding: 15px; /* Kisebb padding mobilon */
        top: 20px;
        right: 20px;
    }
    
    .hero-text-content {
        padding-top: 40px; 
    }
}

/* Zöldes réteg a képen, mint a referencián */
.hero-overlay {
    background: linear-gradient(90deg, rgba(0,122,116,0.9) 0%, rgba(0,122,116,0.4) 100%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-title {
    color: var(--white);
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.hero-subtitle {
    color: var(--white);
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-color);
    padding: 10px 25px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 2px;
    transition: background 0.3s;
}

.btn-primary:hover {
    background-color: #f0f0f0;
}

/* TARTALOM */
.content-section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

h2 {
    color: var(--primary-color);
    font-weight: 300;
    font-size: 2rem;
    margin-bottom: 20px;
}

p {
    color: var(--text-grey);
    margin-bottom: 15px;
}

/* style.css - ÚJ STÍLUSOK A RÓLUNK RÉSZHEZ */

.about-intro-block {
    max-width: 900px;
    margin: 0 auto 50px auto; /* Középre igazítva, alul nagy térközzel */
    text-align: justify; /* Sorkizárt szöveg az eleganciáért */
}

.about-slogan {
    text-align: center;
    font-weight: 700;
    font-style: italic;
    color: var(--primary-color);
    margin-top: 20px;
    font-size: 1.2rem;
}

/* A 3 kártya rácsos elrendezése */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Automatikus oszlopok */
    gap: 30px; /* Távolság a kártyák között */
}

.value-card {
    background: #f4f8f8; /* Nagyon halvány zöldes-szürke háttér */
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color); /* Zöld csík a bal oldalon */
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px); /* Kicsit "felemelkedik" ha ráviszed az egeret */
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.value-card h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.value-card h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 700;
}

/* LÁBLÉC */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
    margin-top: auto;
}

.footer-slogan {
    font-weight: 700;
    margin-top: 10px;
    letter-spacing: 1px;
}

/* style.css - A LÁBLÉC (footer) részhez add hozzá ezt: */

footer p {
    color: var(--white); /* Ez biztosítja, hogy a szöveg fehér legyen a zöldön */
    opacity: 0.9; /* Kicsit lágyítjuk, hogy elegánsabb legyen */
}

/* Ha esetleg link is kerülne oda később */
footer a {
    color: var(--white);
    text-decoration: none;
}

/* MOBIL NÉZET (Responsive) */
.hamburger { display: none; }

@media (max-width: 900px) {
    .nav-links {
        display: none; /* Mobilon egyelőre elrejtjük egyszerűsítés miatt */
    }
    .hero-title {
        font-size: 2rem;
    }
}
/* style.css - ÚJ logó stílusok */

/* A logó konténere: link, ezért levesszük az aláhúzást, és oszlopba rendezzük */
.text-logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    /* Az eredeti logón a 'team' szó jobb oldalon volt a főszöveg alatt.
       Ha középre akarod, használd az 'align-items: center;' sort helyette. */
    align-items: flex-end; 
    line-height: 1; /* Szűk sorköz */
}

/* A fő szöveg: e-Xpert-e */
.logo-main {
    font-family: var(--font-main);
    color: var(--primary-color); /* A céges ZÖLD szín */
    font-size: 2.5rem; /* Szép nagy méret */
    font-weight: 300; /* Roboto Light */
    letter-spacing: -1px; /* Kicsit szűkebb betűköz az elegancia miatt */
}

/* Az alsó szöveg: team */
.logo-sub {
    font-family: var(--font-main);
    color: var(--primary-color); /* Szintén ZÖLD */
    font-size: 1.2rem; /* Kisebb méret */
    font-weight: 400; /* Normál vastagság */
    margin-top: -5px; /* Kicsit feljebb húzzuk a főszöveg alá */
}

/* style.css - ÚJ LISTA STÍLUSOK */

.service-intro {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-list {
    list-style: none; /* Alap pöttyök eltüntetése */
    padding-left: 0;
}

.service-list li {
    margin-bottom: 15px;
    padding-left: 20px; /* Hely a saját jelölőnek */
    position: relative;
    font-size: 0.95rem;
    color: var(--text-grey);
}

/* Egyedi zöld pötty a lista elemek elé */
.service-list li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: -2px;
}

.service-list li strong {
    color: var(--primary-color); /* A kiemelések legyenek zöldek */
}

/* style.css - ÚJ VIRTUAL NB STÍLUSOK */

.vnb-container {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    margin-top: 30px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    scroll-margin-top: 100px; /* Fontos a fejléc miatt! */
}

.vnb-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 20px;
}

.vnb-logo-small {
    width: 80px;
    height: auto;
}

.vnb-subtitle {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 500;
    font-style: italic;
}

.vnb-block {
    margin-bottom: 30px;
}

.vnb-block h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.bg-light {
    background-color: #f9fcfc;
    padding: 20px;
    border-radius: 6px;
}

.highlight-border {
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
}

.vnb-questions {
    list-style: none;
    font-style: italic;
    color: var(--text-dark);
}

.vnb-questions li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.vnb-questions li::before {
    content: "?";
    position: absolute;
    left: 0;
    font-weight: bold;
    color: var(--primary-color);
}

.vnb-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media (max-width: 768px) {
    .vnb-grid-2 {
        grid-template-columns: 1fr;
    }
    .vnb-header {
        flex-direction: column;
        text-align: center;
    }
}

/* style.css - KAPCSOLAT ÉS CSAPAT STÍLUSOK */

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.team-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

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

.team-img-container {
    width: 180px;
    height: 180px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    padding: 3px; /* Kis fehér sáv a keret és a kép között */
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Kitölti a kört torzulás nélkül */
    object-position: top center; /* Az arcra fókuszál */
    border-radius: 50%;
}

.team-role {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.team-bio {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.team-responsibilities {
    text-align: left;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.team-responsibilities ul {
    margin-top: 10px;
    padding-left: 20px;
    list-style-type: disc;
}

.linkedin-btn {
    display: inline-block;
    padding: 8px 20px;
    background-color: #0077b5; /* LinkedIn kék */
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.linkedin-btn:hover {
    background-color: #005582;
}

/* Elérhetőségek blokk */
.contact-info-section {
    background-color: #f4f8f8;
    padding: 40px;
    border-radius: 8px;
    border-left: 5px solid var(--primary-color);
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

.contact-item a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Ezt másold a style.css legvégére */
#email-info {
    scroll-margin-top: 120px; /* Helyet hagy a fejlécnek, így nem takarja ki */
}

/* DOKUMENTUMOK SZEKCIÓ */

.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.download-card {
    display: flex;
    align-items: center;
    background-color: #f4f8f8; /* A Rólunk rész kártyáinak háttérszíne */
    padding: 25px;
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color); /* A zöld csík */
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    background-color: #fff;
}

.doc-icon {
    font-size: 2.5rem;
    margin-right: 20px;
    color: var(--text-grey);
}

.doc-info {
    flex-grow: 1;
}

.doc-info h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
    font-weight: 500;
}

.doc-type {
    font-size: 0.85rem;
    color: var(--text-grey);
    font-style: italic;
}

.download-arrow {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
    margin-left: 15px;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.download-card:hover .download-arrow {
    opacity: 1;
}

/* Mobil nézet igazítás */
@media (max-width: 500px) {
    .download-card {
        flex-direction: column;
        text-align: center;
    }
    .doc-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .download-arrow {
        margin-left: 0;
        margin-top: 15px;
        transform: rotate(90deg); /* Lefelé mutasson */
    }
}