@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

:root {
    --primary-color: #a78bfa;
    --secondary-color: #4ade80;
    --accent-color: #22d3ee;
    --dark-color: #1e293b;
}

body {
    font-family: "Lato", sans-serif;
}

.hero-section {
    background:
            url('/img/vincennes.webp') center/cover;
    color: white;
    padding: 120px 0;
    text-align: center;
    position: relative;
}

.carousel{
    max-width: 550px;
    margin: 0 auto;
}
.carousel-control-next, .carousel-control-prev{
    opacity: 1;
}
.carousel-control-next-icon{
    background-color: rgba(0, 0, 0, 0.7) ;
    border-radius: 50px;
    background-size: 70%, 70%;
    width: 2.8rem;
    height: 2.8rem;
}
.carousel-control-prev-icon{
    background-color: rgba(0, 0, 0, 0.7) ;
    border-radius: 50px;
    background-size: 70%, 70%;
    width: 2.8rem;
    height: 2.8rem;
}

.hero-section h1 {
    font-size: 2.4rem;
    font-weight: bold;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    box-shadow: 3px 3px 6px rgba(0,0,0,0.8);
    letter-spacing: 2px;
    background: rgba(255, 255, 255, 0.7);
    padding: 10px 30px;
    color: #333;
    border-radius: 30px;
    width: fit-content;
}

.hero-section .subtitle {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.hero-section p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.btn-inscription {
    background: #41C0C7;
    color: white;
    font-size: 1.8rem;
    line-height: 1.1em;
    padding: 20px 40px;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
    letter-spacing: 2px;
    width: fit-content;
}

.btn-inscription:hover {
    background: linear-gradient(135deg, #3b82f6, var(--accent-color));
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.logo-section {
    background-color: white;
    padding: 60px 0;
}

.logo-section img {
    max-width: 400px;
    height: auto;
    margin: 0 auto;
    display: block;
}

.section-title {
    color: var(--dark-color);
    font-weight: bold;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 20px;
    font-size: 2.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.format-card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    height: 100%;
}

.format-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.format-card .card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 35px;
    font-size: 2.2rem;
    font-weight: bold;
}

.format-card .card-body {
    padding: 40px 30px;
}

.format-card .distance {
    font-size: 3.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
}

.card-footer{
    background: #FFF;
    font-size: 1.1em;
    padding: 20px;
}

.feature-icon {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.feature-box {
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 15px;
}

.img-parcours{
    width: auto;
    max-height: 95vh;
    margin: 0 auto;
    display: block;
    max-width: 100%;
}

.feature-box:hover {
    transform: scale(1.08);
    background-color: #f8fafc;
}

.feature-box h4 {
    color: var(--dark-color);
    font-weight: bold;
    margin-top: 15px;
    font-size: 1.4rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 100px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    font-weight: bold;
}

.info-section {
    background-color: #f8fafc;
    padding: 80px 0;
}

.photo-section {
    padding: 80px 0;
    background-color: white;
}

.photo-section img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.solidaire-badge {
    background: #af74DB;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    display: inline-block;
    font-weight: bold;
    margin-bottom: 25px;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
hr{
    width: 50px;
    margin: 16px auto;
}

.date-badge {
    background-color: white;
    color: var(--dark-color);
    padding: 10px 30px;
    border-radius: 15px;
    display: inline-block;
    font-weight: bold;
    font-size: 1.3rem;
    margin-top: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

footer {
    background-color: var(--dark-color);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.pulse {
    animation: pulse 2s infinite;
}

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

.info-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    height: 100%;
    transition: all 0.3s ease;
}

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

.info-card h4 {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 1.6rem;
}