* {
	padding: 0;
	margin: 0;
	text-decoration: none;
	list-style: none;
	box-sizing: border-box;
}
@font-face {
	font-family: 'Quicksand-VariableFont_wght';
	src: url('../polices/Quicksand-VariableFont_wght.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'CalSans-Regular';
	src: url('../polices/CalSans-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

/* style/dj.css */

/* --- RESET & BASE --- */
body {
    margin: 0;
    padding: 0;
    font-family: 'Quicksand-VariableFont_wght';;
    background-color: #fcfcfc;
    color: #333;
    line-height: 1.6;
}

/* Conteneur global large */
.wrapper-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* --- HERO SECTION (HEADER) --- */
.dj-hero {
    position: relative;
    height: 40vh; /* Hauteur confortable */
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Effet parralax moderne */
    color: white;
    margin-top: 70px; /* Compensation menu fixe */
    border-bottom-left-radius: 50px; /* Courbe douce en bas */
    border-bottom-right-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'CalSans-Regular';
}

.hero-content p {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* --- SECTION INTRO (ARGUMENTS) --- */
.intro-section {
    padding: 20px 0;
    text-align: center;
}

.intro-section h2{
    font-family: 'CalSans-Regular';
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #333;
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 20px;
}

.intro-item {
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.intro-item:hover {
    transform: translateY(-10px);
}

.intro-icon {
    font-size: 3rem;
    color: #a72879; /* Rose */
    margin-bottom: 20px;
    display: inline-block;
}

.intro-item h3 {
    color: #064497; /* Bleu */
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-family: 'CalSans-Regular';
}

/* --- SECTION PRESTATIONS (ALTERNANCE) --- */
.presta-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.presta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 100px;
}

/* Inverse l'ordre pour une ligne sur deux */
.presta-row.reverse {
    flex-direction: row-reverse;
}

.presta-text {
    flex: 1;
}

.presta-text h2 {
    font-family: 'CalSans-Regular';
}

.presta-image {
    flex: 1;
    position: relative;
}

.presta-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    transition: transform 0.4s ease;
}

.presta-image:hover img {
    transform: scale(1.02);
}

.presta-text h2 {
    font-size: 2.5rem;
    color: #064497;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    font-family: 'CalSans-Regular';
}

/* Petite ligne décorative sous le titre */
.presta-text h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #a72879;
    margin-top: 10px;
    border-radius: 2px;
}

.presta-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.presta-list li {
    position: relative;
    padding-left: 55px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    font-family: 'CalSans-Regular';
}

.presta-list li i {
    position: absolute;
    left: 0;
    top: 0;
    color: #04c11d;
    background: #e8f5e9;
    font-size: 1rem;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
}

/* --- SECTION VILLES (PILLS) --- */
.zone-section {
    padding: 80px 0;
    background-color: #f8f9fa; /* Gris très léger */
    text-align: center;
    border-radius: 50px; /* Forme douce */
    margin-bottom: 50px;
}

.zone-section h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 40px;
    font-family: 'CalSans-Regular';
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.city-tag {
    background: white;
    color: #555;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    font-family: 'CalSans-Regular';
}

.city-tag:hover {
    background: #064497;
    color: #A400A8;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(6, 68, 151, 0.2);
}

/* --- CTA FINAL --- */
.cta-banner {
    background: linear-gradient(125deg, #a72879, #064497);
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    color: white;
    margin-bottom: 80px;
    box-shadow: 0 20px 60px rgba(6, 68, 151, 0.25);
}

.cta-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-family: 'CalSans-Regular';
}

.btn-cta {
    display: inline-block;
    background: white;
    color: #a72879;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    font-family: 'CalSans-Regular';
}

.btn-cta:hover {
    transform: scale(1.05);
    background: #fdfdfd;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

/* --- RESPONSIVE --- */
/* --- RESPONSIVE MOBILE --- */
@media (max-width: 900px) {
    
    /* On passe les lignes en colonne (l'une sous l'autre) */
    .presta-row, .presta-row.reverse {
        flex-direction: column;
        text-align: left; /* Ou center, selon ton goût */
        gap: 20px;
        margin-bottom: 60px; /* Un peu d'espace entre les blocs */
    }
    
    /* Le conteneur de l'image prend toute la largeur */
    .presta-image {
        width: 100%; 
    }
    
    /* L'image elle-même */
    .presta-image img {
        width: 100%;      /* Prend toute la largeur de l'écran (moins les marges) */
        height: 250px;    /* Hauteur fixe pour la régularité */
        object-fit: cover;/* Recadre l'image (zoom) pour remplir le cadre sans écraser */
        border-radius: 15px; /* On réduit un peu l'arrondi sur mobile */
    }
    
    /* Ajustements du texte pour mobile */
    .hero-content h1 {
        font-size: 2rem; /* Titre plus petit sur mobile */
    }
    
    /* Correction pour le soulignement du titre sur mobile */
    .presta-text h2::after {
        width: 50px; /* Soulignement plus petit */
    }
}