/* HERO */
.hero {
    justify-content: center;
    /* Vízszintesen középre */
    position: relative;
    /* A gomb pozicionálása miatt fontos */
}

/* TARTALOM CSOPORTOSÍTÓ */
.hero-content-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* KÖZÉPSŐ SZÖVEGDOBOZ */
.hero-text-box {
    text-align: center;
    text-transform: uppercase;
}

.hero-text-box h1 {
    font-size: 4rem;
}

/* AZ ALSÓRA POZICIONÁLT GOMB */
.hero-btn {
    position: absolute;
    bottom: -35px;
    /* Megadja, mennyire lógjon le a képről (a gomb magasságának kb. fele) */
    left: 50%;
    transform: translateX(-50%);
    /* Tökéletes vízszintes középre igazítás */
    z-index: 10;
}

/* Mobil nézethez finomhangolás */
@media (max-width: 768px) {
    .hero-text-box {
        width: 90%;
        padding: 20px;
    }

    .hero-text-box h1 {
        font-size: 1.5rem;
        /* Kisebb betű mobilon */
    }
}

/* ELÉRHETŐSÉG EGYEDI STÍLUSOK */

.contact-info-box {
    padding: 30px;
    background-color: var(--light-grey);
    border-left: 5px solid var(--primary-orange);
    height: 100%;
}

.map-container {
    border: 1px solid #ddd;
    padding: 10px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.text-orange {
    color: var(--primary-orange);
}

/* DOLGOZÓI KÁRTYÁK */
.employee-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 25px;
    transition: all 0.3s ease;
    border-bottom: 3px solid #ccc;
}

.employee-card:hover {
    transform: translateY(-5px);
    border-bottom: 3px solid var(--primary-orange);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.employee-card h5 {
    font-weight: bold;
    margin-bottom: 5px;
    color: var(--dark-bg);
}

.employee-card hr {
    width: 50px;
    border-top: 2px solid var(--primary-orange);
    opacity: 1;
    margin: 15px 0;
}

.employee-card p {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.employee-card i {
    color: var(--primary-orange);
    width: 20px;
}