/* Importa il font Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #008768;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 15px 20px;
    transition: padding 0.3s ease-in-out;
}

.header-logo a {
    display: flex;
    align-items: center;
}

.header-logo img {
    height: 60px;
    max-width: 200px;
    object-fit: contain;
    transition: height 0.3s ease-in-out;
}

.header.shrink {
    padding: 5px 0;
}

.header.shrink .header-container {
    padding: 5px 15px;
}

.header.shrink .header-logo img {
    height: 40px;
}

.header-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.header-nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.language-selector {
    padding: 5px;
    border-radius: 5px;
    background-color: white;
    color: #008768;
    border: none;
    font-size: 16px;
}

.social-icons a {
    color: white;
    font-size: 20px;
    margin: 0 5px;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #008768;
    text-align: center;
    padding: 15px 0;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
}

.mobile-menu ul li {
    padding: 10px 0;
}

.mobile-menu ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.mobile-menu.active {
    display: block;
}

@media screen and (max-width: 1024px) {
    .header-container {
        padding: 10px 15px;
    }
    .header-nav,
    .social-icons,
    .language-selector {
        display: none;
    }
    .hamburger {
        display: block;
    }
}
