/* Import des polices */
@font-face {
    font-family: 'Blondel';
    src: url('Blondel.otf') format('opentype');
}

@font-face {
    font-family: 'SainteCroix';
    src: url('SainteCroix-Regular.woff') format('woff');
}

/* Variables globales */
:root {
    --primary-color: #d4af37;
    --secondary-color: #1e1e1e;
    --text-color: #ffffff;
    --gradient: linear-gradient(135deg, #1e1e1e, #3a3a3a);
    --gold-gradient: linear-gradient(90deg, #FFD700, #FFB700);
}

/* Reset de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    font-family: 'SainteCroix', sans-serif;
    background: var(--gradient);
    color: var(--text-color);
    overflow-x: hidden;
}

/* Grille de base */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col {
    padding: 15px;
    flex: 1 0 0%;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

@media (max-width: 768px) {
    .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Header */
header {
    text-align: center;
    padding: 60px 15px;
    animation: fadeInDown 1s ease-out;
}

.gradient-text {
    font-family: 'Blondel', sans-serif;
    font-size: 3rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.lead {
    font-size: 1.5rem;
    margin-top: 10px;
}

/* Boutons */
.btn-gold {
    background: var(--primary-color);
    color: #000;
    font-weight: bold;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-gold:hover {
    background-color: #c19a34;
    transform: scale(1.1);
}

/* Section vidéo */
.video-container iframe {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1s ease-out;
}

@media (max-width: 1024px) {
    .video-container iframe {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .video-container iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .video-container iframe {
        height: 250px;
    }
}

/* Formulaire */
.newsletter-form {
    background-color: var(--secondary-color);
    border: 2px solid var(--primary-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    animation: zoomIn 1s ease-out;
}

.newsletter-form:hover {
    transform: translateY(-5px);
}

.newsletter-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: none;
    border-radius: 5px;
    background-color: #2a2a2a;
    color: var(--text-color);
}

.newsletter-form input:focus {
    outline: none;
    border: 1px solid var(--primary-color);
}

.newsletter-form button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    background: var(--primary-color);
    color: #000;
    font-weight: bold;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #c19a34;
    transform: scale(1.05);
}

/* Témoignages */
.testimonials {
    text-align: center;
    animation: fadeIn 1.5s ease-out;
    padding: 40px 0;
}

.testimonials h2 {
    margin-bottom: 30px;
}

.testimonials blockquote {
    font-style: italic;
    color: var(--primary-color);
    margin: 20px auto;
    border-left: 4px solid var(--primary-color);
    padding-left: 15px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Footer */
footer {
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
    color: #ccc;
    background-color: #111;
}

/* Version tablette (max-width: 768px) */
@media (max-width: 768px) {
    header {
        padding: 40px 10px;
    }

    .gradient-text {
        font-size: 2.5rem;
    }

    .lead {
        font-size: 1.2rem;
    }

    .newsletter-form {
        padding: 20px;
    }

    .testimonials blockquote {
        font-size: 1rem;
    }
}

/* Version téléphone (max-width: 480px) */
@media (max-width: 480px) {
    header {
        padding: 30px 10px;
    }

    .gradient-text {
        font-size: 2rem;
    }

    .lead {
        font-size: 1rem;
    }

    .newsletter-form {
        padding: 15px;
    }

    .btn-gold {
        font-size: 0.9rem;
    }

    .testimonials blockquote {
        font-size: 0.9rem;
    }
}
