﻿/* style.css */
:root {
    --colore-sfondo: #faf9f6;
    --colore-testo: #333333;
    --colore-accento: #c2a88a;
    --font-titoli: 'Playfair Display', serif;
    --font-testi: 'Lato', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--colore-sfondo);
    color: var(--colore-testo);
    font-family: var(--font-testi);
    line-height: 1.6;
}

header {
    background-color: #ffffff;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-family: var(--font-titoli);
    font-size: 28px;
    font-weight: 600;
    color: var(--colore-testo);
    text-decoration: none;
    letter-spacing: 1px;
}

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

nav a {
    text-decoration: none;
    color: var(--colore-testo);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
}

    nav a:hover {
        color: var(--colore-accento);
    }

section {
    padding: 80px 10%;
}

h2 {
    font-family: var(--font-titoli);
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 400;
    color: var(--colore-testo);
}

/* Home */
#home {
    text-align: center;
    padding: 120px 10%;
    background-color: #f2efe9;
}

    #home h1 {
        font-family: var(--font-titoli);
        font-size: 48px;
        margin-bottom: 20px;
        font-style: italic;
    }

    #home p {
        font-size: 18px;
        max-width: 600px;
        margin: 0 auto;
        color: #555;
    }

/* Borse */
.griglia-prodotti {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.prodotto {
    background: #fff;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

    .prodotto:hover {
        transform: translateY(-5px);
    }

    .prodotto img {
        width: 100%;
        aspect-ratio: 1/1;
        object-fit: cover;
        margin-bottom: 15px;
    }

    .prodotto h3 {
        font-family: var(--font-titoli);
        font-size: 22px;
        margin: 10px 0;
    }

/* Chi Siamo */
#chi-siamo {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    background-color: #ffffff;
}

.bio-testo, .bio-immagine {
    flex: 1;
    min-width: 300px;
}

    .bio-immagine img {
        width: 100%;
        border-radius: 5px;
    }

/* Footer */
footer {
    background-color: var(--colore-testo);
    color: #ffffff;
    text-align: center;
    padding: 60px 20px;
}

    footer h2 {
        color: #ffffff;
        margin-bottom: 30px;
    }

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

    .social-links a {
        color: var(--colore-accento);
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

        .social-links a:hover {
            color: #ffffff;
        }

@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
}
