/* --- ALAP BEÁLLÍTÁSOK (Reset) --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Serif Pro', serif;
    font-weight: 900;
    background-color: #f9f9f9;
    color: #333333;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .btn, nav, label, input, .toggle-link, .promo-text, .toggle-box, footer {
    font-family: 'Source Sans Pro', sans-serif;
}

/* --- FEJLÉC ÉS MENÜ --- */
header {
    background-color: #ff9800;
    color: white;
    padding: 5px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Source Serif Pro', serif;
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    color: white;
    cursor: pointer;
    letter-spacing: 1px;
}

.logo img {
    height: 100px; 
    vertical-align: middle;
    margin-right: 12px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background 0.3s;
}

nav a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.nav-login {
    margin-left: 15px;
    background-color: rgba(255, 255, 255, 0.15); /* A login oldalról átemelt, enyhe kiemelés */
}

/* --- FŐOLDAL (INDEX) STÍLUSOK --- */
.hero-banner {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    display: block;
}

.hero-section {
    text-align: center;
    padding: 60px 20px 80px 20px;
    background-color: #f9f9f9;
}

.hero-section h1 {
    font-family: 'Source Serif Pro', serif;
    font-size: 3rem;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 900;
}

.hero-section p {
    font-size: 1.3rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 30px auto;
    line-height: 1.8; 
    font-weight: 400; /* Szövegtörzs ne legyen vastag */
}

.btn {
    display: inline-block;
    background-color: #ff9800;
    color: white;
    padding: 12px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    transition: background 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    width: auto;
}

.btn.full-width {
    display: block;
    width: 100%;
    margin-top: 10px;
}

.btn:hover {
    background-color: #e68900;
}

.products-section {
    padding: 60px 20px;
    text-align: center;
}

.products-section h2 {
    font-family: 'Source Serif Pro', serif;
    font-weight: 900;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

.product-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 8px;
    display: inline-block;
    width: 300px;
    margin: 20px;
    text-align: left;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card h3 {
    margin-bottom: 15px;
    color: #ff9800;
    font-size: 1.5rem;
}

/* --- LOGIN OLDAL SPECIFIKUS STÍLUSOK --- */
.login-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    min-height: 60vh; /* Segít, hogy középre rendeződjön a doboz a fejléc és lábléc között */
}

.promo-text {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    max-width: 500px;
    font-weight: 400;
}

.promo-text span {
    color: #ff9800;
    font-weight: 700;
}

.auth-card {
    background-color: #ffffff;
    width: 100%;
    max-width: 400px;
    padding: 40px 30px;
    border-radius: 8px;
    border: 1px solid #eee;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    text-align: center;
}

.auth-card h2 {
    font-family: 'Source Serif Pro', serif;
    font-weight: 900;
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 30px;
}

.form-group {
    text-align: left;
    margin-bottom: 20px;
}

label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

input {
    width: 100%;
    padding: 10px 12px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fafafa;
    transition: border-color 0.3s, background-color 0.3s;
}

input:focus {
    outline: none;
    border-color: #ff9800;
    background-color: #ffffff;
}

.toggle-box {
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 0.95rem;
    color: #666;
    font-weight: 400;
}

.toggle-link {
    color: #ff9800;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
}

.toggle-link:hover {
    text-decoration: underline;
}

/* --- LÁBLÉC --- */
footer {
    background-color: #222;
    color: #ccc;
    text-align: center;
    padding: 30px 0;
    margin-top: 60px;
    font-size: 0.9rem;
    font-weight: 400;
}
/* --- Részletek lap - details (INFO SECTION) --- */
.info-section {
    text-align: center;
    padding: 10px 20px 60px 20px;
    background-color: #f9f9f9;
}

/* A nagy alcím: pontosan olyan, mint a főoldali H1 */
.info-section h2 {
    font-family: 'Source Serif Pro', serif;
    font-size: 3rem;
    margin-bottom: 40px;
    color: #2c3e50;
    font-weight: 900;
}

/* A lista: a sorközt összehúztuk, a lista alatti helyet pedig megnöveltük */
.info-section ul {
    list-style-position: outside;
    font-size: 1.3rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 75px auto; /* 30px-ről 55px-re növelve: ez teszi oda a plusz üres helyet a lista alá */
    line-height: 1.4;         /* 1.8-ról 1.4-re csökkentve: ettől lettek kisebbek a sorközök */
    font-weight: 400;
    text-align: left;
    padding-left: 20px;
}

/* A listapontok közötti távolság finomítása */
.info-section li {
    margin-bottom: 8px;       /* 8px-ről 5px-re csökkentve, hogy még zártabb legyen a felsorolás */
}

/* A lista alatti bekezdések: szintén 1.3rem és vékony */
.info-section p {
    font-size: 1.3rem;
    color: #555;
    max-width: 900px;
    margin: 0 auto 20px auto;
    line-height: 1.8;
    font-weight: 400;
}
/* --- A LISTA ALATTI VASTAG VONAL STÍLUSA --- */
.info-section hr {
    border: none;
    height: 1px; /* A vonal vastagsága */
    background-color: #000000; /* Fekete szín */
    max-width: 1000px; /* A vonal hossza, hogy nagyjából a lista szélességéhez igazodjon */
    margin: 0 auto 40px auto; /* Középre igazítás, illetve az alsó térköz beállítása */
    border-radius: 2px; /* Egy minimális kerekítés a vonal végeinek, hogy jobban illeszkedjen a betűtípushoz */
}
/* --- ADATVÉDELMI (PRIVACY) OLDAL STÍLUSAI --- */
.policy-wrapper {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
}

.policy-section {
    margin-bottom: 60px;
}

.policy-wrapper h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.policy-wrapper h2 {
    color: #ff9800;
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
}

.policy-wrapper h3 {
    color: #444;
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

.policy-wrapper p, .policy-wrapper li {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 10px;
    font-weight: 400;
}

.policy-wrapper ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.lang-label {
    display: inline-block;
    background: #eee;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    color: #666;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.divider {
    height: 2px;
    background: repeating-linear-gradient(to right, #ccc 0, #ccc 10px, transparent 10px, transparent 20px);
    margin: 50px 0;
}
/* --- ABOUT OLDAL KÁRTYÁK STÍLUSAI --- */
.about-cards-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    background-color: #f9f9f9;
}

.about-cards-section h2 {
    font-family: 'Source Serif Pro', serif;
    font-size: 3rem;
    margin-bottom: 50px;
    color: #2c3e50;
    font-weight: 900;
}

.about-cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    text-align: left; /* A kártyákon belül a szöveg balra igazítva a legolvashatóbb */
}

.about-card {
    background-color: #ffffff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 40px 30px;
    flex: 1 1 300px;
    max-width: 380px; /* Ne nyúljanak el túlságosan széles képernyőn sem */
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px); /* Ez emeli meg a kártyát */
    box-shadow: 0 15px 30px rgba(0,0,0,0.1); /* Ez növeli az árnyékot alatta */
}

.about-card h3 {
    color: #ff9800; /* A fejlécből átemelt narancssárga */
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 15px;
    font-family: 'Source Serif Pro', serif;
}

.about-card p {
    font-size: 1.15rem; /* Kicsit kisebb, mint az eredeti folyószöveg, hogy beférjen */
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
    font-weight: 400;
}