:root {
    --color-primary: #2d728f;
    --color-secondary: #CD70A6;
    --color-highlight: #f0f0f0;
    --color-background: #f0f0f0;
    --color-cta: #B7B6C1;
    --color-text: #2C3E50;
    --color-text-light: #7F8C8D;
    --spacing-unit: 1rem;
    --color-text-culture: #643A71;
    --color-text-education: #F8C630;
    --color-text-social: #E54F6D;
    --color-text-partnership: #23CE6B;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: transform 0.3s ease;
}

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

/* Bouton retour en haut */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background-color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.scroll-to-top i {
    transition: transform 0.3s ease;
}

.scroll-to-top:hover i {
    transform: translateY(-2px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem var(--spacing-unit);
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo:hover {
    color: var(--color-secondary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-primary);
}

/* Hero Section */
.hero {
    background-color: var(--color-primary);
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 8rem 0 4rem;
    position: relative;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: white;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Banner Section */
.banner {
    width: 100%;
    height: 60vh;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* About Section */
.about {
    padding: 4rem 0;
    background-color: var(--color-background);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}



.about h2,
.involvements h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--color-primary);
}

/* Involvements Section */
.involvements {
    padding: 4rem 0;
    background-color: var(--color-background);
}

.involvements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.involvement-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-decoration: none;
    display: block;
    color: inherit;
}

.involvement-card-culture i{
    color: var(--color-text-culture);
}

.involvement-card-culture h3 {
    color: var(--color-text-culture);
}

.involvement-card-education i{
    color: var(--color-text-education);
}

.involvement-card-education h3 {
    color: var(--color-text-education);
}

.involvement-card-social i{
    color: var(--color-text-social);
}

.involvement-card-social h3 {
    color: var(--color-text-social);
}

.involvement-card-partnership i {
    color: var(--color-text-partnership);
}

.involvement-card-partnership h3 {
    color: var(--color-text-partnership);
}

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

.involvement-card i {
    font-size: 2.5rem;
    
    margin-bottom: 1rem;
}

/* CTA Button */
.cta-container {
    text-align: center;
    margin-top: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 12px 24px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid transparent;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    line-height: 1.5;
}

.cta-button:hover,
.cta-button:focus {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* CTA White */
.cta-white {
    background-color: #ffffff;
    color: #333333;
    border-color: #cccccc;
}

.cta-white:hover,
.cta-white:focus {
    background-color: #f2f2f2;
    color: #000000;
}

/* CTA Primary */
.cta-primary {
    background-color: #F0F7F4;
    color: #34495e;
}

.cta-primary:hover,
.cta-primary:focus {
    background-color: #dce7e4;
    color: #2c3e50;
}

/* Footer */
.footer {
    background-color: white;
    color: var(--color-primary);
    padding: 2.5rem 0 1rem;
    margin: 2rem;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 4px solid var(--color-primary);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
    padding: 0rem;
}

.footer-section {
    position: relative;
    padding: 0;
    margin-bottom: 1.5rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.footer-section h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-size: 1rem;
    position: relative;
    text-align: left;
    text-decoration: underline;
    font-weight: 600;
}

.footer-section h3::before {
   
}

.footer-links {
    list-style: none;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-links li {
    margin-bottom: 0.5rem;
    position: relative;
    font-size: 0.9rem;
}

.footer-links li::before {
    
}


.footer-links a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.footer-links a:hover {
    color: var(--color-highlight);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0;
    align-items: flex-start;
    width: 100%;
}

.social-links a {
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    font-size: 0.9rem;
}

.social-links a::before {
  
}

.social-links a i {
    font-size: 1.2rem;
    color: var(--color-primary);
    transition: color 0.3s ease;
}

.social-links a span {
    color: var(--color-primary);
    transition: color 0.3s ease;
}

.social-links i:hover {
    color: var(--color-highlight);
}

.social-links a:hover {
    color: var(--color-highlight);
}

.footer-info-item {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 0.5rem;
}

.footer-info-item a {
    text-decoration: none;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.footer-info-item a::before {
  
}

.footer-info-item i {
    font-size: 1.2rem;
    color: var(--color-primary);
    transition: color 0.3s ease;
}

.footer-info-item i:hover {
    color: var(--color-highlight);
}

.footer-info-item a:hover {
    color: var(--color-highlight);
}

.contact-email {
    color: var(--color-background);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.contact-email:hover {
    color: var(--color-secondary);
}

.copyright {
    text-align: center;
    color: var(--color-primary);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(37, 99, 235, 0.2);
    width: 100%;
}

@media (max-width: 1200px) {
    .footer-content {
        gap: 3rem;
        padding: 0 1rem;
    }
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .footer {
        margin: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section {
        padding: 0;
    }

    .social-links {
        justify-content: center;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

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

    .hero h1,
    .events-hero h1,
    .members-hero h1,
    .contact-hero h1,
    .implication-hero h1,
    .downloads-hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle,
    .events-hero p,
    .members-hero p,
    .contact-hero p,
    .implication-hero p,
    .downloads-hero p {
        font-size: 1.1rem;
    }

    .banner {
        height: 40vh;
    }
}

/* Events Page Styles */
.events-hero {
    background-color: var(--color-primary);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
}

.events-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.events-hero p {
    font-size: 1.3rem;
    color: white;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.events-filter {
    background-color: white;
    padding: 2rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.filter-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.filter-select {
    padding: 0.5rem 1rem;
    border: 1px solid var(--color-primary);
    border-radius: 5px;
    font-size: 1rem;
    color: var(--color-text);
}

.filter-buttons {
    display: flex;
    gap: 1rem;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border: none;
    background-color: var(--color-background);
    color: var(--color-text);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background-color: var(--color-primary);
    color: white;
}

.events-list {
    padding: 4rem 0;
}

.events-section {
    margin-bottom: 4rem;
}

.events-section h2 {
    color: var(--color-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
}

.events-grid::after {
    display: none;
}

.event-card {
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    background: transparent;
    border: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.event-card:last-child {
    border-bottom: none;
}

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

.event-date {
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.event-card h3 {
    color: var(--color-text);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.event-details {
    margin-bottom: 1.5rem;
}

.event-details p {
    margin-bottom: 0.5rem;
    color: var(--color-text-light);
}

.event-details i {
    color: var(--color-primary);
    margin-right: 0.5rem;
    width: 20px;
}

.event-description {
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.event-tags {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.event-type, .event-genre-tag {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.event-genre-tag {
    color: var(--color-secondary);
    border-color: var(--color-secondary);
}

.event-location {
    color: #666;
    margin: 10px 0;
}

.event-location i {
    margin-right: 5px;
    color: var(--color-primary);
}

.no-events {
    text-align: center;
    color: var(--color-text-light);
    font-style: italic;
    padding: 2rem;
}

@media (max-width: 768px) {
    .filter-controls {
        flex-direction: column;
        gap: 1rem;
    }

    .filter-buttons {
        width: 100%;
        justify-content: center;
    }

    .events-grid::after {
        display: none;
    }
}

/* Members Page Styles */
.members-hero {
    background-color: var(--color-primary);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
}

.members-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.members-hero p {
    font-size: 1.3rem;
    color: white;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.members-types {
    padding: 4rem 0;
    background-color: var(--color-background);
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.member-type-card {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.member-type-card i {
    font-size: 2.5rem;
    color: black;
    margin-bottom: 1rem;
}

.member-type-card h2 {
    color: #333;
    margin-bottom: 1.5rem;
}

.member-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
}

.member-benefits li {
    margin-bottom: 0.8rem;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.member-benefits li:before {
    content: "✓";
    color: #4a90e2;
    position: absolute;
    left: 0;
}

.member-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    background: var(--color-primary);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--color-primary);
    margin-top: auto;
}



.member-btn:hover {
    background: transparent;
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.member-type-card:nth-child(2) .member-btn {
    background: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.member-type-card:nth-child(2) .member-btn:hover {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.members-rights {
    padding: 4rem 0;
    background-color: white;
}

.members-rights h2 {
    text-align: center;
    color: var(--color-primary);
    margin-bottom: 3rem;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.rights-card {
    background-color: var(--color-background);
    padding: 2rem;
    border-radius: 8px;
}

.rights-card h3 {
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.rights-card ul {
    list-style: none;
    padding: 0;
}

.rights-card li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.rights-card li::before {
    content: "→";
    color: var(--color-secondary);
    position: absolute;
    left: 0;
}

.join-section {
    padding: 4rem 0;
    background-color: var(--color-background);
    text-align: center;
}

.join-section h2 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.join-section p {
    margin-bottom: 2rem;
    color: var(--color-text-light);
}

.cta-button-members i {
    margin-right: 0.5rem;
    
}


@media (max-width: 768px) {
    .members-grid,
    .rights-grid {
        grid-template-columns: 1fr;
    }

    .member-type-card,
    .rights-card {
        padding: 1.5rem;
    }
}

/* Contact Page Styles */
.contact-hero {
    background-color: var(--color-primary);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
}

.contact-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-hero p {
    font-size: 1.3rem;
    color: white;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-content {
    padding: 4rem 0;
    background-color: var(--color-background);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.contact-info {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.contact-info h2 {
    color: var(--color-primary);
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.info-item h3 {
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.info-item p {
    color: var(--color-text-light);
}

.info-item a {
    text-decoration: none;
    color: var(--color-text-light);
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--color-secondary);
}

/* Styles for social links within .contact-info on contact page */
.contact-info .social-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem; /* Adjust as needed for spacing between social links */
}

.contact-info .social-link-item .social-contact-link {
    text-decoration: none; /* Remove default link underline */
    display: flex;
    align-items: center;
    gap: 0.75rem; /* Space between icon and text, adjust as needed */
}

.contact-info .social-link-item .social-handle {
    color: black; /* Text color black */
    transition: color 0.3s ease, text-decoration 0.3s ease; /* Smooth transition */
}

.contact-info .social-link-item .social-contact-link:hover .social-handle {
    color:var(--color-background); /* Text color changes to secondary on hover */
    text-decoration: underline; /* Underline text on hover */
}

.social-contact-link i{
    color: var(--color-primary);
}

/* If you also want the icon color to change on hover to secondary (matching the text) */
/*
.contact-info .social-link-item .social-contact-link:hover i {
    color: var(--color-secondary) !important;
}
*/

.contact-form {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.contact-form h2 {
    color: var(--color-primary);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-text);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.submit-button {
    background-color: var(--color-primary);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.submit-button:hover {
    background-color: #34495E;
}

.map-section {
    padding: 4rem 0;
    background-color: white;
}

.map-section h2 {
    text-align: center;
    color: var(--color-primary);
    margin-bottom: 2rem;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info,
    .contact-form {
        padding: 1.5rem;
    }

    .info-item {
        margin-bottom: 1.5rem;
    }
}

/* Implication Page Styles */
.implication-hero {
    background-color: var(--color-primary);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
}

.implication-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.implication-hero p{
    font-size: 1.3rem;
    color: white;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.implication-actions {
    padding: 4rem 0;
    background-color: var(--color-background);
}

.implication-actions h2 {
    text-align: center;
    color: var(--color-primary);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}
.implication-actions .container .actions-grid h3{
    font-size: 2rem;

}

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

.action-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 400px;
    cursor: pointer;
}

.action-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.action-image-culture{
    background-color: var(--color-text-culture);
}

.action-image-education{
    background-color: var(--color-text-education);
}

.action-image-social{
    background-color: var(--color-text-social);
}

.action-image-partnership{
    background-color: var(--color-text-partnership);
}

.action-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.action-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    z-index: 2;
    transition: opacity 0.3s ease;
}

.action-image-overlay h3 {
    color: white;
    margin: 0;
    font-size: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.action-card:hover .action-image-overlay {
    opacity: 0;
}

.action-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.action-card:hover .action-content {
    opacity: 1;
}

.action-content h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.action-content p {
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.action-list {
    list-style: none;
    padding: 0;
    margin-bottom: 3rem;
}

.action-list li {
    color: white;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.action-list li::before {
    content: "→";
    color: var(--color-secondary);
    position: absolute;
    left: 0;
}

.testimonials {
    padding: 4rem 0;
    background-color: #F0F7F4;
}

.testimonials h2 {
    text-align: center;
    color: var(--color-primary);
    margin-bottom: 2rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 0rem;
}

.testimonial-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-content {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.testimonial-content i {
    color: black;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--color-text);
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    margin-top: auto;
}

.testimonial-author h4 {
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.testimonial-author p {
    color: var(--color-text-light);
    font-size: 0.875rem;
}

@media (max-width: 992px) {
    .actions-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .action-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .implication-actions {
        padding: 3rem 0;
    }
    
    .implication-actions h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .action-content {
        padding: 1.5rem;
    }
    
    .action-content h3 {
        font-size: 1.3rem;
    }
    
    .action-image {
        height: 300px;
    }
}

/* Styles pour la page des téléchargements */
.downloads-hero {
    background-color: var(--color-primary);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
}

.downloads-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.downloads-hero p {
    font-size: 1.3rem;
    color: white;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.downloads-section {
    padding: 4rem 0;
    background-color: var(--color-background);
}

.downloads-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: relative;
}

.downloads-grid::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    width: 1px;
    background-color: #000;
    transform: translateX(-50%);
}

.download-card {
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    background: transparent;
}

.download-card i {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

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

.download-card p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    background: var(--color-primary);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--color-primary);
}

.download-btn:hover {
    background: transparent;
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.download-btn i {
    display: none;
}

@media (max-width: 768px) {
    .downloads-grid::after {
        display: none;
    }
}

.menu-preview {
    padding: 4rem 0;
    background-color: white;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.preview-grid::after {
    display: none;
}

.preview-card {
    background: transparent;
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: none;
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
}

.preview-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.preview-card-header i {
    font-size: 1.5rem;
    color: var(--color-highlight);
}

.preview-card h2 {
    color: var(--color-text);
    font-size: 1.5rem;
    margin: 0;
}

.preview-card p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.preview-card .simple-link {
    margin-top: auto;
    align-self: flex-start;
}

.preview-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--color-primary);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.preview-link:hover {
    background-color: var(--color-secondary);
}

@media (max-width: 768px) {
    .preview-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .preview-card {
        padding: 1.5rem;
        max-width: 100%;
    }

    .preview-card-header {
        flex-wrap: wrap;
        gap: 1rem;
        margin-bottom: 1.5rem;
        padding-top: 0.5rem;
    }

    .preview-card i {
        display: none;
    }

    .preview-card h2 {
        position: static;
        transform: none;
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
    }

    .preview-link {
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }

    .preview-card p {
        margin-top: 1rem;
        font-size: 1rem;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    overflow-y: auto;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 10px;
    width: 80%;
    max-width: 800px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--color-primary);
}

.modal-subtitle {
    color: var(--color-text-light);
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

.modal-section {
    margin-bottom: 2.5rem;
}

.modal-section h3 {
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    position: relative;
    padding-left: 1rem;
}

.modal-section h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 1.5rem;
    background-color: var(--color-primary);
}

.modal-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.modal-point {
    background-color: var(--color-background);
    padding: 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.modal-point:hover {
    transform: translateY(-5px);
}

.modal-point h4 {
    color: var(--color-secondary);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.modal-point p {
    color: var(--color-text-light);
    line-height: 1.6;
}

.modal-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--color-background);
    border-radius: 8px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.close-modal {
    position: absolute;
    right: 1.5rem;
    top: 1rem;
    font-size: 2rem;
    font-weight: bold;
    color: var(--color-text);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 1.5rem;
    }

    .modal-points,
    .modal-stats {
        grid-template-columns: 1fr;
    }

    .modal-section h3 {
        font-size: 1.3rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }
}

.simple-link {
    display: inline-block;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    padding-bottom: 0.25rem;
    position: relative;
    transition: color 0.3s ease;
}

.simple-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.simple-link:hover {
    color: var(--color-secondary);
}

.simple-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
    background-color: var(--color-secondary);
}

/* Styles pour le Modal d'Événement */
.modal-event {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.7);
    padding-top: 20px;
    padding-bottom: 20px;
}

.modal-event-content {
    background-color: #fff;
    margin: auto; 
    padding: 30px; 
    border: 1px solid #888;
    width: 90%; 
    max-width: 1400px; 
    border-radius: 10px;
    position: relative;
    height: 85vh; 
    display: flex;
    flex-direction: column; 
}

.modal-event-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.modal-event-close:hover,
.modal-event-close:focus {
    color: #333;
    text-decoration: none;
    cursor: pointer;
}

.modal-event-header-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px; 
    border-bottom: 1px solid #eee; 
    margin-bottom: 20px; 
}

.modal-event-details-block {
    flex-grow: 1;
}

.modal-header-event-logo {
    position: relative;
    height: 40px;
    max-width: 20%;
    width: auto;
    margin-left: 20px;
    margin-right: 23.5%;
    z-index: 15;
}

.modal-event-title-date-line {
    display: flex; 
    align-items: baseline; 
    gap: 15px; 
    margin-bottom: 8px; 
}

.modal-event-title-date-line h2 {
    margin-top: 0;
    margin-bottom: 0;
    color: var(--color-primary);
}

.modal-event-title-date-line p {
    margin-bottom: 0;
    color: var(--color-text-light);
}

.modal-event-inline-details {
    display: flex; 
    flex-wrap: wrap; 
    gap: 15px; 
    margin-bottom: 8px; 
}

.modal-event-inline-details p {
    margin-bottom: 0; 
}

.modal-event-header-info p i {
    margin-right: 8px;
    color: var(--color-secondary);
}

#modalEventDoorsStart p {
    margin-bottom: 5px;
}

.modal-event-columns {
    display: flex;
    flex-wrap: wrap; 
    gap: 20px;
    flex-grow: 1; 
    min-height: 0; 
}

.modal-event-description-col { 
    flex: 1; 
    max-width: calc(33.333% - 10px); 
    min-width: 280px; 
    overflow-y: auto; 
    min-height: 0; 
    display: flex; 
    flex-direction: column; 
    justify-content: flex-start;
    background-color: var(--color-background);
    padding-top: 1.5rem;
    padding-right: 1.5rem;
    padding-bottom: 1.5rem;
    padding-left: 2.5rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.modal-event-description-col p {
    line-height: 1.7;
}

.modal-event-carousel-col {
    flex: 2; 
    max-width: calc(66.666% - 10px); 
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; 
    position: relative;
}

/* Styles pour le Carrousel */
.carousel-container {
    width: 100%;
    max-width: 600px;
    position: relative;
    margin: auto;
    overflow: hidden;
    border-radius: 8px;
    background-color: #f0f0f0;
}

.carousel-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 0;
    padding-bottom: 56.25%;
    position: relative;
}

.carousel-slide {
    min-width: 100%;
    box-sizing: border-box;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-prev,
.carousel-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.3s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0,0,0,0.5);
}

.carousel-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.carousel-prev:hover,
.carousel-next:hover {
    background-color: rgba(0,0,0,0.8);
}

.carousel-dots {
    text-align: center;
    padding-top: 10px;
}

.carousel-dot {
    cursor: pointer;
    height: 13px;
    width: 13px;
    margin: 0 4px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.carousel-dot.active,
.carousel-dot:hover {
    background-color: var(--color-secondary);
}

.no-images-carousel {
    text-align: center;
    padding: 20px;
    color: #777;
}

/* Responsive pour les colonnes du modal */
@media screen and (max-width: 768px) {
    .modal-event-columns {
        display: flex; 
        flex-direction: column; 
        width: 100%; 
        gap: 15px; 
    }

    .modal-event-description-col,
    .modal-event-carousel-col {
        flex-grow: 0;
        flex-shrink: 0;
        flex-basis: auto;
        width: 100%;  
        max-width: 100%; 
        min-width: 0;
        margin-left: 0;  
        margin-right: 0;
        box-sizing: border-box;
    }

    .modal-event-description-col {
        padding: 0 10px 15px 10px; 
        justify-content: flex-start; 
        text-align: left; 
    }

    .modal-event-carousel-col {
    }

    .modal-event-content {
        width: 95%;
        padding: 20px 15px;
        height: auto;
        max-height: 90vh;
    }

    .modal-event-header-info {
        flex-direction: column-reverse;
        align-items: center;
    }

    .modal-event-details-block {
        width: 100%;
        text-align: center;
    }

    .modal-header-event-logo {
        max-width: 150px;
        width: 50%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px;
    }

    .modal-event-title-date-line,
    .modal-event-inline-details {
        flex-direction: column;
        align-items: center;
        gap: 5px;
        text-align: center;
    }
    
    .modal-event-title-date-line h2,
    .modal-event-title-date-line p,
    .modal-event-inline-details p {
        text-align: center;
    }

    .events-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .event-card {
        padding: 1.5rem;
    }
    
    .event-card h3 {
        font-size: 1.3rem;
    }

    .event-tags {
        gap: 0.5rem;
    }

    .event-type, .event-genre-tag {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    .hidden {
        display: none !important;
    }
}

/* Fullscreen Image/Carousel Styles */
.fullscreen-overlay {
    display: none; /* Caché par défaut */
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 2000; /* Au-dessus du modal existant (qui est à 1000 ou 1001 pour .modal) */
    justify-content: center;
    align-items: center;
}

.fullscreen-overlay.active {
    display: flex; /* Affiché quand la classe active est ajoutée */
}

#fullscreen-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 5px; /* Optionnel: pour adoucir les bords */
    box-shadow: 0 0 30px rgba(0,0,0,0.5); /* Optionnel: petite ombre */
}

.fullscreen-close-btn {
    position: absolute;
    top: 20px;
    right: 35px;
    font-size: 3rem; /* Taille augmentée pour meilleure visibilité */
    font-weight: bold;
    color: white;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1; /* Pour un meilleur positionnement vertical */
}

.fullscreen-close-btn:hover {
    color: #bbb;
}

.fullscreen-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.3);
    color: white;
    font-size: 2.5rem;
    padding: 10px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease;
    z-index: 2001; /* S'assurer qu'ils sont cliquables au-dessus de l'image si elle prend toute la place */
    line-height: 1;
    border-radius: 3px;
}

.fullscreen-nav-btn:hover {
    background-color: rgba(0,0,0,0.6);
}

.fullscreen-nav-btn.prev {
    left: 15px;
}

.fullscreen-nav-btn.next {
    right: 15px;
}

.fullscreen-nav-btn.disabled {
    /* display: none;  Optionnel: pour les cacher complètement */
    opacity: 0.3;
    cursor: default;
}

/* Fin des styles pour le plein écran */

/* Gallery Section Styles */
.gallery-section {
    padding: 4rem 0;
    background-color: white;
}

.gallery-section h2 {
    text-align: center;
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.gallery-subtitle {
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 0 1rem;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
}

/* Gallery Modal Styles */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.gallery-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: auto;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-modal-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.gallery-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

.gallery-nav {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.8);
}

.gallery-nav.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.gallery-nav.prev {
    left: 0;
}

.gallery-nav:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-item {
        padding: 1.5rem;
    }

    .gallery-item img {
        height: 300px;
    }
}

/* Styles pour les paragraphes */
p {
    font-size: 1.2em;
    line-height: 1.6;
    color: var(--color-text);
}

/* Modal plein écran pour les galeries */
.fullscreen-gallery-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    overflow: hidden;
}

.fullscreen-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.fullscreen-content img {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.fullscreen-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: opacity 0.3s ease;
}

.fullscreen-close:hover {
    opacity: 0.7;
}

.fullscreen-description {
    color: white;
    font-size: 1.2rem;
    text-align: center;
    margin-top: 20px;
    padding: 0 20px;
    max-width: 80%;
    line-height: 1.5;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    padding: 15px 25px;
}

.fullscreen-counter {
    position: absolute;
    top: 20px;
    left: 20px;
    color: white;
    font-size: 1.1rem;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 500;
}

.fullscreen-nav {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    font-size: 24px;
    font-weight: bold;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.fullscreen-nav:hover {
    background-color: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.fullscreen-nav.prev {
    left: 30px;
}

.fullscreen-nav.next {
    right: 30px;
}

@media (max-width: 768px) {
    .fullscreen-content img {
        max-width: 95%;
        max-height: 70%;
    }
    
    .fullscreen-close {
        top: 10px;
        right: 15px;
        font-size: 30px;
    }
    
    .fullscreen-counter {
        top: 10px;
        left: 10px;
        font-size: 1rem;
        padding: 6px 12px;
    }
    
    .fullscreen-description {
        font-size: 1rem;
        max-width: 90%;
        padding: 12px 20px;
        margin-top: 15px;
    }
    
    .fullscreen-nav {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .fullscreen-nav.prev {
        left: 15px;
    }
    
    .fullscreen-nav.next {
        right: 15px;
    }
}

/* Styles pour la galerie de membres */
.gallery-collections-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.gallery-collection-block {
    flex: 1 1 48%;
    max-width: 48%;
    background: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 1.5rem 1.2rem 2.2rem 1.2rem;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-collection-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--color-primary, #2c3e50);
    margin-bottom: 0.2em;
    letter-spacing: 1px;
    text-align: center;
}

.gallery-collection-desc {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.1em;
    text-align: center;
}

.collection-carousel-container {
    width: 100%;
    max-width: 350px;
    position: relative;
    margin: 0 auto;
}

.collection-carousel-slide {
    display: none;
    width: 100%;
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
}

.collection-carousel-slide.active {
    display: block;
}

.collection-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collection-carousel-prev, .collection-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 2;
}

.collection-carousel-prev { left: 10px; }
.collection-carousel-next { right: 10px; }

.collection-carousel-dots {
    text-align: center;
    margin-top: 8px;
}

.collection-carousel-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #bbb;
    border-radius: 50%;
    margin: 0 3px;
    cursor: pointer;
}

.collection-carousel-dot.active {
    background: #333;
}

.collection-image-description {
    margin-top: 1rem;
    padding: 0 1rem;
    text-align: center;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collection-image-description p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.4;
    margin: 0;
    font-style: italic;
}

.collection-image-description .no-description {
    color: #999;
    font-size: 0.85rem;
}

/* Styles pour les événements */
.event-card {
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.event-type-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.9em;
}

/* Media queries */
@media (max-width: 900px) {
    .gallery-collection-block { 
        max-width: 100%; 
        flex-basis: 100%; 
    }
    .gallery-collections-row { 
        flex-direction: column; 
        gap: 1.5rem; 
    }
}

/* Styles pour les dashboards d'administration */
.admin-header-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.admin-header-actions h1 {
    margin: 0;
    font-size: 2rem;
    color: var(--color-primary);
}

/* Styles pour la table des événements */
.events-table-container {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.events-table {
    width: 100%;
    border-collapse: collapse;
}

.events-table th,
.events-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.events-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: var(--color-text);
}

.events-table tr:hover {
    background-color: #f8f9fa;
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.status-badge.active {
    background-color: #d4edda;
    color: #155724;
}

.status-badge.inactive {
    background-color: #f8d7da;
    color: #721c24;
}

.actions {
    display: flex;
    gap: 0.5rem;
}

.btn-edit,
.btn-delete {
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-edit {
    background-color: #007bff;
    color: white;
}

.btn-delete {
    background-color: #dc3545;
    color: white;
}

.btn-edit:hover {
    background-color: #0056b3;
}

.btn-delete:hover {
    background-color: #c82333;
}

/* Styles pour la grille des collections */
.gallery-collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-collection-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    transition: transform 0.2s;
}

.gallery-collection-card:hover {
    transform: translateY(-2px);
}

.collection-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.collection-header h3 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--color-primary);
}

.collection-description {
    color: var(--color-text);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.collection-info {
    display: flex;
    gap: 1rem;
    color: #6c757d;
    font-size: 0.875rem;
}

.collection-date i {
    margin-right: 0.25rem;
}

/* Media queries pour la responsivité */
@media (max-width: 768px) {
    .admin-header-actions {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .events-table th,
    .events-table td {
        padding: 0.75rem;
    }

    .gallery-collections-grid {
        grid-template-columns: 1fr;
    }
}

/* Styles pour le header d'administration */
.admin-header {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    margin-bottom: 2rem;
}

.admin-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.admin-nav .nav-link {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.2s;
}

.admin-nav .nav-link:hover {
    background-color: #f8f9fa;
    color: var(--color-primary);
}

.admin-nav .nav-link i {
    margin-right: 0.5rem;
}

.admin-nav .nav-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-username {
    color: var(--color-text);
    font-weight: 500;
}

.admin-username i {
    margin-right: 0.5rem;
    color: var(--color-primary);
}

/* Media queries pour la responsivité */
@media (max-width: 768px) {
    .admin-nav {
        flex-direction: column;
        gap: 1rem;
    }

    .admin-nav .nav-right {
        margin-left: 0;
        flex-direction: column;
        width: 100%;
    }

    .admin-username {
        margin-bottom: 0.5rem;
    }
}

/* Styles pour les alertes */
.alert {
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    line-height: 1.5;
}

.alert-success {
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
}

.alert-danger {
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
}

.alert-info {
    color: #055160;
    background-color: #d1ecf1;
    border-color: #b8daff;
}

.alert-warning {
    color: #664d03;
    background-color: #fff3cd;
    border-color: #ffecb5;
}

/* Styles pour les boutons d'administration */
.btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    border-radius: 0.375rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-primary {
    color: #fff;
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    color: #fff;
    background-color: #1e5a6f;
    border-color: #1a4f5f;
}

.btn-success {
    color: #fff;
    background-color: #198754;
    border-color: #198754;
}

.btn-success:hover {
    color: #fff;
    background-color: #157347;
    border-color: #146c43;
}

.btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    border-radius: 0.25rem;
}

.d-flex {
    display: flex;
}

.gap-2 {
    gap: 0.5rem;
}

/* Styles pour la page Culture */
.culture-hero {
    background: linear-gradient(135deg, var(--color-text-culture), #8B5A96);
    color: white;
    text-align: center;
    padding: 8rem 0 4rem;
    position: relative;
}

.culture-hero * {
    color: white !important;
}

.culture-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.culture-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.culture-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.culture-hero p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.culture-subtitle p {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.4;
    margin-top: 1rem;
}

.culture-mission {
    padding: 4rem 0;
    background-color: white;
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.culture-mission h2 {
    font-size: 2.5rem;
    color: var(--color-text-culture);
    margin-bottom: 2rem;
    text-align: center;
}

.mission-text {
    text-align: left;
}

.mission-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.culture-actions {
    padding: 4rem 0;
    background-color: var(--color-background);
}

.culture-actions h2 {
    font-size: 2.5rem;
    color: var(--color-text-culture);
    text-align: center;
    margin-bottom: 3rem;
}

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

.culture-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--color-text-culture);
}

.culture-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.culture-card .action-icon {
    margin-bottom: 1.5rem;
}

.culture-card .action-icon i {
    font-size: 3rem;
    color: var(--color-text-culture);
}

.culture-card h3 {
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.culture-card p {
    color: var(--color-text-light);
    line-height: 1.6;
}

.culture-values {
    padding: 4rem 0;
    background-color: white;
}

.culture-values h2 {
    font-size: 2.5rem;
    color: var(--color-text-culture);
    text-align: center;
    margin-bottom: 3rem;
}

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

.value-item {
    text-align: center;
    padding: 1.5rem;
}

.value-icon {
    margin-bottom: 1rem;
}

.value-icon i {
    font-size: 2.5rem;
    color: var(--color-text-culture);
}

.value-item h3 {
    font-size: 1.3rem;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.value-item p {
    color: var(--color-text-light);
    line-height: 1.5;
}

.culture-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--color-text-culture), #8B5A96);
    color: white;
    text-align: center;
}

.culture-cta * {
    color: white !important;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: white;
    color: var(--color-text-culture) !important;
    border: 2px solid white;
}

.cta-buttons .cta-button:hover {
    background-color: transparent;
    color: white !important;
    border: 2px solid white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.cta-buttons .cta-button i {
    font-size: 1.1rem;
    color: var(--color-text-culture) !important;
}

.cta-buttons .cta-button:hover i {
    color: white !important;
}

/* Media queries pour la page Culture */
@media (max-width: 768px) {
    .culture-hero {
        padding: 8rem 0 3rem;
    }
    
    .culture-hero h1 {
        font-size: 2.5rem;
    }
    
    .culture-subtitle p {
        font-size: 1.2rem;
    }
    
    .culture-mission,
    .culture-actions,
    .culture-values,
    .culture-cta {
        padding: 3rem 0;
    }
    
    .culture-mission h2,
    .culture-actions h2,
    .culture-values h2,
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .culture-actions .actions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Styles pour la page Social Éducatif */
.social-educatif-hero {
    background: linear-gradient(135deg, var(--color-text-education), var(--color-text-social));
    color: white;
    text-align: center;
    padding: 8rem 0 4rem;
    position: relative;
}

.social-educatif-hero * {
    color: white !important;
}

.social-educatif-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.education-icon {
    font-size: 4rem;
    color: var(--color-text-education) !important;
    opacity: 0.9;
}

.social-icon {
    font-size: 4rem;
    color: var(--color-text-social) !important;
    opacity: 0.9;
}

.social-educatif-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.social-educatif-hero p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.social-educatif-subtitle p {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.4;
    margin-top: 1rem;
}

.social-educatif-mission {
    padding: 4rem 0;
    background-color: white;
}

.social-educatif-mission h2 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--color-text-education), var(--color-text-social));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    text-align: center;
}

.social-educatif-actions {
    padding: 4rem 0;
    background-color: var(--color-background);
}

.social-educatif-actions h2 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--color-text-education), var(--color-text-social));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 3rem;
}

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

.educatif-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--color-text-education);
}

.social-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--color-text-social);
}

.educatif-card:hover,
.social-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.educatif-card .action-icon {
    margin-bottom: 1.5rem;
}

.social-card .action-icon {
    margin-bottom: 1.5rem;
}

.educatif-card .action-icon i {
    font-size: 3rem;
    color: var(--color-text-education);
}

.social-card .action-icon i {
    font-size: 3rem;
    color: var(--color-text-social);
}

.educatif-card h3,
.social-card h3 {
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.educatif-card p,
.social-card p {
    color: var(--color-text-light);
    line-height: 1.6;
}

.social-educatif-values {
    padding: 4rem 0;
    background-color: white;
}

.social-educatif-values h2 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--color-text-education), var(--color-text-social));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 3rem;
}

.social-educatif-values .values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.social-educatif-values .value-item {
    text-align: center;
    padding: 1.5rem;
}

.social-educatif-values .value-icon {
    margin-bottom: 1rem;
}

.social-educatif-values .value-icon.education i {
    font-size: 2.5rem;
    color: var(--color-text-education);
}

.social-educatif-values .value-icon.social i {
    font-size: 2.5rem;
    color: var(--color-text-social);
}

.social-educatif-values .value-item h3 {
    font-size: 1.3rem;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.social-educatif-values .value-item p {
    color: var(--color-text-light);
    line-height: 1.5;
}

.social-educatif-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--color-text-education), var(--color-text-social));
    color: white;
    text-align: center;
}

.social-educatif-cta * {
    color: white !important;
}

.social-educatif-cta .cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.social-educatif-cta .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.social-educatif-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-educatif-cta .cta-buttons .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: white;
    color: var(--color-text-education) !important;
    border: 2px solid white;
}

.social-educatif-cta .cta-buttons .cta-button:hover {
    background-color: transparent;
    color: white !important;
    border: 2px solid white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.social-educatif-cta .cta-buttons .cta-button i {
    font-size: 1.1rem;
    color: var(--color-text-education) !important;
}

.social-educatif-cta .cta-buttons .cta-button:hover i {
    color: white !important;
}

/* Media queries pour la page Social Éducatif */
@media (max-width: 768px) {
    .social-educatif-hero {
        padding: 8rem 0 3rem;
    }
    
    .hero-icons {
        gap: 1rem;
    }
    
    .education-icon,
    .social-icon {
        font-size: 3rem;
    }
    
    .social-educatif-hero h1 {
        font-size: 2.5rem;
    }
    
    .social-educatif-subtitle p {
        font-size: 1.2rem;
    }
    
    .social-educatif-mission,
    .social-educatif-actions,
    .social-educatif-values,
    .social-educatif-cta {
        padding: 3rem 0;
    }
    
    .social-educatif-mission h2,
    .social-educatif-actions h2,
    .social-educatif-values h2,
    .social-educatif-cta .cta-content h2 {
        font-size: 2rem;
    }
    
    .social-educatif-actions .actions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .social-educatif-values .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .social-educatif-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .social-educatif-cta .cta-buttons .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Styles pour la page Label */
.label-hero {
    background: linear-gradient(135deg, var(--color-text-partnership), #2EE178);
    color: white;
    text-align: center;
    padding: 8rem 0 4rem;
    position: relative;
}

.label-hero * {
    color: white !important;
}

.label-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.label-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.label-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.label-hero p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.label-subtitle p {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.4;
    margin-top: 1rem;
}

.label-mission {
    padding: 4rem 0;
    background-color: white;
}

.label-mission h2 {
    font-size: 2.5rem;
    color: var(--color-text-partnership);
    margin-bottom: 2rem;
    text-align: center;
}

.label-actions {
    padding: 4rem 0;
    background-color: var(--color-background);
}

.label-actions h2 {
    font-size: 2.5rem;
    color: var(--color-text-partnership);
    text-align: center;
    margin-bottom: 3rem;
}

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

.label-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--color-text-partnership);
}

.label-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.label-card .action-icon {
    margin-bottom: 1.5rem;
}

.label-card .action-icon i {
    font-size: 3rem;
    color: var(--color-text-partnership);
}

.label-card h3 {
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.label-card p {
    color: var(--color-text-light);
    line-height: 1.6;
}

.label-values {
    padding: 4rem 0;
    background-color: white;
}

.label-values h2 {
    font-size: 2.5rem;
    color: var(--color-text-partnership);
    text-align: center;
    margin-bottom: 3rem;
}

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

.label-values .value-item {
    text-align: center;
    padding: 1.5rem;
}

.label-values .value-icon {
    margin-bottom: 1rem;
}

.label-values .value-icon i {
    font-size: 2.5rem;
    color: var(--color-text-partnership);
}

.label-values .value-item h3 {
    font-size: 1.3rem;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.label-values .value-item p {
    color: var(--color-text-light);
    line-height: 1.5;
}

.label-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--color-text-partnership), #2EE178);
    color: white;
    text-align: center;
}

.label-cta * {
    color: white !important;
}

.label-cta .cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.label-cta .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.label-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.label-cta .cta-buttons .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: white;
    color: var(--color-text-partnership) !important;
    border: 2px solid white;
}

.label-cta .cta-buttons .cta-button:hover {
    background-color: transparent;
    color: white !important;
    border: 2px solid white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.label-cta .cta-buttons .cta-button i {
    font-size: 1.1rem;
    color: var(--color-text-partnership) !important;
}

.label-cta .cta-buttons .cta-button:hover i {
    color: white !important;
}

/* Media queries pour la page Label */
@media (max-width: 768px) {
    .label-hero {
        padding: 8rem 0 3rem;
    }
    
    .label-hero h1 {
        font-size: 2.5rem;
    }
    
    .label-subtitle p {
        font-size: 1.2rem;
    }
    
    .label-mission,
    .label-actions,
    .label-values,
    .label-cta {
        padding: 3rem 0;
    }
    
    .label-mission h2,
    .label-actions h2,
    .label-values h2,
    .label-cta .cta-content h2 {
        font-size: 2rem;
    }
    
    .label-actions .actions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .label-values .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .label-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .label-cta .cta-buttons .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
} 

/* Burger Menu */
.burger {
    display: none;
    background: none;
    border: none;
    font-size: 1.75rem;
    cursor: pointer;
    color: var(--color-text);
    z-index: 1100;
}

@media (max-width: 768px) {
    .burger {
        display: block;
        margin-left: auto;
    }
    .nav-container {
        position: relative;
    }
    .nav-links {
        position: absolute;
        top: 64px;
        right: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
        gap: 0;
        display: none;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    .nav-links.open {
        display: flex;
        padding: 1rem var(--spacing-unit);
    }
    .nav-links li {
        width: 100%;
        margin: 0.5rem 0;
    }
    .nav-links a {
        width: 100%;
        display: block;
        padding: 0.5rem 0;
    }
} 

/* Submenu Styles */
.nav-links li {
    position: relative;
}

.submenu {
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: none;
    flex-direction: column;
    padding: 0.5rem 0;
    z-index: 1050;
}

.has-submenu:hover .submenu {
    display: flex;
}

.submenu li {
    width: 100%;
}

.submenu a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--color-text);
    text-decoration: none;
}

.submenu a:hover {
    background-color: var(--color-background);
}

@media (max-width: 768px) {
    .submenu {
        position: static;
        width: 100%;
        box-shadow: none;
        padding-left: 1rem;
    }
    .has-submenu .submenu {
        display: none;
    }
    .submenu-open .submenu {
        display: block !important;
    }
}

/* Styles pour l'alerte personnalisée de contact */
.custom-alert {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
    min-width: 320px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transform: translateX(450px);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    border-left: 5px solid #28a745;
}

.custom-alert.show {
    transform: translateX(0);
    opacity: 1;
}

.custom-alert-success {
    border-left-color: #28a745;
}

.custom-alert-error {
    border-left-color: #dc3545;
}

.custom-alert-content {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    gap: 15px;
    position: relative;
}

.custom-alert-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.custom-alert-success .custom-alert-icon {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.custom-alert-error .custom-alert-icon {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.custom-alert-icon i {
    font-size: 1.2rem;
}

.custom-alert-text {
    flex: 1;
    min-width: 0;
}

.custom-alert-text h3 {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.custom-alert-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
    color: #666;
}

.custom-alert-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.custom-alert-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #666;
}

.custom-alert-close i {
    font-size: 0.9rem;
}

/* Animation d'entrée progressive */
@keyframes alertSlideIn {
    from {
        transform: translateX(450px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.custom-alert.show {
    animation: alertSlideIn 0.3s ease forwards;
}

/* Responsive pour mobile */
@media (max-width: 768px) {
    .custom-alert {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        min-width: auto;
        transform: translateY(-100px);
    }
    
    .custom-alert.show {
        transform: translateY(0);
    }
    
    .custom-alert-content {
        padding: 16px;
        gap: 12px;
    }
    
    .custom-alert-icon {
        width: 36px;
        height: 36px;
    }
    
    .custom-alert-icon i {
        font-size: 1.1rem;
    }
    
    .custom-alert-text h3 {
        font-size: 1rem;
    }
    
    .custom-alert-text p {
        font-size: 0.9rem;
    }
    
    @keyframes alertSlideIn {
        from {
            transform: translateY(-100px);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }
}