/* HERO */
.hero {
    justify-content: center;
    /* Vízszintesen középre */
    position: relative;
    /* A gomb pozicionálása miatt fontos */
}

/* TARTALOM CSOPORTOSÍTÓ */
.hero-content-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* KÖZÉPSŐ SZÖVEGDOBOZ */
.hero-text-box {
    text-align: center;
    text-transform: uppercase;
}

.hero-text-box h1 {
    font-size: 4rem;
}

/* AZ ALSÓRA POZICIONÁLT GOMB */
.hero-btn {
    position: absolute;
    bottom: -35px;
    /* Megadja, mennyire lógjon le a képről (a gomb magasságának kb. fele) */
    left: 50%;
    transform: translateX(-50%);
    /* Tökéletes vízszintes középre igazítás */
    z-index: 10;
}

/* Mobil nézethez finomhangolás */
@media (max-width: 768px) {
    .hero-text-box {
        width: 90%;
        padding: 20px;
    }

    .hero-text-box h1 {
        font-size: 1.5rem;
        /* Kisebb betű mobilon */
    }
}

/* FLIP CARD - REFERENCIÁK */
.flip-card {
    height: 500px;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

/* Ez az osztály fordul át kattintásra */
.flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.flip-card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-title-top {
    width: 100%;
    min-height: 60px;
    position: absolute;
    /*   top: 20px;
    left: 20px;*/
    color: var(--primary-orange);
    background: white;
    padding: 5px 15px;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 2;
}

.gallery-trigger {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: white;
    font-size: 2.5rem;
    z-index: 5;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.flip-card-back {
    background-color: #222;
    color: white;
    transform: rotateY(180deg);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 3px solid var(--primary-orange);
}

/* LISTA */
.custom-list {
    list-style: none;
    padding: 0;
}

.custom-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    color: white;
}

.custom-list li i {
    color: var(--primary-orange);
    margin-right: 15px;
}