
/* CSS Personnalisé & Thème */
:root {
    --bg-dark-grey: #13171d ;
    --light-blue-transparent: rgba(59, 130, 246, 0.85); /* Bleu clair transparent */
    --accent-blue: rgb(59, 130, 246);
}

body {
    background-color: #222831;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 40px; 
}

/* Navbar avec transparence bleu clair */
.custom-navbar {
    background-color: var(--light-blue-transparent) !important;
    backdrop-filter: blur(8px); /* Effet de flou moderne */
    transition: all 0.3s ease;
}

.navbar-brand img {
    max-height: 40px;
}

.nav-link {
    color: #000000 !important;
    font-weight: 600;
}

.nav-link:hover {
    color: white !important;
}

/* Sections générales */
section {
    padding: 48px 0;
}

#last-release, #about{
    background-color: var(--bg-dark-grey);
}


h2 {
    border-bottom: 2px solid var(--accent-blue);
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 40px;
}


/* Jumbotron */
.jumbotron-custom {
    background: url(    https://raoyc.com/tinyme/static/img/intro-bg.jpg) no-repeat bottom center scroll;
    background-color: black;
    background-size: cover;
    background-attachment: fixed;
}

/* Images carrées */
.img-square {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    width: 100%;
}

/* Cartes d'albums (Discography) */
.card-custom {
    background-color: var(--bg-dark-grey);
    border: 1px solid #333;
    color: #fff;
    transition: transform 0.3s ease;
}

.card-custom:hover {
    transform: translateY(-5px);
}

/* Logos plateformes */
.platform-logos a {
    color: #ffffff;
    font-size: 1.5rem;
    margin-right: 15px;
    transition: color 0.2s ease;
}

.platform-logos a:hover {
    color: var(--accent-blue);
}

/* Formulaire */
.form-control {
    background-color: var(--bg-dark-grey);
    border: 1px solid #444;
    color: #fff;
}

.form-control:focus {
    background-color: #2b2e33;
    color: #fff;
    border-color: var(--accent-blue);
    box-shadow: none;
}

/* Footer */
footer {
    background-color: var(--bg-dark-grey);
    border-top: 1px solid #222;
}

footer a {
    color: #fff;
    font-size: 1.2rem;
    margin-left: 15px;
    transition: color 0.2s;
}

footer a:hover {
    color: var(--accent-blue);
}

#home{
    padding:0;
}

/* Animation de flèche (reproduit animate-bounce de Tailwind) */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.animate-bounce {
    animation: bounce 1s infinite;
}
