* { margin: 0; padding: 0; box-sizing: border-box; }

body, html {
    height: 100%; width: 100%;
    font-family: 'Lora', serif;
    background-color: #000;
    overflow: hidden;
    color: #ffffff;
}
/* Regola standard */
::selection {
  background-color: #f7f7f7;
  color: #000000;
}

/* Supporto per vecchie versioni di Firefox */
::-moz-selection {
  background-color: #f7ff7;
  color: #000000;
}
*
{
    outline: non;
}
.carousel-container {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
}

.slide {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active { opacity: 1; }

.overlay {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.content {
    position: relative;
    z-index: 3;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

h1 { font-size: clamp(1.8rem, 5vw, 3rem); font-weight: 400; letter-spacing: 5px; text-transform: uppercase; margin-bottom: 20px; }
.divider { width: 40px; height: 1px; background-color: rgba(255, 255, 255, 0.5); border: none; margin-bottom: 25px; }
p { font-size: clamp(0.9rem, 2.5vw, 1.1rem); font-style: italic; opacity: 0.8; margin-bottom: 35px; }

.social-links { display: flex; gap: 30px; }
.social-links a:link, .social-links a:visited { color: #ffffff !important; text-decoration: none; font-size: 1.6rem; opacity: 0.6; transition: 0.4s; }
.social-links a:hover { opacity: 1; transform: translateY(-5px); }

/* PUNTINI DI NAVIGAZIONE */
.indicators {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 999; /* Valore altissimo per stare sopra a tutto */
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: 0.4s;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.dot:hover { background: rgba(255, 255, 255, 0.8); }
.dot.active { background: #ffffff; transform: scale(1.2); }