/* Variables de couleurs */
:root {
    --primary: #007aff;
    --dark: #121212;
    --grey-dark: #1e1e1e;
    --text-light: #ffffff;
    --text-dim: #b3b3b3;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a {
    color: var(--text-light);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark);
    color: var(--text-light);
    line-height: 1.6;
    scroll-behavior: smooth;
}

.container {
    padding: 0 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.follow {
    padding: 50px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.follow li {
    list-style-type: none;
}

/* Header & Nav */
header {
    height: 80px;
    display: flex;
    align-items: center;
    background: rgba(18, 18, 18, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    padding-top: 0.5em; 
}

.logo img {
    width: 10em;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
}

/* Hero Section */
.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('../img/console.png') center/cover;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Boutons */
.btn-main {
    background: var(--primary);
    color: white;
    padding: 15px 30px ;
    margin: 30px 0px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    display: inline-block;
    transition: var(--transition);

}

.btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 122, 255, 0.3);
}

/* Services Section */
#services {
    padding: 100px 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.dates-grid {
    display: grid;
    grid-template-columns: 1fr; /* Mobile First */
    gap: 30px;
}


.services-grid {
    display: grid;
    grid-template-columns: 1fr; /* Mobile First */
    gap: 30px;
}

.service-card {

    padding: 40px;
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid #333;
}

.service-card-live {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('../img/live.png') center/cover;
}

.service-card-mix {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('../img/console2.png') center/cover;
}

.service-card-record {
        background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('../img/micro.jpg') center/cover;
}

.service-card:hover {
    border-color: var(--primary);
}

.service-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-dim);
}


.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 4px 0;
    transition: 0.4s;
}

/* Footer */
footer {
    padding: 80px 0 40px;
    text-align: center;
    background: #0a0a0a;
}

.copyright {
    margin-top: 40px;
    font-size: 0.8rem;
    color: #555;
}

/* RESPONSIVE : Tablettes et Desktop */
@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .dates-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .hero h1 {
        font-size: 4.5rem;
    }
    
}

@media screen and (max-width: 768px) {
    .nav-links {
        display: none; /* Cache le menu par défaut */
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: var(--dark);
        text-align: center;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
        margin-bottom: 15px;
    }

    .nav-links li {
        margin: 0;
    }

    .menu-toggle {
        display: flex;
    }

}