/* Importazione font elegante (Google Fonts) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&display=swap');

body {
    background-color: #050505; /* Nero profondo */
    color: #f4f4f4;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
}

/* Header elegante */
header {
    background: #000;
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid #c5a059;
}

.logo {
    font-size: 2em;
    font-weight: 700;
    color: #c5a059; /* Oro bronzato */
    letter-spacing: 5px;
}

/* Sezione Hero (Foto grande) */
.hero {
    height: 70vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('hero-bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 3.5em;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* Griglia Prodotti */
.griglia {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 80px 10%;
}

.prodotto {
    background: #111;
    border: 1px solid #333;
    padding: 20px;
    transition: 0.3s;
}

.prodotto:hover { border-color: #c5a059; }

.prodotto img { width: 100%; height: 250px; object-fit: cover; margin-bottom: 20px; }

.prodotto h3 { color: #c5a059; font-size: 1.5em; margin-bottom: 15px; }

/* Moduli contatti e AI */
.contatti-e-ai {
    padding: 80px 10%;
    display: flex;
    gap: 50px;
    background: #0a0a0a;
}

.modulo-email, .assistente-ai { flex: 1; }

input, textarea {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    background: #111;
    border: 1px solid #444;
    color: white;
}

button {
    background: #c5a059;
    color: #000;
    border: none;
    padding: 20px;
    width: 100%;
    font-weight: bold;
    cursor: pointer;
}