/* =========================================
   ÁLTALÁNOS BEÁLLÍTÁSOK
   ========================================= */
body {
    width: 100%;
    background-color: #fde8e5;
    overflow-x: hidden;
    /* Biztosítja, hogy semmi ne lógjon ki oldalra */
}

.white {
    background-color: whitesmoke;
}

.z-3 {
    z-index: 3;
}

.btn-outline-secondary:hover {
    background-color: #ffa4aa !important;
}

/* =========================================
   HERO SZEKCIÓ ÉS DEKORÁCIÓ
   ========================================= */
.title-block {
    position: relative;
}

.hero-intro {
    font-family: "WindSong", cursive;
    font-weight: 400;
    font-size: 10vw;
    font-style: normal;
}

.hero-title {
    font-family: "Russo One", sans-serif;
    font-size: 3vw;
    letter-spacing: 2px;
    color: #333;
    line-height: 1;
}

.hero-subtitle {
    font-family: "Kode Mono", monospace;
    font-size: 2.5vw;
    font-weight: 500;
    color: #555;
    line-height: 1.6;
}

.subtitle-block {
    margin-top: 3rem !important;
}

/* --- KÉPEK POZÍCIÓI --- */
.corner {
    position: absolute;
    z-index: 1;
    height: 35vw;
}

.side {
    position: absolute;
    z-index: 1;
    height: 30vw;
}

.img-1 {
    top: 0;
    left: 0;
}

.img-2 {
    bottom: 55%;
    right: 0;
}

.img-3 {
    top: 45%;
    left: 0;
}

.img-4 {
    bottom: 0;
    right: 0;
}


/* =========================================
   SKILL KÁRTYÁK (HOVER EFFEKT)
   ========================================= */
.skill-card {
    position: relative;
    height: 120px;
    width: 100%;
    max-width: 200px;
    /* Megakadályozza, hogy túl széles legyen a kattintható zóna */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
}

.skill-card:hover {
    z-index: 10;
}

.skill-icon {
    transition: all 0.3s ease-in-out;
    opacity: 1;
    transform: scale(1);
}

.skill-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.3s ease-in-out;
    width: 220px;
    background-color: #fde8e5;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    pointer-events: none;
}

.skill-card:hover .skill-icon {
    opacity: 0;
    transform: scale(0.5);
}

.skill-card:hover .skill-info {
    opacity: 1;
}

/* =========================================
   RESZPONZIVITÁS ÁLLÓ (PORTRAIT) KÉPERNYŐKRE
   ========================================= */
@media (orientation: portrait) {
    .img-1 {
        top: 0;
        left: 0;
    }

    .img-2 {
        bottom: 50%;
        right: 0;
    }

    .img-3 {
        top: 50%;
        left: 0;
    }

    .img-4 {
        bottom: 0;
        right: 0;
    }

    .corner {
        width: 50vw;
        height: auto;
        aspect-ratio: 1/1;
    }

    .side {
        width: 20vw;
        height: auto;
    }

    .hero-subtitle {
        font-size: 5vw;
    }
}