﻿/* =========================================
   GENERALE
========================================= */

body {
    margin: 0;
    padding: 0;
}

/* =========================================
   MENU PRINCIPALE
========================================= */

.menu-wrapper {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1400px;
    z-index: 9999;
}

.main-menu {
    position: relative;
    ''background: rgba(255,255,255,0);
    ''backdrop-filter: blur(8px);
    ''border-radius: 12px;
    padding: 12px 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    box-shadow: 0 2px 1px rgba(0,0,0,0);
}

    .main-menu a {
        color: #fff;
        font-size: 28px;
        font-weight: 600;
        text-decoration: none;
        text-shadow: 0 3px 4px rgba(0,0,0,.4);
        transition: color .25s ease, text-shadow .25s ease;
    }

        .main-menu a:hover {
            color: #f2d27a;
            text-shadow: 0 1px 2px rgba(0,0,0,.30);
        }

/* =========================================
   SELETTORE LINGUA
========================================= */

.language-menu {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
}

    .language-menu img {
        height: 28px;
        vertical-align: middle;
    }

    .language-menu span {
        margin-left: 5px;
        color: #2e6f40;
    }

.language-dropdown {
    display: none;
    position: absolute;
    top: 35px;
    left: 0;
    background: rgba(255,255,255,0.90);
    padding: 5px;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,.15);
}

    .language-dropdown a {
        display: block;
        padding: 3px;
        text-align: center;
    }

    .language-dropdown img {
        width: 30px;
        height: 30px;
        margin: 0;
    }

.language-menu:hover .language-dropdown {
    display: block;
}

/* =========================================
   FOOTER
========================================= */

.footer-astra {
    background: #102548;
    color: #ffffff;
    padding: 12px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid #b59b46;
    box-sizing: border-box;
}

.footer-col {
    text-align: center;
    font-family: "Cormorant Garamond", serif;
    font-size: 15px;
    line-height: 1.35;
}

    .footer-col a {
        color: #d8d06b;
        text-decoration: none;
        transition: color .25s;
    }

        .footer-col a:hover {
            color: #ffffff;
        }

/* =========================================
   PAGINE INTERNE
========================================= */

.site-menu {
    width: 100%;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(4px);
    border-top: 1px solid rgba(255,255,255,0.5);
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

/* =========================================
   PRIVACY
========================================= */

.privacy-page {
    max-width: 1100px;
    margin: 40px auto;
    padding: 50px 60px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,.12);
    line-height: 1.8;
}

    .privacy-page h1 {
        color: #2e6f40;
        margin-bottom: 40px;
        text-align: center;
    }

    .privacy-page h2 {
        color: #2e6f40;
        margin-top: 40px;
    }

/* =========================================
   LAYOUT PAGINA
========================================= */

html,
body {
    height: 100%;
    margin: 0;
}

#form1 {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
    width: 100%;
}