body{
    margin:0;
    font-family:Arial;
    background:#f6f0df;
    color:#233;
}

.hero{
    height:70vh;
    background:
        linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
        url('img/cetate.jpg') center/cover;
    display:flex;
    align-items:center;
    justify-content:center;
}

.overlay{
    text-align:center;
    color:#fff;
}

.cards{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    justify-content:center;
}

.card{
    background:#fff;
    border-radius:10px;
    box-shadow:0 2px 8px #0002;
    overflow:hidden;
    width:320px;
    text-align:center;
}

/* ===== EGYSÉGES MÉRETŰ KÉPEK ===== */

.card img{
    width:100%;
    height:420px;          /* Minden kép azonos magasságú */
    object-fit:cover;      /* Szépen levágja a képet */
    object-position:center top;
    display:block;
}

/* Ha Annamari képe túl közel van, csak ezt használd */
.annamari{
    object-position:center 15%;
}

.card h3{
    margin:15px 0 5px;
}

.card p{
    margin-bottom:20px;
    color:#555;
}

section{
    padding:40px;
}

a{
    background:#1f5b39;
    color:#fff;
    padding:10px 20px;
    text-decoration:none;
    border-radius:6px;
}

@media(max-width:768px){

    .cards{
        flex-direction:column;
        align-items:center;
    }

    .card{
        width:90%;
    }

    .card img{
        height:360px;
    }

}/* ===== FOOTER ===== */

.footer{

    background:#243325;
    color:#fff;
    text-align:center;
    padding:50px 20px;

}

.footer h2{

    color:#d8b15c;
    margin-bottom:20px;

}

.footer p{

    line-height:1.8;

}

.footer-links{

    margin:35px 0;

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:20px;

}

.footer-links a{

    background:#8b6a2b;

    color:#fff;

    padding:12px 22px;

    border-radius:8px;

    text-decoration:none;

    transition:.3s;

}

.footer-links a:hover{

    background:#b78c39;

    transform:translateY(-3px);

}

.footer hr{

    margin:35px auto;

    max-width:600px;

    border:0;

    border-top:1px solid rgba(255,255,255,.25);

}

.copyright{

    color:#cfcfcf;

    font-size:14px;

}