/* Alapvető beállítások */
body { 
    background-color: #f4f7f6; 
}

html { 
    scroll-behavior: smooth; 
}

.review-btn:hover { 
    transform: scale(1.05); 
}

/* FŐKÉP MOZI-SÁVJA (100% szélesség, eltolt fókuszponttal) */
.hero-header-wrapper {
    background-color: #f4f7f6;
    width: 100%;
    overflow: hidden;
    text-align: center;
}

.hero-banner-img {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
    object-position: center 12%;
}

/* Villogó gombok stílusa */
@keyframes pulzalas {
    0% { 
        transform: scale(1); 
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7); 
    }
    70% { 
        transform: scale(1.03); 
        box-shadow: 0 0 0 10px rgba(220, 53, 69, 0); 
    }
    100% { 
        transform: scale(1); 
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0); 
    }
}

.villogo-gomb {
    animation: pulzalas 2s infinite;
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 14px;
    width: 100%;
    font-weight: bold;
    border-radius: 50px;
    margin-bottom: 20px;
    cursor: pointer;
    text-transform: uppercase;
}

.villogo-gomb-nav {
    animation: pulzalas 2s infinite;
    background-color: #dc3545;
    color: white !important;
    padding: 6px 12px !important;
    border-radius: 6px !important;
    font-weight: bold;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    border: 2px solid white;
    font-size: 12px !important;
    margin: 2px 0;
}

/* Navigációs gombok méretének optimalizálása */
.ldt-nav-container { 
    padding: 3px 0 !important; 
}

.ldt-nav-container .container { 
    gap: 4px !important; 
}

.ldt-nav-container .ldt-btn {
    padding: 4px 10px !important;
    font-size: 11px !important;
    border-radius: 4px !important;
    margin: 2px 0;
}

/* Mobil nézet optimalizálása */
@media (max-width: 768px) {
    .ldt-nav-container .container {
        flex-wrap: nowrap !important;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start !important;
        scrollbar-width: none;
    }
    .ldt-nav-container .container::-webkit-scrollbar { 
        display: none; 
    }
    .ldt-nav-container .ldt-btn, .villogo-gomb-nav {
        white-space: nowrap;
        flex-shrink: 0;
        margin: 0;
    }
}

/* Biztonságos mobilos képstílusok a galériához */
.gallery-card a { 
    display: block !important; 
    width: 100% !important; 
    height: 100% !important; 
}

.gallery-card img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
}
