/* Stile Generale */
body {
    font-family: 'Georgia', serif;
    color: #2E4053; /* Contrasto con lo sfondo */
    margin: 0;
    padding: 0;
    background-color: #FAF9F6; /* Bianco seta */
    line-height: 1.6; /* Spaziatura più leggibile */
}

/* Contenitore Principale */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}
.container_abiti {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
	background: url('img/background.jpg') no-repeat center center / cover; /* Inserisce l'immagine di sfondo */
}
/* Header */
.header {
    background-color: #D4AF37; /* Oro chiaro */
    color: white;
    padding: 15px 0;
    text-align: center;
}

.header nav a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-weight: bold;
}

.header nav a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    background: url('img/hero.jpg') no-repeat center center / cover;
    text-align: center;
    color: white;
    padding: 100px 20px;
}

.hero h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Testo più leggibile */
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Contrasto aggiuntivo */
}

.hero .btn {
    background-color: #E6B0AA; /* Rosa antico */
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
    font-weight: bold;
    border: 1px solid white;
}

.hero .btn:hover {
    background-color: #D4AF37; /* Cambia colore al passaggio del mouse */
    border-color: #D4AF37;
}

/* Sezione Generale */
.section {
    padding: 50px 20px;
    text-align: center;
    background-color: #FFFFFF; /* Colore sfondo neutro */
    border-bottom: 1px solid #DADADA; /* Separatore tra sezioni */
}

.section h2 {
    font-size: 2em;
    color: #B76E79; /* Rosa elegante */
    margin-bottom: 15px;
}

.section p {
    font-size: 1.1em;
    color: #2E4053; /* Blu notte per maggiore contrasto */
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8; /* Migliora leggibilità */
}

.section img {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Aggiunge profondità */
}

/* Footer */
.footer {
    background-color: #2E4053; /* Blu notte */
    color: white;
    text-align: center;
    padding: 20px 0;
}

.footer a {
    color: #D4AF37; /* Oro chiaro */
    text-decoration: none;
    font-weight: bold;
}

.footer a:hover {
    text-decoration: underline;
}

/* Pulsanti */
.btn {
    display: inline-block;
    background-color: #E6B0AA; /* Rosa antico */
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1em;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #D4AF37; /* Oro chiaro */
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1em;
    }

    .section h2 {
        font-size: 1.8em;
    }

    .section p {
        font-size: 1em;
    }
}
