
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    font-size: 1.125rem; /* Augmentation de la taille de base */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem; /* Augmentation du padding */
    border-radius: 0.5rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 1.25rem; /* Augmentation de la taille de police */
}

.btn-primary {
    background-color: #3B82F6;
    color: white;
}

.btn-primary:hover {
    background-color: #2563EB;
}

.btn-secondary {
    background-color: transparent;
    color: #3B82F6;
    border: 2px solid #3B82F6;
}

.btn-secondary:hover {
    background-color: #EFF6FF;
}

.section-title {
    font-size: 3rem; /* Augmentation de la taille */
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

.card {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 2rem; /* Augmentation du padding */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.timeline-item {
    position: relative;
    padding-left: 2rem;
    font-size: 1.25rem; /* Augmentation de la taille de police */
}

.timeline-item:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 1.5rem; /* Augmentation de la taille */
    height: 1.5rem; /* Augmentation de la taille */
    border-radius: 50%;
    background-color: #3B82F6;
}

@media (min-width: 768px) {
    .timeline-item {
        padding-left: 0;
        padding-top: 2rem;
    }
    
    .timeline-item:before {
        left: 50%;
        top: 0;
        transform: translateX(-50%);
    }
}

.accordion-button {
    width: 100%;
    text-align: left;
    background: white;
    border: none;
    padding: 1.25rem 2rem; /* Augmentation du padding */
    font-weight: 600;
    font-size: 1.5rem; /* Augmentation de la taille de police */
    border-bottom: 1px solid #E5E7EB;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-button:focus {
    outline: none;
}

.accordion-button:hover {
    background-color: #F9FAFB;
}

.accordion-content {
    padding: 2rem; /* Augmentation du padding */
    background: #F9FAFB;
    border-bottom: 1px solid #E5E7EB;
    font-size: 1.125rem; /* Augmentation de la taille de police */
}

.sticky-price {
    position: sticky;
    top: 2rem;
    font-size: 1.25rem; /* Augmentation de la taille de police */
}

@media (max-width: 767px) {
    .sticky-price {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        padding: 1.5rem; /* Augmentation du padding */
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        z-index: 100;
    }
    
    .section-title {
        font-size: 2.5rem; /* Taille adaptée pour mobile */
    }
    
    .btn {
        font-size: 1.125rem; /* Taille adaptée pour mobile */
        padding: 0.875rem 1.5rem; /* Padding adapté pour mobile */
    }
}
/* Parallax effect */
.hovered-element {
    transition: transform 0.1s ease-out;
}

/* Glow effect for superhero and other elements */
.glow-scroll {
    transition: all 0.3s ease;
}

.glow-scroll:hover {
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
    transform: scale(1.05);
}

/* Hero section enhancements */
.hero-background {
    transform: scale(1.1);
    transform-origin: center;
}
