/*
Theme Name: Abiko Child
Author: Theme Kalia
Version: 1.0.0
Author URI: http://themeforest.net/user/themkalia
Theme URI: http://wp2.commonsupport.com/newwp/abiko
Description: This is The Abiko WordPress theme
License: copyright commercial
License URI: http://themeforest.net/user/themekalia
Tags: one-column, two-columns, right-sidebar, custom-header, custom-menu, editor-style, featured-images, rtl-language-support, sticky-post, translation-ready, microformats
Text Domain: abiko
Template: abiko
*/
@import url('../abiko/style.css');


/* Reset per il layout */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Stile del menu */
#anchor-menu {
    position: fixed; /* Posiziona il menu in modo fisso */
    top: 500px; /* Inizia a 500px dal top della pagina */
    right: 20px; /* Posizionato a destra */
    background: rgba(0, 0, 0, 0.7); /* Colore di sfondo semi-trasparente */
    padding: 10px;
    border-radius: 5px;
    z-index: 1000;
}

#anchor-menu ul {
    list-style-type: none;
}

#anchor-menu li {
    margin-bottom: 10px;
}

#anchor-menu a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    display: block;
}

/* Sticky quando scorre */
.sticky {
    top: 0px; /* Quando il menu diventa sticky, si posiziona in cima */
}

/* Stile per le sezioni */
.section {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: white;
}

/* Responsive per mobile */
@media (max-width: 768px) {
    #anchor-menu {
        top: 20px; /* Spostato più in alto per mobile */
        right: 10px;
        width: 80%;
    }

    #anchor-menu a {
        font-size: 14px; /* Ridotto per mobile */
        text-align: center;
    }
}

