/* Reset e Stili Generali */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Crimson Text', serif;
    color: #FFFCEB;
    background-color: #292422;
    line-height: 1.6;
}

a { color: #FFFCEB; text-decoration: none; }

/* Header & Nav (Se necessario in futuro) */
section {
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 60px 20px;
}

img.logo {
    max-width: 400px;
    height: auto;
    margin-bottom: 40px;
}

/* Pulsanti */
.top-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    width: 100%;
    max-width: 700px;
    justify-content: center;
}

.btn {
    display: inline-block;
    background-color: transparent;
    border: 1px solid #FFFCEB;
    color: #FFFCEB;
    padding: 10px 40px;
    font-size: 16px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.btn-small {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid #FFFCEB;
    color: #FFFCEB;
    padding: 8px 20px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn:hover, .btn-small:hover {
    background-color: #FFFCEB;
    color: #292422;
}

/* Animazione Freccia */
.arrow-down {
    position: absolute;
    bottom: 30px;
    width: 25px;
    height: 25px;
    border-bottom: 2px solid #FFFCEB;
    border-right: 2px solid #FFFCEB;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0) rotate(45deg);}
    40% {transform: translateY(-10px) rotate(45deg);}
}

/* Sezioni Specifiche Index */
#hero { background: linear-gradient(rgba(41,36,34,0.7), rgba(41,36,34,0.7)), url('../img/bg-hero.jpg') no-repeat center center/cover; }
#about { background: url('../img/sfondo-sez-2.jpg') no-repeat center center/cover; }

#about h1 { font-size: clamp(28px, 5vw, 50px); margin-bottom: 20px; text-transform: uppercase; }
#about p { max-width: 750px; font-size: 1.2rem; margin-bottom: 30px; }

/* Pagina Informativa */
.page-legal { display: block; height: auto; padding-top: 120px; text-align: left; align-items: flex-start; }
.legal-content { max-width: 900px; margin: 0 auto; padding: 40px 20px; }

/* Footer */
footer {
    background-color: #211d1b;
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid rgba(255,252,235,0.1);
}


/* Responsive */
@media (max-width: 768px) {
    .top-buttons { flex-direction: column; align-items: center; }
    .btn-small { width: 100%; max-width: 280px; }
}