:root {
    --primary-color: #92278f;
    --secondary-color: #079141;
    --accent-color: #ff6b35;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-color);
}

.header-gradient {
    background: linear-gradient(
        135deg,
        var(--primary-color) 0%,
        var(--secondary-color) 100%
    );
    color: white;
    padding: 8px 0;
}

.header-gradient p {
    margin: 0;
    font-size: 0.9rem;
}

/* .logo {
            height: 80px;
        } */

.navbar-custom {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-custom .nav-link {
    color: var(--dark-color);
    font-weight: 500;
    padding: 15px 20px;
    transition: all 0.3s;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: var(--primary-color);
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Hero Section améliorée */
.hero-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 20px;
}

/* .hero-content h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
        } */

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.btn-hero {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s;
}

.btn-hero:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.section-title .divider {
    height: 3px;
    width: 80px;
    background: var(--primary-color);
    margin: 0 auto;
}

.info-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    height: 100%;
    transition: all 0.3s;
    border-top: 4px solid var(--primary-color);
    margin-bottom: 20px;
}

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

.info-card .card-icon {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.info-card p {
    color: #6c757d;
    font-size: 0.95rem;
}

.download-section {
    background-color: var(--light-color);
    padding: 50px 0;
    text-align: center;
}

.btn-download {
    background-color: var(--secondary-color);
    color: white;
    padding: 12px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-download:hover {
    background-color: #0f8e40;
    transform: translateY(-2px);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.btn-download i {
    animation: pulse 2s infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .logo {
        height: 60px;
    }

    .info-card {
        padding: 20px;
    }
}

.footer-unique {
    width: 100%;
    height: 263px;
    overflow-y: hidden;
}

@media only screen and (max-width: 760px) {
    .footer-unique {
        width: 100%;
        height: 360px;
        overflow-y: hidden;
    }
}

@media only screen and (max-width: 940px) {
    .footer-unique {
        width: 100%;
        height: 450px;
        overflow-y: hidden;
    }
}
