/* Variables */
:root {
    --accent-color: #dafc3b;
    --background-color: #000000;
    --text-color: #ffffff;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* Navigation */
nav {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: transform 0.3s ease-in-out;
}

nav.nav-hidden {
    transform: translateY(-100%);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.nav-content > div:first-child {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo {
    height: 40px;
    width: auto;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-color);
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: var(--transition);
}

.brand-link:hover {
    transform: scale(1.05);
}

.nav-links a {
    position: relative;
    color: var(--text-color);
    text-decoration: none;
    margin-left: 2rem;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Header */
header {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6rem 2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 100%), url('Asset/Background.jpg') no-repeat center center/cover;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

.hero-content {
    flex: 1;
    padding-right: 2rem;
    color: var(--text-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Titre principal animé */
.hero-title {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    line-height: 1.1;
    position: relative;
}

.hero-title .main-title {
    display: block;
    color: var(--accent-color);
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.3);
    animation: glowPulse 2s infinite;
}

.hero-title .sub-title {
    display: block;
    font-size: 2.5rem;
    color: var(--text-color);
    font-weight: 500;
    letter-spacing: -1px;
    margin-top: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title .sub-title span {
    display: inline;
}

@keyframes glowPulse {
    0% {
        text-shadow: 0 0 10px rgba(218, 252, 59, 0.2),
                     0 0 20px rgba(218, 252, 59, 0.1);
    }
    50% {
        text-shadow: 0 0 20px rgba(218, 252, 59, 0.4),
                     0 0 30px rgba(218, 252, 59, 0.2);
    }
    100% {
        text-shadow: 0 0 10px rgba(218, 252, 59, 0.2),
                     0 0 20px rgba(218, 252, 59, 0.1);
    }
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeIn 1.5s ease-out;
}

.cta-button {
    padding: 1rem 2rem;
    border: 2px solid var(--accent-color);
    border-radius: 30px;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    background: transparent;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease-out;
    z-index: 0;
}

.cta-button:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.cta-button span {
    position: relative;
    z-index: 1;
}

.cta-button:hover {
    color: var(--background-color);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    animation: fadeIn 2s ease-out;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Sections */
section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--accent-color);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.feature-card img {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 10px;
}

.feature-card h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Associations Grid */
.associations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.association-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.association-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.association-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: none;
    padding: 2rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(218, 252, 59, 0.2) 50%, 
        transparent 100%
    );
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 1rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 2rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-column h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-links, .social-links, .legal-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

.footer-links a, .social-links a, .legal-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover, .social-links a:hover, .legal-links a:hover {
    color: var(--accent-color);
    opacity: 1;
}

.copyright {
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.5;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-column {
        margin-bottom: 2rem;
    }

    .legal-links {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* Features Details */
.features-details {
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(218,252,59,0.05) 100%);
    padding: 6rem 2rem;
}

.features-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.features-column h2 {
    text-align: left;
    margin-bottom: 2rem;
    font-size: 2.2rem;
}

.feature-list {
    display: grid;
    gap: 1.5rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 1.5rem;
    transition: var(--transition);
    border: 1px solid rgba(218,252,59,0.1);
    height: 180px; /* Hauteur fixe pour toutes les cases */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-color);
}

.feature-icon {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.feature-item h3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.4;
    flex-grow: 1;
}

/* How it works */
.how-it-works {
    background: linear-gradient(180deg, rgba(218,252,59,0.05) 0%, rgba(0,0,0,0) 100%);
    padding: 4rem 2rem;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 3rem auto;
    gap: 1rem;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    max-width: 280px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: var(--background-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
}

.step-content {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(218,252,59,0.1);
    transition: var(--transition);
}

.step-content:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.05);
}

.step-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 10px;
}

.step-content h3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.4;
}

.step-connector {
    flex: 0 0 60px;
    height: 2px;
    background: linear-gradient(90deg, 
        rgba(218,252,59,0.1) 0%, 
        rgba(218,252,59,0.5) 50%, 
        rgba(218,252,59,0.1) 100%
    );
    position: relative;
    margin-top: -100px;
}

/* Media Queries */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
        padding-top: 8rem;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .cta-buttons {
        justify-content: center;
    }

    .nav-content {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .nav-links a {
        margin-left: 0;
    }

    .features-columns {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .features-column h2 {
        text-align: center;
        font-size: 2rem;
    }

    .feature-list {
        gap: 1.5rem;
    }

    .steps-container {
        flex-direction: column;
        gap: 2rem;
    }

    .step {
        max-width: 100%;
    }

    .step-connector {
        width: 2px;
        height: 40px;
        margin: 0;
    }
}

/* Evenements */
.evenements {
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(218,252,59,0.05) 100%);
    padding: 3rem 2rem 6rem;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.evenements h2 {
    font-size: 5rem;
    text-align: left;
    margin-bottom: 3rem;
    position: relative;
    padding-left: 2rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.evenements h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 0;
    background: var(--accent-color);
    transform: translateY(-50%);
    animation: lineGrow 0.6s ease forwards;
    animation-delay: 0.3s;
}

@keyframes lineGrow {
    to {
        height: 100%;
    }
}

.evenements h2 span {
    display: block;
    transform: translateY(100%);
    opacity: 0;
    animation: titleSlideUp 0.8s ease forwards;
}

@keyframes titleSlideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Ajout d'un effet de glitch subtil au survol */
.evenements h2:hover {
    text-shadow: 
        2px 2px var(--accent-color),
        -2px -2px #ff3366;
    transition: text-shadow 0.3s ease;
}

@media (max-width: 768px) {
    .evenements h2 {
        font-size: 3.5rem;
        padding-left: 1.5rem;
    }
}

@media (max-width: 480px) {
    .evenements h2 {
        font-size: 2.5rem;
        padding-left: 1rem;
    }
}

/* Gallery */
.gallery {
    margin: 2rem 0 4rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    padding: 1.5rem;
    color: var(--text-color);
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* Event Types */
.event-types {
    margin: 3rem 0;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.event-types h3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin: 0 auto;
}

.type-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(218,252,59,0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.type-item:hover {
    transform: translateY(-3px);
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 15px rgba(218,252,59,0.1);
}

.type-icon {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.type-item:hover .type-icon {
    transform: scale(1.1);
}

.type-item h4 {
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Media Queries pour les types d'événements */
@media (max-width: 768px) {
    .types-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
    }

    .type-item {
        padding: 0.8rem;
    }

    .type-icon {
        font-size: 1.5rem;
    }

    .type-item h4 {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Success Stories */
.success-stories {
    margin: 4rem 0;
    text-align: center;
}

.success-stories h3 {
    color: var(--accent-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.story-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.story-card:hover {
    transform: translateY(-5px);
}

.story-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.story-content {
    padding: 1.5rem;
}

.story-content h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.story-content p {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    font-size: 0.9rem;
}

/* Media Queries pour Evenements */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 200px);
    }

    .gallery-item.large {
        grid-column: auto;
        grid-row: auto;
    }

    .stories-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact & Support */
.contact-support {
    background: none;
    padding: 6rem 2rem;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    margin: 4rem 0;
}

/* Formulaire de contact */
.contact-form-container {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(218,252,59,0.1);
}

.contact-form-container h3 {
    color: var(--accent-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 10px;
    color: var(--text-color);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group .focus-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: 0.4s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
}

.form-group input:focus ~ .focus-border,
.form-group textarea:focus ~ .focus-border {
    width: 100%;
}

.submit-btn {
    position: relative;
    padding: 1rem 3rem;
    background: transparent;
    border: 2px solid var(--accent-color);
    border-radius: 30px;
    color: var(--text-color);
    font-size: 1rem;
    cursor: pointer;
    overflow: hidden;
    transition: var(--transition);
}

.submit-btn .btn-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    transform: translateX(-100%);
    transition: 0.3s ease-out;
    z-index: 1;
}

.submit-btn span {
    position: relative;
    z-index: 2;
}

.submit-btn:hover .btn-fill {
    transform: translateX(0);
}

.submit-btn:hover span {
    color: var(--background-color);
}

/* FAQ */
.faq-container {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(218,252,59,0.1);
}

.faq-container h3 {
    color: var(--accent-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.faq-item {
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(218,252,59,0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question h4 {
    font-size: 1.1rem;
    color: var(--text-color);
}

.faq-toggle {
    color: var(--accent-color);
    font-size: 1.5rem;
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding: 1rem 0;
    color: rgba(255, 255, 255, 0.8);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* Social Icons */
.social-container {
    text-align: center;
    margin-top: 4rem;
}

.social-container h3 {
    color: var(--accent-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-icon {
    position: relative;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-color);
    transition: var(--transition);
    overflow: hidden;
}

.social-hover {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--background-color);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    opacity: 0;
    transition: 0.3s ease;
    pointer-events: none;
}

.social-icon:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
}

.social-icon:hover .social-hover {
    top: calc(100% + 10px);
    opacity: 1;
}

/* Media Queries pour Contact & Support */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .social-icons {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Fonctionnalités Title */
#fonctionnalites h2 {
    font-size: 5rem;
    text-align: left;
    margin-bottom: 3rem;
    position: relative;
    padding-left: 2rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -2px;
    text-transform: uppercase;
}

#fonctionnalites h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 0;
    background: var(--accent-color);
    transform: translateY(-50%);
    animation: lineGrow 0.6s ease forwards;
    animation-delay: 0.3s;
}

#fonctionnalites h2 span {
    display: block;
    transform: translateY(100%);
    opacity: 0;
    animation: titleSlideUp 0.8s ease forwards;
}

#fonctionnalites h2:hover {
    text-shadow: 
        2px 2px var(--accent-color),
        -2px -2px #ff3366;
    transition: text-shadow 0.3s ease;
}

@media (max-width: 768px) {
    #fonctionnalites h2 {
        font-size: 3.5rem;
        padding-left: 1.5rem;
    }
}

@media (max-width: 480px) {
    #fonctionnalites h2 {
        font-size: 1.8rem;
        padding-left: 0;
        text-align: center;
        word-wrap: break-word;
    }
}

/* Intro Text */
.intro-text {
    text-align: center;
    padding: 4rem 2rem 3rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-color);
    font-size: 1.5rem;
    line-height: 1.8;
    position: relative;
}

.intro-text::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--accent-color) 50%, 
        transparent 100%
    );
    opacity: 0.3;
}

.intro-text p {
    animation: fadeInUp 1s ease-out;
}

.intro-text .accent {
    color: var(--accent-color);
    font-weight: 700;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.intro-text .accent:hover {
    transform: translateY(-2px);
    text-shadow: 2px 2px 4px rgba(218,252,59,0.3);
}

@media (max-width: 768px) {
    .intro-text {
        font-size: 1.2rem;
        padding: 3rem 1.5rem 2rem;
    }
    
    .intro-text::after {
        width: 80%;
        bottom: 15px;
    }
}

/* Legal Pages */
.legal-content {
    max-width: 800px;
    margin: 120px auto 60px;
    padding: 0 2rem;
    color: var(--text-color);
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.legal-content .last-updated {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-content section {
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: left;
}

.legal-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.legal-content ul {
    list-style-type: disc;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .legal-content {
        margin: 100px auto 40px;
        padding: 0 1.5rem;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    .legal-content h2 {
        font-size: 1.5rem;
    }
}

/* Legal Links in Footer */
.legal-links {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
}

.legal-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.8rem;
    opacity: 0.5;
    transition: var(--transition);
}

.legal-links a:hover {
    color: var(--accent-color);
    opacity: 0.8;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.hamburger-menu span {
    width: 30px;
    height: 3px;
    background: var(--text-color);
    border-radius: 10px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
}

.hamburger-menu.active span:first-child {
    transform: rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg);
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
        margin-left: auto;
    }

    .nav-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 1rem;
    }

    .nav-content > div:first-child {
        display: flex;
        align-items: center;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 85%;
        max-width: 400px;
        background: rgba(0, 0, 0, 0.98);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        backdrop-filter: blur(10px);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.7);
        border-left: 1px solid rgba(218, 252, 59, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        margin: 1.2rem 0;
        font-size: 1.1rem;
        position: relative;
        opacity: 0.9;
        transform: translateX(50px);
        transition: all 0.3s ease;
    }

    .nav-links.active a {
        transform: translateX(0);
        opacity: 1;
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: -5px;
        width: 0;
        height: 2px;
        background-color: var(--accent-color);
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }

    .nav-links a:hover::after {
        width: 100%;
    }

    /* Style amélioré pour le hamburger */
    .hamburger-menu {
        width: 28px;
        height: 20px;
        padding: 0;
        z-index: 1100;
    }

    .hamburger-menu span {
        width: 100%;
        height: 2px;
        background: var(--accent-color);
        border-radius: 4px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .hamburger-menu.active span:first-child {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }

    .hamburger-menu.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* Header Responsive */
    header {
        padding: 8rem 1rem 2rem;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

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

    /* Features Grid Responsive */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Event Types Responsive */
    .types-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    /* Gallery Responsive */
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.large {
        grid-column: auto;
        grid-row: auto;
    }

    /* Contact Form Responsive */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .types-grid {
        grid-template-columns: 1fr;
    }

    .step-content {
        padding: 1rem;
    }

    .social-icons {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
} 