body, html { margin: 0; font-family: 'Montserrat', sans-serif; scroll-behavior: smooth; color: #fff; background: #000; }

nav { position: fixed; width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 20px; background: rgba(0,0,0,0.7); z-index: 1000; }
nav ul { list-style: none; display: flex; }
nav ul li a { color: white; text-decoration: none; margin: 0 15px; font-weight: bold; text-transform: uppercase; font-size: 0.9em; }

.parallax, .parallax-mice {
    height: 100vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex; align-items: center; justify-content: center; text-align: center;
}

/* SOSTITUISCI QUESTI URL CON FOTO REALI DELLA REP. DOMINICANA */
.parallax { background-image: url('https://images.unsplash.com/photo-1584132967334-10e028bd69f7?auto=format&fit=crop&q=80&w=1920'); }
.parallax-mice { background-image: url('https://images.unsplash.com/photo-1544644181-1484b3fdfc62?auto=format&fit=crop&q=80&w=1920'); }

.overlay { background: rgba(0,0,0,0.4); padding: 50px; border-radius: 10px; animation: fadeIn 2s; }
.content { padding: 100px 20px; text-align: center; background: #fff; color: #333; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.lang-switcher button { background: #007bff; color: white; border: none; padding: 5px 10px; cursor: pointer; margin-left: 5px; border-radius: 3px; }
