@font-face {
    font-family: Lemon;
    src: url(../font/Lemon-Regular.ttf);
}

@font-face {
    font-family: Lexend;
    src: url(../font/Lexend-VariableFont_wght.ttf);
}

html,body {
    font-family: Lexend, sans-serif;
    background-image: url(../immagini/sfondo_debba.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    margin: 0;
    color: #333;
}

#navigation ul {
    margin: 0;
}

.menu-toggle {
    display: none;
    background-color: #007f96;
    color: white;
    padding: 12px 20px;
    text-align: center;
    cursor: pointer;
    font-size: 18px;
}


#debba {
    width: 100%;
    height: auto;
    display: block;
}

#back_home {
    background-color: rgba(58, 58, 58, 0.8);
    color: white;
    font-size: medium;
    text-align: center;
    width: 4vh;
    height: 4vh;
    padding: 15px;
    border-radius: 0 0 0 3vh;
    position: fixed;
    top: 0;
    right: 0;
}

#copyright {
    background-color: rgba(58, 58, 58, 0.8);
    color: white;
    font-size: small;
    text-align: center;
    width: fit-content;
    height: fit-content;
    padding: 15px;
    border-radius: 0 3vh 0 0;

    position: fixed;
    bottom: 0;
    left: 0;
}


.logo {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* MENU */
#navigation {
    background-color: #005f70;
}

#navigation ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 10px 0;
}

#navigation li {
    margin: 8px;
}

#navigation a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background 0.3s;
}

#navigation a:hover {
    background-color: #f0f0f0;
    color: #005f70;
}

#navigation li#activelink a {
    background-color: #ffffff;
    color: #603;
    border-bottom: 3px solid #fff;
}

/* CONTENUTO */
#colcx {
    padding: 30px;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.ringraziamenti {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.ringraziamenti h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #336699;
}

.ringraziamenti p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.ringraziamenti ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.ringraziamenti ul li {
    margin-bottom: 8px;
}


/* RESPONSIVE */
@media screen and (max-width: 768px) {
    #colcx {
        padding: 20px;
    }

    .menu-toggle {
        display: block;
    }

    #navigation ul {
        display: none;
        flex-direction: column;
        align-items: center;
    }

    #navigation ul.show {
        display: flex;
    }

    .ringraziamenti h1 {
        font-size: 1.5rem;
    }

    .ringraziamenti p,
    .ringraziamenti ul li {
        font-size: 0.95rem;
    }
}