/* JOLA Térkép Stílusok */

.jola-terkep-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.jola-map {
    position: relative;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    line-height: 0;
}

.jola-map > img {
    width: 100%;
    height: auto;
    display: block;
}

.jola-hotspots {
    position: absolute;
    inset: 0;
}

/* Láthatatlan, kattintható terület a képi felirat felett */
.jola-hotspot {
    position: absolute;
    transform: translate(-50%, -50%);
    display: inline-block;
    text-decoration: none;
    z-index: 2;
    background: transparent;
    outline: none;
    padding: .15rem .35rem;
}

.jola-hotspot > span {
    display: none;
}

/* Mobil verzió - alapból rejtett */
.jola-terkep-mobile {
    display: none;
}

/* Mobil verzió stílusok */
@media (max-width: 768px) {
    .jola-map {
        display: none;
    }
    
    .jola-terkep-mobile {
        display: block;
        padding: 1rem;
    }
    
    .jola-terkep-mobile-header {
        margin-bottom: 1rem;
    }
    
    .jola-terkep-mobile-header h3 {
        font-size: 1.5rem;
        font-weight: 600;
        margin: 0;
        color: #333;
    }
    
    .jola-terkep-mobile-buttons {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 0.75rem;
    }
    
    .jola-terkep-mobile-btn {
        display: inline-block;
        padding: 0.75rem 1rem;
        background: #fff;
        border: 2px solid #d11b77;
        border-radius: 0.5rem;
        color: #d11b77;
        text-decoration: none;
        text-align: center;
        font-weight: 500;
        transition: all 0.2s ease;
    }
    
    .jola-terkep-mobile-btn:hover,
    .jola-terkep-mobile-btn:focus {
        background: #d11b77;
        color: #fff;
        text-decoration: none;
    }
}

/* Hibaüzenet */
.jola-terkep-error {
    padding: 1rem;
    background: #fee;
    border: 1px solid #fcc;
    border-radius: 0.5rem;
    color: #c33;
    text-align: center;
}

