/* ALAPOK */
body {
    margin: 0;
    background: #fffdf8;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: #5a4300;
}

/* HERO */
.hero {
    height: 30vh;
    background-color: #eeeeee;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.1);
}

.hero-content {
    color: white;
    text-align: center;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin: 0;
}

.hero-content p {
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin-top: 10px;
}

/* SZÖVEGES BLOKK */
.content {
    width: 70%;
    margin: 60px auto;
}

.content h2 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 2.2rem;
}

.content p.big {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 30px;
    color: #7a5a00;
}

/* DÍJAZOTTAK */
.students {
    background: #fdf8ef;
    padding: 60px 8%;
}

.students h2 {
    text-align: center;
    margin-bottom: 40px;
}

.student-card {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.student-card.reverse {
    flex-direction: row-reverse;
}

.student-card img {
    width: 300px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.student-text h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.student-text h4 {
    font-size: 1.2rem;
    color: #8c6a00;
    margin-bottom: 15px;
}

/* LÁBLÉC */
footer {
    background: #2b2b2b;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}
