
/* Hero szekció */
.hero {
    position: relative;
    width: 100%;
    height: 80vh; /* Magasság állítható */
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    transition: background-image 1s ease-in-out; /* Animáció a váltásokhoz */
}

/* Overlay a logó középre helyezéséhez */
.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.45); /* Enyhe sötétítés */
}


.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.hero-text p {
    font-size: 1.5rem;
}

/* Featured Posts */
.featured-posts {
    padding: 40px 20px;
    background-color: #f9f9f9;
}

.featured-posts h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

/* Karolina logó */
.hero-logo {
    width: 300px; /* Logó mérete */
    height: auto;
    z-index: 2; /* Mindig elöl marad */
}
