/* Variables CSS */
:root {
    --primary-color: #FCE7C8; /* Couleur crème */
    --secondary-color: #181818; /* Noir */
    --accent-color: #FADDBB; /* Or clair */
    --text-dark: #000000; /* Noir pour les avis */
    --text-light: #F3EFE5; /* Beige clair */
    --white: #FFFFFF;
    --background-light: #FFFFFF;
    --success-color: #7ED321;
    --error-color: #FF0000;
}

/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
    overflow-x: hidden;
    max-width: 100vw;
}

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

/* Header */
.header {
    background-color: var(--primary-color);
    padding: 20px 0;
    text-align: center;
}

.logo {
    max-width: 171px;
    height: auto;
}

/* Section principale */
.main-content {
    background-color: var(--background-light);
    padding: 60px 0;
}

.main-content h1 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.2;
}

.main-content h2 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin: 40px 0 20px;
    line-height: 1.2;
}

.main-content h3 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin: 30px 0 15px;
    line-height: 1.2;
}

.content-text {
    margin: 20px 0;
    text-align: left;
}

.content-text p {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.content-text ul {
    margin: 20px 0;
    padding-left: 30px;
}

.content-text li {
    margin: 10px 0;
    font-size: 20px;
    list-style-type: disc;
}

/* Vidéo */
.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 30px;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Images */
.content-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 30px 0;
    border-radius: 10px;
    display: block;
}

.results-image {
    max-width: 60%;
    height: auto;
    margin: 30px auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Bouton CTA */
.cta-button {
    display: block;
    width: 100%;
    max-width: 600px;
    margin: 40px auto;
    padding: 20px 40px;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
    background-color: var(--primary-color);
    color: var(--text-dark);
    position: relative;
}

.cta-button i {
    margin-right: 10px;
    font-size: 18px;
}

.cta-button small {
    display: block;
    font-size: 14px;
    color: rgba(255, 0, 0, 0.8);
    font-weight: 400;
    margin-top: 5px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Footer */
.footer {
    background-color: var(--background-light);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #e0e0e0;
}

.footer-text {
    color: #555555;
    font-size: 14px;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
}

.footer-text p {
    margin-bottom: 10px;
}

.footer-text a {
    color: #555555;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .main-content h1 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .main-content h2 {
        font-size: 24px;
        margin: 30px 0 15px;
    }
    
    .main-content h3 {
        font-size: 22px;
        margin: 25px 0 10px;
    }
    
    .content-text p {
        font-size: 18px;
    }
    
    .content-text li {
        font-size: 18px;
    }
    
    .cta-button {
        font-size: 18px;
        padding: 15px 30px;
        margin: 30px auto;
    }
    
    .results-image {
        max-width: 100%;
    }
    
    .footer-text {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .main-content h1 {
        font-size: 24px;
    }
    
    .main-content h2 {
        font-size: 20px;
    }
    
    .main-content h3 {
        font-size: 18px;
    }
    
    .content-text p, .content-text li {
        font-size: 16px;
    }
    
    .cta-button {
        font-size: 16px;
        padding: 12px 25px;
    }
}
