@charset "utf-8";

:root { 
    --primary: #007bff; 
    --bg: #121212; 
    --card: #1e1e1e; 
    --text: #eee; 
    --border: #444; 
    --accent: #ce4018; 
}

/* Stili del Form */
.form-contatti { background: var(--card); padding: 30px; border-radius: 12px; border: 1px solid #333; color: var(--text); text-align: left; max-width: 800px; margin: 0 auto; }
.campo-form { margin-bottom: 20px; }
.campo-form label { display: block; font-size: 0.75em; color: #aaa; margin-bottom: 5px; text-transform: uppercase; letter-spacing: 1px; }
.campo-form input, .campo-form textarea { width: 100%; padding: 12px; background: #2a2a2a; border: 1px solid var(--border); border-radius: 5px; color: #fff; box-sizing: border-box; font-family: 'Segoe UI', sans-serif; }
.antispam-box { background: #252525; padding: 15px; border-left: 5px solid var(--accent); margin: 20px 0; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; }
.privacy-wrapper { display: flex; align-items: center; gap: 8px; font-size: 0.85em; color: #ddd; }
.btn-invia { background-color: var(--accent); color: white; padding: 18px; border: none; border-radius: 4px; cursor: pointer; width: 100%; font-weight: bold; text-transform: uppercase; }

/* REGOLE POPUP ORIGINALI RIPRISTINATE */
.modal-privacy {
    display: none; 
    position: fixed; 
    z-index: 9999 !important; 
    left: 0; top: 0; 
    width: 100%; height: 100%; 
    background-color: rgba(0, 5, 15, 0.85) !important; 
    backdrop-filter: blur(8px);
}

.modal-content {
    background-color: #121212 !important; /* Blu notte originale */
    margin: 12% auto;
    padding: 35px;
    border: 1px solid #004a8d !important;
    border-radius: 10px;
    width: 90%;
    max-width: 450px;
    color: #ffffff !important;
    text-align: center;
    box-shadow: 0 0 25px rgba(0, 74, 141, 0.5) !important;
}

.modal-content h3 {
    color: #ffcc00 !important; /* Giallo originale */
    margin-top: 0;
    text-transform: uppercase;
}

.modal-content p {
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 25px;
    color: #ffffff !important;
}

.btn-chiudi {
    padding: 12px 30px;
    background-color: #ffcc00 !important; /* Giallo originale */
    color: #001a33 !important;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    transition: transform 0.2s ease;
}

.btn-chiudi:hover {
    background-color: #e6b800 !important;
    transform: scale(1.05);
}

/* Layout della pagina */
.centra_tutto { display: flex; flex-wrap: wrap; gap: 30px; align-items: flex-start; }
.sx { flex: 2; min-width: 300px; }
.dx { flex: 1; min-width: 250px; text-align: center; }
.dx p { margin-bottom: 15px; }
.dim_img1 { width: 100%; max-width: 360px; height: auto; border-radius: 8px; border: 1px solid var(--border); display: block; margin: 0 auto; }