* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #000;
}

a {
    text-decoration: none;
    color: #d0021b;
}

a:hover {
    box-shadow: inset 0 -1px 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* Hero Section - Desktop */
.hero {
    background: rgba(139, 47, 47, 0);
    padding: 20px 0;
    text-align: center;
}

.hero-title {
    font-family: 'Acme', sans-serif;
    font-size: 53px;
    line-height: 54px;
    color: #000;
}

.hero-title span {
    color: #d0021b;
}

.hero-subtitle {
    font-family: 'Acme', sans-serif;
    font-size: 26px;
    margin-top: 20px;
    color: rgba(0, 0, 0, 1);
}

/* Hero Section - Mobile */
.hero-mobile {
    background: rgba(139, 47, 47, 0);
    padding: 20px 0;
    text-align: center;
}

.hero-mobile-image {
    margin-bottom: 20px;
}

.hero-mobile-image img {
    margin: 0 auto;
    max-width: 300px;
}

.hero-mobile-title {
    font-family: 'Acme', sans-serif;
    font-size: 53px;
    line-height: 54px;
    color: #d0021b;
    margin-bottom: 10px;
}

.hero-mobile-region {
    font-size: 20px;
    color: #000;
    margin-bottom: 10px;
}

.hero-mobile-phone {
    font-size: 24px;
    color: #d0021b;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Cards Section (3 colonnes) */
.cards-section {
    background: rgba(248, 231, 28, 0);
    padding: 40px 0;
}

.grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

.col-4 {
    grid-column: span 4;
}

.col-12 {
    grid-column: span 12;
}

.card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.2), 0 0 15px rgba(0, 0, 0, 0.2), 0 0 3px rgba(0, 0, 0, 0.4);
    padding: 20px;
    text-align: center;
}

.card-image {
    margin-bottom: 20px;
}

.card-image img {
    border-radius: 10px;
    margin: 0 auto;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(248, 231, 28, 1);
    color: rgba(0, 0, 0, 1);
    padding: 8px 33px;
    border-radius: 50px;
    font-size: 24px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 255, 255, 0.2), 0 0 3px rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    width: auto;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

/* Typography */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-responsive {
    text-align: left;
}

.description-text {
    font-size: 20px;
    line-height: 26px;
    margin: 30px;
}

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

/* Separator */
.separator {
    margin: 20px 0;
}

.separator img {
    margin: 0 auto;
}

/* Signature style */
.signature {
    font-family: 'Acme', sans-serif;
    font-size: 20px;
    text-align: center;
    margin-top: 30px;
}

.signature p {
    margin: 0;
    line-height: 1.4;
}

/* Click prompt */
.click-prompt {
    font-size: 20px;
    text-align: center;
    margin: 30px;
}

/* Footer Section */
.footer-section {
    background: rgba(0, 0, 0, 0);
    padding: 15px 40px;
}

.contact-info {
    font-size: 19px;
    line-height: 27px;
    text-align: center;
}

.contact-info strong {
    color: #cc0000;
}

/* Utility classes */
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mb-20 { margin-bottom: 20px; }
.mb-25 { margin-bottom: 25px; }

/* Desktop footer animations */
.desktop-animations-prompt {
    font-size: 26px;
    line-height: 36px;
    text-align: center;
    margin: 30px 0;
}

.desktop-animations-prompt span {
    color: #d0021b;
}

/* Mobile animations section */
.mobile-animations {
    margin-top: 40px;
    text-align: center;
}

.mobile-animations-text {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 20px;
}

.mobile-animations-arrow {
    margin: 20px 0;
}

.mobile-animations-arrow img {
    margin: 0 auto;
    max-width: 100px;
}

.mobile-animations-links {
    margin: 20px 0;
}

.mobile-animations-links a {
    display: block;
    margin-bottom: 20px;
}

.mobile-animations-links img {
    margin: 0 auto;
    max-width: 100%;
}

/* MOBILE RESPONSIVE */
@media only screen and (max-width: 800px) {
    .grid {
        grid-template-columns: 1fr;
    }
    
    .col-4 {
        grid-column: span 1;
    }
    
    /* FORCER le padding réduit sur mobile */
    .mobile-only .col-12 {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    /* Mobile: texte centré */
    .text-responsive {
        text-align: center !important;
    }
    
    /* Réduire aussi les marges des description-text sur mobile */
    .mobile-only .description-text {
        margin-left: 0 !important;
        margin-right: 0 !important;
        font-size: 20px;
        line-height: 28px;
    }
    
    .description-text {
        font-size: 23px;
        line-height: 30px;
        margin: 34px 30px;
    }
    
    .btn-primary {
        width: 100%;
        font-size: 20px;
        padding: 5px;
        box-shadow: none;
    }
    
    .card {
        margin-bottom: 20px;
    }
    
    .click-prompt {
        font-size: 25px;
        line-height: 33px;
    }
    
    .signature {
        font-size: 16px;
        line-height: 21px;
        margin: 30px;
    }
    
    .card-image img {
        width: 100%;
        max-width: 500px;
    }
}

/* Desktop/Mobile visibility */
@media only screen and (min-width: 801px) {
    .mobile-only {
        display: none !important;
    }
}

@media only screen and (max-width: 800px) {
    .desktop-only {
        display: none !important;
    }
}