/*
Theme Name: Pandora Child
Description: Tema child personalizzato per Pandora
Author: Il Tuo Nome
Template: pandora
Version: 1.0
*/

/* ==========================================================================
   1. STRUTTURA E BORDI
   ========================================================================== */

.site-container {
    box-sizing: border-box;
    overflow: hidden; 
}

/* ==========================================================================
   2. GESTIONE BANNER (Layout Integrato Brand + Menu)
   ========================================================================== */

.pandora-banner {
    width: 100%;
    background-size: contain; 
    background-position: center center; 
    background-repeat: no-repeat; 
    background-color: #000; 
    transition: height 0.3s ease; 
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    border-left: 2px solid #8300fe;
    border-right: 2px solid #8300fe;
    border-bottom: 2px solid #8300fe;
}

.pandora-banner:first-child {
    border-top: 2px solid #8300fe;
}

/* Wrapper interno per allineamento colonne */
.banner-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 40px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.banner-column.branding h1 {
    color: #fff;
    font-size: 2.5rem;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.banner-column.navigation .banner-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.banner-column.navigation .banner-menu li {
    margin-left: 25px;
}

.banner-column.navigation .banner-menu li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

/* ==========================================================================
   3. SISTEMA IMMAGINI MENU SOFISTICATO
   ========================================================================== */

.pandora-menu-icon {
    object-fit: cover;
    display: inline-block;
    vertical-align: middle;
    transition: transform 0.3s ease, border-radius 0.3s ease;
    margin-right: 10px; 
}

/* Effetto zoom al passaggio del mouse */
.banner-menu li a:hover .pandora-menu-icon {
    transform: scale(1.1);
}

/* ==========================================================================
   4. RESPONSIVITÀ
   ========================================================================== */

@media (max-width: 768px) {
    .pandora-banner {
        height: auto !important;
        min-height: 150px;
        padding: 20px 0;
    }
    
    .banner-content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .banner-column.navigation .banner-menu li {
        margin: 0 10px;
    }
}