/*
Theme Name: Word of Infinity
Template: generatepress
*/

/* 1. PULIZIA: Rimuovi elementi standard del tema */
.site-header, .site-branding, .site-title, .site-description, .main-navigation {
    display: none !important;
}

/* 2. IL BANNER */
.pandora-banner-image {
    width: 100%;
    background-size: contain; 
    background-position: center;
    background-repeat: no-repeat;
    border-top: 2px solid #8300fe; /* Corretto per coerenza */
    border-left: 2px solid #8300fe;
    border-right: 2px solid #8300fe;
    border-radius: 8px 8px 0 0;
    margin-bottom: 0;
    transition: height 0.3s ease; 
}

/* 3. IL CONTENITORE MENU */
.pandora-menu-container {
    width: 100%;
    background-color: #000;
    border-left: 2px solid #8300fe;
    border-right: 2px solid #8300fe;
    padding: 20px 10px;
    display: flex;
    justify-content: center;
}

/* 4. CONTENITORE RICERCA (Dinamicizzato) */
.pandora-search-container {
    width: 100%;
    background-color: #000;
    border-left: 2px solid #8300fe;
    border-right: 2px solid #8300fe;
    border-bottom: 2px solid #8300fe;
    border-radius: 0 0 8px 8px;
    padding: 0 10px 20px 10px;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.pandora-search-container .search-form {
    display: flex;
    align-items: center;
}

.pandora-search-container .search-field {
    width: 100%;
    padding: 8px 15px;
    border-top: 1px solid #8300fe;
    border-bottom: 1px solid #8300fe;
    border-left: 1px solid #8300fe;
    border-right: none;
    background: #111;
    color: #fff;
}

/* Bottone Cerca personalizzabile */
.pandora-search-container .search-submit {
    border: 1px solid #8300fe !important;
    padding: 0 20px;
    cursor: pointer;
    background-color: #8300fe;
    color: #fff;
    height: 100%;
}

/* 5. LOGICA ICONE */
.banner-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.banner-menu li a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 5px !important;
    text-decoration: none !important;
    cursor: pointer !important;
}

.pandora-menu-icon {
    width: 55px; 
    height: auto;
    display: block;
    pointer-events: none;
    transition: transform 0.2s ease;
}

.banner-menu li a:hover .pandora-menu-icon {
    transform: scale(1.1);
}

/* 6. NUOVO BOX ARTICOLI */
.custom-posts-wrapper {
    background-color: #ffffff;
    border: 2px solid #8300fe;
    border-radius: 12px;
    padding: 30px;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.custom-posts-wrapper article {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

/* 7. RESPONSIVITÀ */
@media (max-width: 768px) {
    .pandora-banner-image { min-height: 120px; }
    .pandora-menu-container { padding: 15px 5px; }
    .pandora-menu-icon { width: 40px; }
    .banner-menu { gap: 15px; }
    .custom-posts-wrapper { padding: 15px; }
    .pandora-search-container .search-form { width: 95% !important; }
}