/* Google Fonts importálása */
@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@400;700;800&family=Quicksand:wght@400;500;700&display=swap');

:root {
    /* Színek */
    --primary-blue: #102F76;
    --text-main: #102F76;
    --text-secondary: #516285;
    --bg-white: #ffffff;
    --bg-light: #f5f5f7;
    --accent-blue: #0071e3;

    /* Tipográfia */
    --font-main: 'League Spartan', sans-serif;
    --font-secondary: 'Quicksand', sans-serif;

    /* Távolságok */
    --section-padding: 60px 20px;
    --container-width: 1200px;
}

/* Alap reset - Apple-szerű tisztaság */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    /* Szebb betűkirajzolás */
}

body {
    font-family: var(--font-secondary);
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 90px;

    /* ÚJ: Flexbox a mindig lent maradó láblécért */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* A main tag kitölti a maradék üres űrt, így letolja a footert */
main {
    flex: 1;
}

/* Globális lábléc stílus (hogy minden oldalon egyforma és szép legyen) */
footer {
    text-align: center;
    padding: 30px 20px;
    color: var(--text-secondary);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    /* Egy nagyon finom, Apple-ös elválasztó vonal */
    margin-top: auto;
    /* Biztosítja, hogy tényleg a legalján maradjon */
}

h1,
h2,
h3 {
    font-family: var(--font-main);
    font-weight: 700;
    line-height: 1.1;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}