/* Reset CSS - Rimuove gli stili predefiniti del browser */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Stile del body - Sfondo con immagine e font personalizzato */
body {
    background-image: url('images/background-u10175-fr.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Overlay scuro per migliorare la leggibilità del testo */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1;
    pointer-events: none;
}

/* Hero Section - Logo e Social al centro della pagina */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

/* Container principale - Centra tutto il contenuto */
.container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* Container del logo - Organizza logo e testo */
.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    animation: fadeInUp 1.5s ease-out;
}

/* Stile del logo - Dimensioni e animazione */
.logo {
    width: 400px;
    height: 400px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}



/* Nome del brand - Stile elegante */
.brand-name {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin: 0;
    background: linear-gradient(45deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
}

/* Tagline - Sottotitolo elegante */
.tagline {
    font-size: 1.2rem;
    font-weight: 300;
    color: #cccccc;
    letter-spacing: 0.1em;
    margin: 0;
    opacity: 0.8;
}

/* Social Media Icons - Container delle icone social */
.social-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    animation: fadeInUp 1.5s ease-out 0.5s both;
}

/* Stile delle singole icone social */
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Immagine delle icone social */
.social-icon-img {
    width: 25px;
    height: 25px;
    transition: transform 0.3s ease;
}

.social-icon:hover .social-icon-img {
    transform: scale(1.1);
}

/* Effetto di click per i link social */
.social-icon:active {
    transform: translateY(-1px) scale(0.95);
    transition: transform 0.1s ease;
}

/* Music Section - Sezione per il player SoundCloud */
.music-section {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    position: relative;
    z-index: 2;
}

/* SoundCloud Player - Stile del container del player */
.soundcloud-player {
    width: 100%;
    max-width: 600px;
    animation: fadeInUp 1.5s ease-out 0.5s both;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

/* Stile dell'iframe di SoundCloud */
.soundcloud-player iframe {
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.soundcloud-player:hover iframe {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.15);
}

/* Crediti SoundCloud - Stile per i link sotto il player */
.soundcloud-credits {
    font-size: 10px;
    color: #cccccc;
    line-break: anywhere;
    word-break: normal;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-family: Interstate, Lucida Grande, Lucida Sans Unicode, Lucida Sans, Garuda, Verdana, Tahoma, sans-serif;
    font-weight: 100;
    margin-top: 2px;
    text-align: center;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.soundcloud-credits:hover {
    opacity: 1;
}

.soundcloud-credits a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.soundcloud-credits a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Animazione di entrata - Il contenuto appare dal basso */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animazione del glow - Effetto luminoso sul testo */
@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    }
    to {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
    }
}

/* Responsive design - Adattamento per dispositivi mobili */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .logo {
        width: 200px;
        height: 200px;
    }
    
    .brand-name {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .social-icons {
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
    }
    
    .social-icon-img {
        width: 22px;
        height: 22px;
    }
    
    .hero-section {
        padding: 1rem;
    }
    
    .music-section {
        padding: 2rem 1rem;
    }
    
    .soundcloud-player {
        max-width: 400px;
    }
    
    .soundcloud-player iframe {
        height: 200px;
    }
    
    .soundcloud-credits {
        font-size: 9px;
        margin-top: 6px;
    }
}

/* Effetto particelle di sfondo - Sottile per non interferire con l'immagine */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
    background-size: 50px 50px, 30px 30px, 40px 40px;
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 3;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
} 