/* Alap beállítások */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
    background: #fdfdfd;
}

/* HERO szekció */
.hero {
    height: 75vh;
    background: url('1774979698009.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.45);
}

.hero-content {
    color: white;
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeIn 2s ease;
}

.hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.4rem;
}

/* Tartalom */
.content-section {
    padding: 60px 10%;
    line-height: 1.7;
    animation: fadeUp 1.2s ease;
}

.content-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

/* Galéria */
.gallery-section {
    padding: 40px 8%;
    background: #fafafa;
}

.gallery-section h2 {
    text-align: center;
    margin-bottom: 25px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 15px;
}

.gallery img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    height: 220px;
    transition: transform 0.4s;
}

.gallery img:hover {
    transform: scale(1.07);
}

/* Lábléc */
footer {
    background: #222;
    color: #fff;
    padding: 20px;
    text-align: center;
}

/* Animációk */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}
``
