/* VARIABLES ET POLICES */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #080808;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* COULEURS ET ACCENTS */
span {
    color: #ff9900; /* Couleur Or officielle */
}

/* NAVIGATION BAR */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(8, 8, 8, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    z-index: 1000;
}

header .logo {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 2px;
}

header nav a {
    color: #cccccc;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    margin-right: 30px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

header nav a:hover {
    color: #ff9900;
}

header .header-socials a {
    color: #ffffff;
    font-size: 20px;
    transition: color 0.3s;
}

header .header-socials a:hover {
    color: #ff9900;
}

/* HOME HERO SECTION */
.hero-section {
    height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.6), #080808), url('https://images.unsplash.com/photo-1598488035139-bdbb2231ce04?q=80&w=1920') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    margin-top: 60px;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #ff9900;
    color: #000000;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    letter-spacing: 1px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 153, 0, 0.4);
}

/* ELEMENTS GENERAUX DE STRUCTURE */
.section-container {
    padding: 100px 8%;
    background-color: #080808;
}

.bg-darker {
    background-color: #030303;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.section-title {
    font-size: 36px;
    font-weight: 900;
    text-align: center;
    letter-spacing: 2px;
    margin-bottom: 60px;
}

.section-subtitle {
    text-align: center;
    color: #888888;
    margin-top: -50px;
    margin-bottom: 50px;
    font-size: 16px;
}

/* GRILLE ARTISTES (PROPRE ET FIXÉE) */
.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.artist-card {
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
}

.artist-card:hover {
    transform: translateY(-10px);
    border-color: #ff9900;
}

.artist-img-container {
    width: 100%;
    height: 380px;
    overflow: hidden;
    background-color: #1a1a1a;
}

.artist-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Recadre proprement l'image sans déformer */
}

.artist-info {
    padding: 25px;
    text-align: center;
}

.artist-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.artist-role {
    color: #888888;
    font-size: 14px;
    margin-bottom: 20px;
}

.btn-social-art {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid #ff9900;
    color: #ff9900;
    text-decoration: none;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    transition: background 0.3s, color 0.3s;
}

.btn-social-art:hover {
    background: #ff9900;
    color: #000000;
}

/* DISCOGRAPHIE / BEN-TO GRIDS */
.disco-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
}

.release-card {
    background: #111111;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 25px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.release-img-box {
    width: 140px;
    height: 140px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.release-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.release-details h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.release-artist {
    color: #ff9900;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 14px;
}

.btn-listen {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    transition: opacity 0.3s;
}

.btn-listen:hover {
    opacity: 0.9;
}

.youtube-color {
    background-color: #e50914;
    color: #ffffff;
}

.smartlink-color {
    background-color: #ffffff;
    color: #000000;
}

/* PORTAIL CONTACT FORM */
.contact-box {
    max-width: 700px;
    margin: 0 auto;
    background: #111111;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.main-form .input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.main-form .input-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.main-form label {
    font-size: 13px;
    font-weight: 600;
    color: #aaaaaa;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-form input, .main-form textarea {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px;
    border-radius: 8px;
    color: #ffffff;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s;
}

.main-form input:focus, .main-form textarea:focus {
    outline: none;
    border-color: #ff9900;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: #ffffff;
    color: #000000;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    letter-spacing: 1px;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #ff9900;
}

/* FOOTER */
footer {
    padding: 40px 8%;
    background: #030303;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: #666666;
    font-size: 13px;
}

.footer-mail {
    margin-top: 10px;
}

/* COMPATIBILITÉ MOBILE / RESPONSIVE */
@media (max-width: 768px) {
    .main-form .input-row {
        grid-template-columns: 1fr;
    }
    .disco-grid {
        grid-template-columns: 1fr;
    }
    .hero-content h1 {
        font-size: 36px;
    }
    header {
        padding: 20px 4%;
    }
}
