/* ALAP BEÁLLÍTÁSOK */
body {
    margin: 0;
    padding: 0;
    font-family: 'Calibri', 'Segoe UI', Helvetica, Arial, sans-serif;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.6;
}

/* =========================================
   FEJLÉC RÖGZÍTÉSE (Desktop)
   ========================================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Egy nagyon finom árnyék a fix sáv alá, hogy elváljon a tartalomtól */
}

/* KONTÉNEREK ÉS ELRENDEZÉS */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px; /* Kicsit kisebb padding, hogy kompaktabb legyen a fejléc */
    border-bottom: 2px solid #000000;
}

/* LOGÓ ÉS SZÖVEG FŐ KONTÉNER */
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #000000;
}

/* LOGÓ BEÁLLÍTÁSOK */
.logo {
    height: 55px;
    width: auto;
    display: block;
}

/* ÚJ: SZÖVEGEK TÁROLÓJA (hogy egymás alá kerüljenek) */
.logo-text {
    display: flex;
    flex-direction: column; /* Egymás alá rendezés */
    justify-content: center;
}

/* CÉGNÉV */
.site-title {
    font-size: 24px;
    font-weight: 800; /* Extra vastag */
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.1; /* Kisebb sorköz, hogy közelebb legyen az alcím */
}

/* ÚJ: ALCÍM (Broadcast...) */
.site-subtitle {
    font-size: 13px; /* Kisebb méret */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px; /* Széthúzott betűk a tech hatásért */
    color: #333; /* Kicsit világosabb fekete */
}

/* MENÜ (NAVIGÁCIÓ) */
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #000000;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 15px;
    transition: all 0.3s ease;
}

nav a:hover {
    text-decoration: underline;
    text-underline-offset: 5px;
}

/* =========================================
   FŐ TARTALOM (Main)
   ========================================= */
main {
    /* A rögzített fejléc miatti eltolás */
    padding-top: 90px;
}

/* SZEKCIÓK */
section {
    padding: 60px 40px;
    max-width: 900px;
    margin: 0 auto;
}

h2 {
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
    font-weight: 700;
}

/* FEKETE ELVÁLASZTÓ VONALAK */
.divider {
    width: 60px;
    height: 4px;
    background-color: #000000;
    margin-bottom: 40px;
}

.placeholder-text {
    color: #444;
    font-size: 18px;
}

/* LÁBLÉC */
footer {
    text-align: center;
    padding: 30px;
    border-top: 2px solid #000000;
    margin-top: 60px;
    font-weight: bold;
    background-color: #f9f9f9;
}

/* =========================================
   MOBIL NÉZET
   ========================================= */
@media (max-width: 768px) {
    header {
        position: static;
        box-shadow: none;
    }

    main {
        padding-top: 0;
    }

    .header-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        border-bottom: 2px solid #000000;
        padding: 20px;
    }
    
    .logo-wrapper {
        flex-direction: column;
    }

    /* Mobilon a szövegeket is középre igazítjuk */
    .logo-text {
        align-items: center;
        margin-top: 10px;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
        font-size: 16px;
        align-items: center;
    }
}