/* ============================= */
/*       HÁTTÉRKÉP AZ OLDALNAK   */
/* ============================= */

body {
    background-image: url('../images/galeriahatter.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* ============================= */
/*     FELSŐ INFORMÁCIÓS SZÖVEG  */
/* ============================= */

.hirek-top-text {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #ffffff;
}

.hirek-itt-link {
    color: #ffffff;
    text-decoration: none;
    border-bottom: 3px solid #ffb3c8;
    padding-bottom: 2px;
    animation: ittColorChange 3s infinite linear;
}

@keyframes ittColorChange {
    0% {
        color: #ffb3c8;
        border-color: #ffb3c8;
    }
    33% {
        color: #1e37a9;
        border-color: #1e37a9;
    }
    66% {
        color: #ff2600;
        border-color: #ff2600;
    }
    100% {
        color: #ffb3c8;
        border-color: #ffb3c8;
    }
}

/* ============================= */
/*       HÍREK OLDAL KONTAINER   */
/* ============================= */

.hirek-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

h1 {
    color: #ffffff;
    margin-bottom: 20px;
}

/* ============================= */
/*         GRID KÁRTYÁKHOZ       */
/* ============================= */

.hirek-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
    justify-items: center;   /* <<< A KÁRTYÁK KÖZÉPRE KERÜLNEK */
    margin-top: 40px;
}

/* ============================= */
/*        HÍR KÁRTYA DOBOZ       */
/* ============================= */

.hir-kartya {
    width: 380px;     /* <<< FIX KÁRTYASZÉLESSÉG — NEM TERJED SZÉT */
    height: 230px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;
}

/* KÉP HÁTTÉR */
.hir-kep {
    display: block !important; /* <<< EZ MEGOLDJA VÉGLEGESEN */
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
    background-color: #d6b39a; 
}



/* CÍM SÁV ALUL */
.hir-fedo {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 55px; /* <<< FIX MAGASSÁG, ÍGY TÖKÉLETES LESZ */
    
    background: rgba(255, 230, 200, 0.85);
    backdrop-filter: blur(4px);

    /* KÖZÉPRE IGAZÍTÁS */
    display: flex;
    justify-content: center;
    align-items: center;

    padding: 0; /* <<< NE EMELJE MEG A SZÖVEGET */
}


.hir-cim {
    font-size: 20px;
    font-weight: bold;
    color: #000;
    margin: 0;
    line-height: 1 !important;   /* <<< EZ A MEGOLDÁS */
}



/* HOVER EFFEKT */
.hir-kartya:hover .hir-kep {
    transform: scale(1.06);
}

.hir-kartya:hover .hir-fedo {
    background: rgba(255, 230, 200, 0.95);
}

.hirek-nincs-hir {
    color: #ffffff;
    font-size: 18px;
    text-align: center;
    margin-top: 40px;
}


/* ============================= */
/*   EGYEDI HÍR RÉSZLETES OLDAL  */
/* ============================= */

.hirek-vissza-link {
    display: inline-block;
    margin-bottom: 25px;
    color: #ffffff;
    font-size: 16px;
    text-decoration: none;
    border-bottom: 2px solid #ffb3c8;
}

.hirek-vissza-link:hover {
    opacity: 0.8;
}

.hir-oldal-cim {
    color: #ffffff;
    margin-bottom: 20px;
}

.hir-oldal-tartalom {
    background: rgba(0, 0, 0, 0.481);
    padding: 30px;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: #000;
    height: auto;
}

.hir-oldal-kep {
    text-align: center;
}

.hir-oldal-kep img {
    width: 100%;
    max-width: 400px;   /* <<< Itt állítod be, milyen széles lehet */
    height: auto;
    border-radius: 10px;
    margin-bottom: 25px;
}

.hir-oldal-szoveg p {
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 15px;
}


/* ============================= */
/*            RESPONSIVE         */
/* ============================= */

@media (max-width: 600px) {
    .hir-kartya {
        width: 100%;
        max-width: 380px;
    }
}