/* ============================================
   SPONSORISER PAGE - Style SIAB
   Design sobre et professionnel
   ============================================ */

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* Hero Section */
.sponsor-hero {
    background: linear-gradient(135deg, #000000 0%, #1AA45A 100%);
    padding: 120px 20px 80px;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(26, 164, 90, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 0, 0, 0.2) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title span {
    color: #1AA45A;
}

.hero-line {
    width: 100px;
    height: 4px;
    background: #1AA45A;
    margin: 0 auto;
}

/* Content Section */
.sponsor-content-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

/* Dossier Preview */
.dossier-preview {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-top: 5px solid #000000;
    height: 100%;
}

.preview-header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 30px;
}

.preview-logo {
    width: 120px;
    margin-bottom: 15px;
}

.preview-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
}

.preview-content {
    text-align: center;
    padding: 40px 20px;
}

.preview-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #000000 0%, #1AA45A 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.preview-icon i {
    font-size: 60px;
    color: white;
}

.preview-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.preview-info {
    font-size: 14px;
    color: #666;
}

/* Sponsor Info Card */
.sponsor-info-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.section-title {
    font-size: 26px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: #1AA45A;
}

/* Benefits List */
.benefits-list {
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: #000000;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 28px;
    color: white;
}

.benefit-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.benefit-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Steps Section */
.steps-section {
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0%, rgba(26, 164, 90, 0.05) 100%);
    border-radius: 12px;
}

.steps-list {
    margin-top: 20px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #1AA45A;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.step-item p {
    margin: 0;
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

/* Download Section */
.download-section {
    text-align: center;
    margin-top: 40px;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: #000000;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-download:hover {
    background: #1AA45A;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 164, 90, 0.4);
}

.btn-download i {
    font-size: 20px;
}

.download-note {
    margin-top: 25px;
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.download-note i {
    color: #1AA45A;
    font-size: 18px;
}

/* Contact Section */
.sponsor-contact-section {
    padding: 80px 20px;
    background: white;
}

.contact-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 35px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border-top: 4px solid #000000;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: #1AA45A !important; /* Vert pour le fond des icônes */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 30px;
    color: white;
}

.contact-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1AA45A !important; /* Vert pour tous les titres */
    margin-bottom: 20px;
    text-shadow: none !important; /* Enlever text-shadow */
}

.contact-card p {
    font-size: 15px;
    color: #1AA45A !important; /* Vert pour tous les paragraphes */
    margin-bottom: 8px;
    text-shadow: none !important; /* Enlever text-shadow */
}

.contact-card a {
    color: #1AA45A !important; /* Vert pour tous les liens */
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    text-shadow: none !important; /* Enlever text-shadow */
}

.contact-card a:hover {
    color: #158a4f !important; /* Vert foncé au survol */
}

.contact-card strong {
    color: #1AA45A !important; /* Vert pour le texte en gras */
    text-shadow: none !important; /* Enlever text-shadow */
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 36px;
    }
    
    .sponsor-content-section {
        padding: 60px 20px;
    }
    
    .dossier-preview {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .sponsor-hero {
        padding: 80px 20px 60px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .sponsor-info-card {
        padding: 30px 20px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-icon {
        margin: 0 auto;
    }
    
    .btn-download {
        width: 100%;
        justify-content: center;
    }
    
    .download-note {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-card {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 24px;
    }
    
    .preview-logo {
        width: 100px;
    }
    
    .preview-icon {
        width: 100px;
        height: 100px;
    }
    
    .preview-icon i {
        font-size: 50px;
    }
}

