/* Reset et base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Comic Neue', cursive;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

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

/* Hero Section AM */
.am-hero {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.am-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.2)"/><circle cx="80" cy="60" r="3" fill="rgba(255,255,255,0.15)"/><circle cx="50" cy="80" r="1.5" fill="rgba(255,255,255,0.25)"/></svg>') repeat;
    background-size: 100px 100px;
    animation: sparkle-youth 8s ease-in-out infinite;
}

@keyframes sparkle-youth {
    0%, 100% { opacity: 0.5; transform: translateY(0px); }
    50% { opacity: 1; transform: translateY(-5px); }
}

.am-hero .container {
    position: relative;
    z-index: 2;
}

.am-title {
    font-family: 'Bangers', cursive;
    font-size: 4em;
    color: #fff;
    text-shadow: 5px 5px 0 #333;
    text-align: center;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.am-subtitle {
    color: #fff;
    text-align: center;
    font-size: 1.5em;
    margin-bottom: 30px;
    text-shadow: 2px 2px 0 #333;
    font-weight: 700;
}

/* Section Jeunes */
.youth-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fd79a8 0%, #fdcb6e 100%);
    position: relative;
    overflow: hidden;
}

.youth-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 75%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 25%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.youth-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,10 60,30 40,30" fill="rgba(255,255,255,0.1)"/><circle cx="20" cy="70" r="8" fill="rgba(255,255,255,0.08)"/><rect x="70" y="60" width="15" height="15" fill="rgba(255,255,255,0.12)"/></svg>');
    background-size: 200px 200px;
    animation: float-youth 20s linear infinite;
    opacity: 0.8;
}

@keyframes float-youth {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.youth-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.youth-icon {
    font-size: 8em;
    text-align: center;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
    animation: bounce-youth 3s ease-in-out infinite;
}

@keyframes bounce-youth {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-15px) scale(1.1); }
}

.youth-text {
    color: #fff;
}

.youth-text h2 {
    font-family: 'Bangers', cursive;
    font-size: 3.2em;
    color: #fff;
    text-shadow: 3px 3px 0 rgba(0,0,0,0.5);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.youth-text p {
    font-size: 1.4em;
    line-height: 1.7;
    margin-bottom: 35px;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.3);
    font-weight: 600;
}

.youth-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 35px 0;
}

.youth-benefit {
    background: rgba(108, 92, 231, 0.2);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.youth-benefit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.7s ease;
}

.youth-benefit:hover::before {
    left: 100%;
}

.youth-benefit:hover {
    transform: translateY(-10px) rotate(2deg);
    background: rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.6);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.youth-benefit-icon {
    font-size: 3em;
    margin-bottom: 15px;
    display: block;
}

.youth-benefit h4 {
    font-family: 'Bangers', cursive;
    font-size: 1.5em;
    margin-bottom: 10px;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.3);
    text-transform: uppercase;
}

.youth-benefit p {
    font-size: 1em;
    margin: 0;
    opacity: 0.95;
    font-weight: 500;
}

.btn-youth {
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
    color: #fff;
    padding: 20px 50px;
    font-size: 1.6em;
    border-radius: 50px;
    border: 4px solid rgba(255,255,255,0.4);
    text-shadow: 2px 2px 0 #333;
    box-shadow: 
        0 10px 25px rgba(0,0,0,0.3),
        inset 0 2px 0 rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: pulse-youth 2s ease-in-out infinite;
}

@keyframes pulse-youth {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.btn-youth::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

.btn-youth:hover::before {
    left: 100%;
}

.btn-youth:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 35px rgba(0,0,0,0.4),
        inset 0 2px 0 rgba(255,255,255,0.5);
    animation: none;
}

/* Advantages Section pour AM */
.advantages-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
    position: relative;
    overflow: hidden;
}

.advantages-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 30% 70%, #fff 8%, transparent 70%);
    opacity: 0.1;
    pointer-events: none;
}

.advantages-section .container {
    position: relative;
    z-index: 2;
}

.advantages-title {
    font-family: 'Bangers', cursive;
    font-size: 3.2em;
    color: #333;
    text-shadow: 3px 3px 0 #fff;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.advantage-card {
    background: #fff;
    border-radius: 25px;
    border: 4px solid #333;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 
        6px 6px 0 #333,
        12px 12px 0 rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.15), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
    opacity: 0;
}

.advantage-card:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.advantage-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 
        8px 8px 0 #6c5ce7,
        16px 16px 0 rgba(0,0,0,0.2);
}

.advantage-card:nth-child(1) {
    border-color: #fd79a8;
}

.advantage-card:nth-child(2) {
    border-color: #fdcb6e;
}

.advantage-card:nth-child(3) {
    border-color: #6c5ce7;
}

.advantage-card:nth-child(4) {
    border-color: #00b894;
}

.advantage-icon {
    font-size: 5em;
    margin-bottom: 20px;
    display: block;
}

.advantage-name {
    font-family: 'Bangers', cursive;
    font-size: 1.8em;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.advantage-description {
    color: #666;
    line-height: 1.6;
    font-size: 1.05em;
}

/* Pricing Section pour AM */
.pricing-section {
    padding: 100px 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #e17055 0%, #d63031 100%);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 20% 30%, #fff 8%, transparent 70%);
    opacity: 0.08;
    pointer-events: none;
}

.pricing-section .container {
    position: relative;
    z-index: 2;
}

.pricing-title {
    font-family: 'Bangers', cursive;
    font-size: 3.5em;
    color: #fff;
    text-shadow: 4px 4px 0 #333;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    border-radius: 25px;
    border: 4px solid #333;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 
        8px 8px 0 #333,
        16px 16px 0 rgba(0,0,0,0.2);
    animation: float-am 10s ease-in-out infinite;
}

.service-card:nth-child(2) {
    animation-delay: -3s;
}

.service-card:nth-child(3) {
    animation-delay: -6s;
}

@keyframes float-am {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1.5deg); }
}

.service-card:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 
        12px 12px 0 #6c5ce7,
        24px 24px 0 rgba(0,0,0,0.3);
}

.service-card.featured {
    border-color: #fd79a8;
    transform: scale(1.05);
}

.featured-banner {
    background: linear-gradient(135deg, #fd79a8 0%, #fdcb6e 100%);
    color: #fff;
    text-align: center;
    padding: 12px 15px;
    font-family: 'Bangers', cursive;
    font-size: 1.2em;
    text-shadow: 2px 2px 0 #333;
    border-bottom: 3px solid #333;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-banner::before {
    content: '🌟';
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    font-size: 1.3em;
}

.featured-banner::after {
    content: '🌟';
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    font-size: 1.3em;
}

.card-header {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: #fff;
    padding: 35px 30px;
    text-align: center;
    border-bottom: 4px solid #333;
    position: relative;
}

.service-card.featured .card-header {
    background: linear-gradient(135deg, #fd79a8 0%, #fdcb6e 100%);
}

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    border-radius: 50%;
    border: 4px solid #333;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.service-icon:hover {
    transform: rotate(10deg);
}

.service-icon i {
    font-size: 3em;
    color: #333;
}

.price-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #00b894;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-family: 'Bangers', cursive;
    font-size: 1.4em;
    border: 3px solid #333;
    text-shadow: 1px 1px 0 #333;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.card-content {
    padding: 35px 30px;
}

.card-content h3 {
    font-family: 'Bangers', cursive;
    font-size: 2.2em;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
    text-transform: uppercase;
}

.card-content p {
    color: #666;
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.2em;
    font-weight: 600;
}

.features-list {
    list-style: none;
    margin-bottom: 35px;
}

.features-list li {
    padding: 12px 0;
    color: #333;
    font-weight: 600;
    font-size: 1.1em;
    border-bottom: 2px dashed #eee;
}

.features-list li:last-child {
    border-bottom: none;
}

.card-content .btn-comic {
    width: 100%;
    text-align: center;
    display: block;
}

.pricing-note {
    text-align: center;
    margin-top: 50px;
    background: rgba(255,255,255,0.15);
    padding: 25px;
    border-radius: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.pricing-note p {
  color: #fff;
  font-size: 1.2em;
  margin: 0;
  font-weight: 600;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.3);
}

.pricing-link {
  color: #fdcb6e;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.pricing-link:hover {
  color: #fd79a8;
}

/* Formation Section pour AM */
.formation-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fdcb6e 0%, #fd79a8 100%);
    position: relative;
    overflow: hidden;
}

.formation-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 60% 40%, #fff 8%, transparent 70%);
    opacity: 0.1;
    pointer-events: none;
}

.formation-title {
    color: #333;
    text-shadow: 2px 2px 0 #fff;
    font-family: 'Bangers', cursive;
    font-size: 3.2em;
    margin-bottom: 60px;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 2px;
}

.formation-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.formation-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    transform: translateX(-50%);
    border-radius: 3px;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 70px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: #fff;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5em;
    border: 5px solid #333;
    z-index: 2;
    position: relative;
    box-shadow: 
        0 10px 20px rgba(0,0,0,0.3),
        inset 0 2px 0 rgba(255,255,255,0.3);
    transition: transform 0.3s ease;
}

.timeline-marker:hover {
    transform: rotate(10deg) scale(1.1);
}

.timeline-content {
    background: #fff;
    border-radius: 25px;
    border: 4px solid #333;
    padding: 35px;
    margin: 0 50px;
    flex: 1;
    box-shadow: 
        6px 6px 0 #333,
        12px 12px 0 rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translate(-3px, -3px);
    box-shadow: 
        8px 8px 0 #00b894,
        16px 16px 0 rgba(0,0,0,0.15);
}

.timeline-content h3 {
    font-family: 'Bangers', cursive;
    font-size: 2em;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.timeline-content p {
    color: #666;
    line-height: 1.7;
    font-size: 1.1em;
}

/* Skills Section pour AM */
.skills-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 100%);
    position: relative;
    overflow: hidden;
}

.skills-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 40% 60%, #fff 8%, transparent 70%);
    opacity: 0.1;
    pointer-events: none;
}

.skills-title {
    font-family: 'Bangers', cursive;
    font-size: 3.2em;
    color: #333;
    text-shadow: 3px 3px 0 #fff;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.skill-card {
    background: #fff;
    border-radius: 25px;
    border: 4px solid #333;
    padding: 35px;
    text-align: center;
    box-shadow: 
        6px 6px 0 #333,
        12px 12px 0 rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.skill-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s;
    opacity: 0;
}

.skill-card:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.skill-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 
        8px 8px 0 #fd79a8,
        16px 16px 0 rgba(0,0,0,0.2);
}

.skill-number {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: #fff;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bangers', cursive;
    font-size: 2em;
    margin: 0 auto 25px;
    border: 4px solid #333;
    text-shadow: 2px 2px 0 #333;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.skill-number:hover {
    transform: rotate(360deg);
}

.skill-card h3 {
    font-family: 'Bangers', cursive;
    font-size: 1.8em;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.skill-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1.1em;
}

/* Access Conditions Section */
.access-conditions-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
    position: relative;
    overflow: hidden;
}

.access-conditions-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 70% 30%, #fff 8%, transparent 70%);
    opacity: 0.1;
    pointer-events: none;
}

.access-title {
    font-family: 'Bangers', cursive;
    font-size: 3.2em;
    color: #333;
    text-shadow: 3px 3px 0 #fff;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.access-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.access-card {
    background: #fff;
    border-radius: 25px;
    border: 4px solid #333;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 
        6px 6px 0 #333,
        12px 12px 0 rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.access-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s;
    opacity: 0;
}

.access-card:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.access-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 
        8px 8px 0 #00b894,
        16px 16px 0 rgba(0,0,0,0.2);
}

.access-icon {
    font-size: 4.5em;
    margin-bottom: 20px;
    display: block;
}

.access-card h3 {
    font-family: 'Bangers', cursive;
    font-size: 1.6em;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.access-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1.1em;
}

/* Parents Section */
.parents-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fab1a0 0%, #e17055 100%);
    position: relative;
    overflow: hidden;
}

.parents-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 30% 80%, #fff 8%, transparent 70%);
    opacity: 0.1;
    pointer-events: none;
}

.parents-title {
    font-family: 'Bangers', cursive;
    font-size: 3.2em;
    color: #333;
    text-shadow: 3px 3px 0 #fff;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.parents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.parent-card {
    background: #fff;
    border-radius: 25px;
    border: 4px solid #333;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 
        6px 6px 0 #333,
        12px 12px 0 rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.parent-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s;
    opacity: 0;
}

.parent-card:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.parent-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 
        8px 8px 0 #fab1a0,
        16px 16px 0 rgba(0,0,0,0.2);
}

.parent-icon {
    font-size: 4em;
    margin-bottom: 20px;
    display: block;
}

.parent-card h3 {
    font-family: 'Bangers', cursive;
    font-size: 1.6em;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.parent-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1.05em;
}

/* Boutons Comic */
.btn-comic {
    display: inline-block;
    padding: 18px 35px;
    font-family: 'Bangers', cursive;
    font-size: 1.3em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 30px;
    border: 4px solid #333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 
        5px 5px 0 #333,
        10px 10px 0 rgba(0,0,0,0.15);
}

.btn-comic.primary {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: #fff;
    text-shadow: 2px 2px 0 #333;
}

.btn-comic:hover {
    transform: translate(-3px, -3px);
    box-shadow: 
        8px 8px 0 #333,
        16px 16px 0 rgba(0,0,0,0.2);
}

/* Formation modalities button */
.formation-modalities-button {
    text-align: center;
    margin-top: 60px;
    width: 100%;
}

.modalities-btn {
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
    color: #fff;
    padding: 20px 45px;
    font-size: 1.4em;
    text-shadow: 2px 2px 0 #333;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .access-grid,
    .parents-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .youth-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .youth-icon {
        font-size: 6em;
    }
}

@media (max-width: 768px) {
    .am-title {
        font-size: 3em;
    }
    
    .am-subtitle {
        font-size: 1.3em;
    }
    
    .advantages-grid,
    .skills-grid,
    .access-grid,
    .parents-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .advantages-title,
    .skills-title,
    .formation-title,
    .access-title,
    .parents-title {
        font-size: 2.5em;
    }
    
    .pricing-title {
        font-size: 2.8em;
    }
    
    .formation-timeline::before {
        left: 40px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 120px;
    }
    
    .timeline-marker {
        position: absolute;
        left: 0;
        width: 80px;
        height: 80px;
        font-size: 2em;
    }
    
    .timeline-content {
        margin: 0;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-card.featured {
        transform: none;
    }
    
    .service-card:hover {
        transform: translateY(-5px);
    }
    
    .youth-section {
        padding: 80px 0;
    }
    
    .youth-text h2 {
        font-size: 2.5em;
    }
    
    .youth-text p {
        font-size: 1.2em;
    }
    
    .youth-benefits {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .btn-youth {
        padding: 18px 40px;
        font-size: 1.4em;
    }
    
    .youth-icon {
        font-size: 5em;
    }
}

@media (max-width: 480px) {
    .am-title {
        font-size: 2.5em;
    }
    
    .am-subtitle {
        font-size: 1.1em;
    }
    
    .advantages-title,
    .skills-title,
    .formation-title,
    .access-title,
    .parents-title {
        font-size: 2em;
    }
    
    .pricing-title {
        font-size: 2.3em;
    }
    
    .advantage-icon,
    .access-icon,
    .parent-icon {
        font-size: 4em;
    }
    
    .advantage-name {
        font-size: 1.5em;
    }
    
    .pricing-grid {
        gap: 25px;
    }
    
    .price-badge {
        font-size: 1.2em;
        padding: 8px 16px;
    }
    
    .youth-text h2 {
        font-size: 2em;
    }
    
    .youth-text p {
        font-size: 1.1em;
    }
    
    .youth-icon {
        font-size: 4em;
    }
    
    .timeline-marker {
        width: 70px;
        height: 70px;
        font-size: 1.8em;
    }
    
    .btn-youth {
        padding: 15px 35px;
        font-size: 1.3em;
    }
    
    .card-content h3 {
        font-size: 1.8em;
    }
    
    .features-list li {
        font-size: 1em;
    }
    
    .skill-number {
        width: 60px;
        height: 60px;
        font-size: 1.6em;
    }
    
    .timeline-content h3 {
        font-size: 1.6em;
    }
    
    .timeline-content p {
        font-size: 1em;
    }
}



/* WhatsApp Button */
.whatsapp-chat {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 1000;
  /* Ajout de l'image de nuage en arrière-plan */
  background-image: url('../img/tl.webp');
  background-size: 120px 120px;
  background-position: center;
  background-repeat: no-repeat;
  padding: 30px;
  transform: scaleX(-1);
}

.whatsapp-chat a {
  display: block;
  width: 60px;
  height: 60px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  position: relative;
  z-index: 1001;
}

.whatsapp-chat img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-size: 400% 400%;
  position: relative;
  overflow: hidden;
}


@keyframes float {
  0%, 100% { transform: translateY(-50%) scaleX(-1) translateY(0px); }
  50% { transform: translateY(-50%) scaleX(-1) translateY(-10px); }
}

        .comic-title {
            font-family: 'Bangers', cursive;
            font-size: 3.5rem;
            color: #fff;
            text-shadow: 
                4px 4px 0px #000,
                -1px -1px 0px #000,
                1px -1px 0px #000,
                -1px 1px 0px #000,
                1px 1px 0px #000;
            margin-bottom: 20px;
            transform: perspective(500px) rotateX(15deg);
            text-align: center;
        }