@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700&display=swap');

/* === Début des styles importés de style.css pour membres.html === */
:root {
    --primary-color: #de6b70;
    --primary-color-dark: #c55a5f;
    --primary-color-rgb: 222, 107, 112;
    --text-color: #323232;
    --background-color: #ffffff;
    --input-background: #ffffff;
    --border-color: #dddddd;
    --disabled-color: #cccccc;
    --dark-background: #1a1a1a;
    --dark-input-background: #2d2d2d;
    --dark-border-color: #404040;
}

* {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}

/* Personnalisation de la barre de défilement */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #de6b70 0%, #4c681a 100%);
    border-radius: 10px;
    border: 3px solid #f5f5f5;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #c55a5f 0%, #3a4f14 100%);
}

/* Personnalisation de la barre de défilement pour le mode sombre */
.dark-theme ::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 10px;
}

.dark-theme ::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #42a5f5 0%, #1976d2 100%);
    border-radius: 10px;
    border: 3px solid #f5f5f5;
}

.dark-theme ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #1976d2 0%, #1565c0 100%);
}

body.dark-theme::-webkit-scrollbar-thumb, .dark-theme ::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #42a5f5 0%, #1976d2 100%) !important;
    border-radius: 10px !important;
    border: 3px solid #f5f5f5 !important;
}
body.dark-theme::-webkit-scrollbar-thumb:hover, .dark-theme ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #1976d2 0%, #1565c0 100%) !important;
}

/* Les styles de la navbar ont été supprimés car ils sont désormais gérés par navbar.css */

/* Section intro (comme activites.html) */
.intro-section {
    padding: 6rem 2rem 2rem 2rem;
    margin-top: calc(72px + 3rem);
    text-align: center;
}
.intro-container {
    max-width: 900px;
    margin: 0 auto;
}
.intro-title {
    font-size: 3rem;
    color: #323232;
    margin-bottom: 1.5rem;
    position: relative;
}
.intro-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #de6b70, #4c681a);
    border-radius: 2px;
}
.intro-description {
    color: #666;
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 0 auto 2rem auto;
    max-width: 700px;
}
/* Footer */
.footer {
    background-color: #DDD0C8;
    padding: 3rem 0 1rem 0;

}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 0 2rem;
}
.footer-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.footer-section h3 {
    color: #4c681a;
    margin: 0;
    padding: 0;
    font-size: 1.2rem;
    line-height: 40px;
    font-weight: 600;
}
.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 40px;
    margin-bottom: 1rem;
}
.footer-logo {
    height: 40px;
    width: auto;
}
.footer-section p,
.footer-section .social-links,
.footer-section .footer-link {
    margin-top: 1rem;
}
.footer-section p {
    color: #323232;
    margin: 0.5rem 0;
    font-size: 1rem;
    font-weight: 500;
}
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}
.social-links a {
    color: #323232;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}
.social-links a:hover {
    color: #4c681a;
}
.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(50, 50, 50, 0.1);
}
.footer-bottom p {
    color: #323232;
    font-size: 0.9rem;
}
.footer-link {
    display: block;
    color: #323232;
    text-decoration: none;
    margin: 0.5rem 0;
    font-size: 1rem;
    transition: color 0.3s ease;
    font-weight: 500;
}
.footer-link:hover {
    color: #4c681a;
}
@media (max-width: 1209px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Anciennes positions désactivées pour harmonisation */
/*
.calendar-icon {
    position: fixed;
    bottom: 30px;
    right: 90px;
    width: 50px;
    height: 50px;
    background-color: #333;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
}
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1100;
}
*/

/* Harmonisation avec index.html/contact.html */




.calendar-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}
.calendar-modal.active {
    display: flex;
}
.calendar-container {
    background-color: white;
    border-radius: 15px;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.calendar-title {
    font-size: 1.5rem;
    color: #323232;
    margin: 0;
}
.calendar-nav {
    background: none;
    border: none;
    color: #323232;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px 10px;
    transition: color 0.3s ease;
}
.calendar-nav:hover {
    color: #4c681a;
}
.calendar-main {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.calendar-grid {
    flex: 1;
    min-width: 300px;
}
.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 10px;
}
.calendar-weekdays div {
    text-align: center;
    font-weight: bold;
    color: #323232;
    padding: 5px;
}
.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}
.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    position: relative;
    background-color: #f8f8f8;
    margin: 2px;
    border: 1px solid transparent;
    color: #000000;
}
.calendar-day:hover {
    background-color: #e8e8e8;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.calendar-day.today {
    background: #DDD0C8;
    color: #323232;
    font-weight: bold;
    border: 2px solid #de6b70;
}
.calendar-day.selected {
    background: #de6b70;
    color: white;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(222, 107, 112, 0.3);
    border: 1px solid #de6b70;
}
.calendar-day.other-month {
    color: #ccc;
    background-color: #f5f5f5;
}
.calendar-day.has-events {
    position: relative;
    border: 1px solid #4c681a;
    background-color: rgba(76, 104, 26, 0.05);
}
.calendar-day.has-events:hover {
    border-color: #de6b70;
    background-color: rgba(222, 107, 112, 0.05);
}
.calendar-day.selected.has-events {
    border-color: white;
    background-color: #de6b70;
}
.calendar-day.today.has-events {
    border-color: #de6b70;
    background-color: #DDD0C8;
}
.calendar-day.has-events::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: #4c681a;
    border-radius: 50%;
    box-shadow: 
        -8px 0 0 #4c681a,
        8px 0 0 #4c681a;
}
.calendar-day.has-events:hover::after {
    background: #de6b70;
    box-shadow: 
        -8px 0 0 #de6b70,
        8px 0 0 #de6b70;
}
.calendar-day.selected.has-events::after {
    background: white;
    box-shadow: 
        -8px 0 0 white,
        8px 0 0 white;
}
.calendar-events {
    flex: 1;
    min-width: 300px;
    background-color: #f8f8f8;
    border-radius: 15px;
    padding: 20px;
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid #e8e8e8;
}
.calendar-events h3 {
    font-size: 1.2rem;
    color: #323232;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid;
    border-image: linear-gradient(90deg, #de6b70, #4c681a) 1;
}
.events-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.event-item {
    background-color: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #e8e8e8;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 10px;
}
.event-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}
.event-item .event-title {
    font-weight: bold;
    color: #323232;
    margin-bottom: 8px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.event-item .event-title::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #de6b70;
    border-radius: 50%;
}
.event-item .event-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.4;
}
.no-events {
    color: #666;
    text-align: center;
    margin: 30px 0;
    font-style: italic;
    font-size: 1.1rem;
    padding: 20px;
    background-color: white;
    border-radius: 12px;
    border: 1px solid #e8e8e8;
}
.quick-date-selector {
    background-color: #f8f8f8;
    border-radius: 15px;
    padding: 20px;
    margin-top: 20px;
    border: 1px solid #e8e8e8;
}
.quick-date-selector h3 {
    font-size: 1.2rem;
    color: #323232;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid;
    border-image: linear-gradient(90deg, #de6b70, #4c681a) 1;
}
.date-inputs {
    display: flex;
    gap: 15px;
    align-items: center;
}
.date-picker {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    font-size: 1rem;
    color: #323232;
    background-color: white;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.date-picker:focus {
    outline: none;
    border-color: #de6b70;
    box-shadow: 0 0 0 3px rgba(222, 107, 112, 0.1);
}
.date-button {
    background: linear-gradient(135deg, #de6b70 0%, #4c681a 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.date-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}
.date-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(222, 107, 112, 0.4);
}
.date-button:hover::before {
    left: 100%;
}
@media (max-width: 768px) {
    .calendar-main {
        flex-direction: column;
    }
    .calendar-grid,
    .calendar-events {
        min-width: 100%;
    }
    .date-inputs {
        flex-direction: column;
    }
    .date-button {
        width: 100%;
    }
}
.calendar-day.multi-day-event {
    background-color: rgba(76, 104, 26, 0.05);
    border: 1px solid #4c681a;
}
.calendar-day.multi-day-event:hover {
    background-color: rgba(222, 107, 112, 0.05);
    border-color: #de6b70;
}
.calendar-day.selected.multi-day-event {
    border-color: white;
    background-color: #de6b70;
}
.event-duration {
    font-size: 0.85rem;
    color: #666;
    margin-left: 8px;
    font-weight: normal;
    background-color: rgba(76, 104, 26, 0.1);
    padding: 2px 8px;
    border-radius: 12px;
}
.event-start-date {
    font-size: 0.85rem;
    color: #666;
    margin-top: 8px;
    font-style: italic;
}

/* === Styles du calendrier en mode sombre === */
.dark-theme .calendar-day {
    color: #000000;
}

.dark-theme .calendar-day.today {
    background: #1976d2;
    color: white;
    font-weight: bold;
    border: 2px solid #42a5f5;
}

.dark-theme .calendar-day.selected {
    background: #1976d2;
    color: white;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
    border: 1px solid #42a5f5;
}

.dark-theme .calendar-day.selected.has-events {
    border-color: white;
    background-color: #1976d2;
}

.dark-theme .calendar-day.today.has-events {
    border-color: #42a5f5;
    background-color: #1976d2;
}

.dark-theme .calendar-day.selected.has-events::after {
    background: white;
    box-shadow: 
        -8px 0 0 white,
        8px 0 0 white;
}

.dark-theme .calendar-day.selected.multi-day-event {
    border-color: white;
    background-color: #1976d2;
}

/* === Styles des titres h3 du calendrier en mode sombre === */
.dark-theme .calendar-events h3 {
    border-bottom: 2px solid;
    border-image: linear-gradient(90deg, #42a5f5, #1976d2) 1;
}

.dark-theme .quick-date-selector h3 {
    border-bottom: 2px solid;
    border-image: linear-gradient(90deg, #42a5f5, #1976d2) 1;
}
/* === Fin des styles importés de style.css === */

body {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    width: 100%;
    color: #222;
}

body.dark-theme {
    background: linear-gradient(135deg, #e8f4f8 0%, #d4e6f1 100%);
}

.membres-main {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px 0 20px;
    margin-top: calc(72px + 3rem);
    margin-bottom: 3rem;
}

.membres-hero {
    text-align: center;
    margin-bottom: 40px;
}

.membres-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #2d3a4b;
}

.membres-hero p {
    font-size: 1.2rem;
    color: #555;
}

.membres-section {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    margin-bottom: 40px;
}

.membre-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 340px;
    padding: 32px 24px;
    transition: transform 0.2s;
}

.membre-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}

.membre-photo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 18px;
    border: 4px solid #e0e0e0;
}

.membre-info h2 {
    margin: 0 0 6px 0;
    font-size: 1.4rem;
    color: #2d3a4b;
}

.membre-info h3 {
    margin: 0 0 12px 0;
    font-size: 1.3rem;
    color: #4c681a;
    font-weight: 400;
}

.dark-theme .membre-info h3 {
    color: #113356 !important;
    font-size: 1.3rem;
}

.membre-info p {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
}

.dark-theme .membre-info p {
    color: #113356 !important;
}

.retour-accueil {
    text-align: center;
    margin-bottom: 40px;
}

.retour-accueil a {
    color: #2d3a4b;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.2s;
}

.retour-accueil a:hover {
    color: #b48a78;
}

@media (max-width: 800px) {
    .membres-section {
        flex-direction: column;
        align-items: center;
    }
    .membre-card {
        width: 90%;
    }
}

/* === Styles importés de artiste.css pour artiste-section === */
.artiste-section {
    padding: 6rem 2rem 0rem 2rem;
    margin-top: 72px;
}
.artiste-container {
    max-width: 1200px;
    margin: 0 auto;
}
.artiste-title {
    text-align: center;
    font-size: 3rem;
    color: #323232;
    margin-bottom: 4rem;
    position: relative;
}
.artiste-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #de6b70, #4c681a);
    border-radius: 2px;
}
.artiste-description {
    text-align: center;
    max-width: 800px;
    margin: 2rem auto 4rem;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    position: relative;
    padding: 0 1rem;
}
.artiste-description::before,
.artiste-description::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, #de6b70, #4c681a);
    opacity: 0.5;
}
.artiste-description::before {
    left: 0;
    top: 0;
}
.artiste-description::after {
    right: 0;
    bottom: 0;
}
.artiste-mini-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    width: 100%;
}
.mini-nav-link {
    text-decoration: none;
    color: #323232;
    font-size: 1.2rem;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    width: 200px;
    text-align: center;
}
.mini-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #de6b70 0%, #4c681a 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}
.mini-nav-link span {
    position: relative;
    z-index: 2;
    color: #323232;
    transition: color 0.3s ease;
}
.mini-nav-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.mini-nav-link:hover::before {
    opacity: 0.1;
}
.mini-nav-link:hover span {
    color: #4c681a;
}
.artiste-categories {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.artiste-category {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}
.artiste-content {
    display: flex;
    gap: 2rem;
    align-items: center;
}
.artiste-text {
    flex: 1;
}
.artiste-image-container {
    flex: 1;
    max-width: 400px;
}
.artiste-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}
.artiste-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #de6b70, #4c681a);
}
.artiste-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.artiste-category h3 {
    color: #323232;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}
.artiste-category h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #de6b70;
}
.artiste-category p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}
@media (max-width: 768px) {
    .artiste-section {
        padding: 4rem 1rem 0rem 1rem;
    }
    .artiste-title {
        font-size: 2.5rem;
    }
    .artiste-content {
        flex-direction: column;
    }
    .artiste-image-container {
        max-width: 100%;
    }
    .artiste-category {
        padding: 2rem;
    }
    .artiste-category h3 {
        font-size: 1.8rem;
    }
    .artiste-category p {
        font-size: 1rem;
    }
    .artiste-mini-nav {
        gap: 1rem;
    }
    .mini-nav-link {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
        width: 180px;
    }
}
@media (max-width: 480px) {
    .artiste-mini-nav {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    .mini-nav-link {
        width: 200px;
        text-align: center;
        padding: 0.8rem;
    }
}
/* === Fin des styles importés de artiste.css === */

.membres-presentations {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin: 4rem 0;
    flex-wrap: wrap;
}
.membre-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.07);
    padding: 2.5rem 2rem;
    max-width: 400px;
    flex: 1 1 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}
.membre-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 12px 32px rgba(0,0,0,0.13);
}
.membre-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #de6b70 0%, #4c681a 100%);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.photo-francois, .photo-muriel {
    /* À remplacer par l'image réelle plus tard */
    background-size: cover;
    background-position: center;
}
.membre-nom {
    font-size: 1.5rem;
    color: #323232;
    margin-bottom: 1rem;
    text-align: center;
}
.membre-description {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.7;
    text-align: center;
}
@media (max-width: 1209px) {
    .membres-presentations {
        flex-direction: column;
        align-items: center;
    }
    .membre-card {
        max-width: 95vw;
    }
}

/* === Styles manquants pour le mode sombre === */
.dark-theme .date-button,
.dark-theme .slide-button,
.dark-theme .methode-button,
.dark-theme .methode-active-button,
.dark-theme .submit-button {
    background: linear-gradient(135deg, #1976d2 0%, #42a5f5 100%) !important;
    color: #fff !important;
    box-shadow: 0 5px 15px rgba(25, 118, 210, 0.3) !important;
}

.dark-theme .date-button:hover,
.dark-theme .slide-button:hover,
.dark-theme .methode-button:hover,
.dark-theme .methode-active-button:hover,
.dark-theme .submit-button:hover {
    background: linear-gradient(135deg, #1565c0 0%, #42a5f5 100%) !important;
    box-shadow: 0 8px 20px rgba(25, 118, 210, 0.4) !important;
}

.dark-theme .calendar-day.other-month {
    color: #999;
    background-color: #f0f0f0;
}

.dark-theme .footer {
    background-color: #BAD2E0 !important;
}


.dark-theme .artiste-title::after {
    background: linear-gradient(90deg, #42a5f5, #1976d2) !important;
}
.dark-theme .artiste-description::before,
.dark-theme .artiste-description::after {
    background: linear-gradient(0deg, #42a5f5, #1976d2) !important;
}

.dark-theme .membre-card {
    border: 1px solid #00A9BA !important;
}
/* === Fin des styles importés de style.css === */ 

/* Animation apparition du bas vers le haut (comme activites) */
.artiste-title, .artiste-description, .membre-card {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.artiste-title.visible, .artiste-description.visible, .membre-card.visible {
    opacity: 1;
    transform: translateY(0);
} 

/* Hover sombre pour les liens du footer */
.dark-theme .footer-link:hover {
    color: #0A1F2E !important;
}
/* Hover sombre pour les icônes du footer */
.dark-theme .social-links a:hover {
    color: #0A1F2E !important;
} 

/* Couleur explicite pour les titres de section du footer */
.footer-section h3 {
    color: #4c681a !important;
}
.dark-theme .footer-section h3 {
    color: #113356 !important;
} 

.burger-menu {
    color: #4c681a;
}

.burger-menu:hover {
    color: #4c681a;
}

.dark-theme .burger-menu {
    color: #113356;
}

.dark-theme .burger-menu:hover {
    color: #113356;
} 

/* Styles pour la modale musicale et le bouton Play/Pause */


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

@keyframes popIn {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}







@media (max-width: 500px) {
    
    
    
}
/* Mode sombre pour la modale musicale */
/* Styles à ajouter si nécessaire */

@media (max-width: 600px) {
  .membres-main {
    padding: 20px 5px 0 5px;
    margin-top: 90px;
  }
  .membres-presentations {
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
    align-items: stretch;
  }
  .membre-card {
    max-width: 100vw;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 1.2rem 0.5rem;
    min-width: 0;
    margin: 0 auto;
  }
  .membre-photo {
    width: 90px;
    height: 90px;
  }
  .membre-nom {
    font-size: 1.1rem;
  }
  .membre-description {
    font-size: 0.98rem;
  }
  .artiste-title {
    font-size: 1.7rem;
  }
  .artiste-description {
    font-size: 1rem;
    padding: 0 0.2rem;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 0.5rem;
  }
  .footer-section {
    margin-bottom: 1.2rem;
  }
  .footer-logo {
    height: 30px;
  }
  .footer-section h3 {
    font-size: 1rem;
    line-height: 30px;
  }
  .footer-section p, .footer-link {
    font-size: 0.95rem;
  }
 
  
  
  
}

html, body {
  max-width: 100vw;
  overflow-x: hidden;
} 

/* --- Harmonisation stricte avec la-methode.css : boutons flottants --- */


/* --- Fin harmonisation stricte --- */ 

/* === Harmonisation stricte avec index.html (style.css) : boutons flottants === */
.calendar-icon {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #333;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
}

.back-to-top {
    position: fixed;
    bottom: 170px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1100;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.calendar-icon i {
    font-size: 1.7rem !important;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-icon:hover {
    background-color: #555;
    transform: scale(1.1);
}

.back-to-top:hover {
    background-color: #555;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .calendar-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        bottom: 20px;
        right: 75px;
    }
    .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .calendar-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        bottom: 20px;
        right: 75px;
    }
    .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        bottom: 20px;
        right: 20px;
    }
}
/* === Fin harmonisation stricte index.html === */ 

/* === Styles pour la section Collaborations et Interventions === */
.collaborations-section {
    padding: 4rem 2rem;
    margin-top: 2rem;
}

.collaborations-title {
    text-align: center;
    font-size: 2.5rem;
    color: #323232;
    margin-bottom: 1rem;
    position: relative;
}

.collaborations-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #de6b70, #4c681a);
    border-radius: 2px;
}

.collaborations-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.collaboration-category {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(222, 107, 112, 0.1);
}

.collaboration-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid;
    border-image: linear-gradient(90deg, #de6b70, #4c681a) 1;
}

.category-header i {
    font-size: 1.5rem;
    color: #de6b70;
    width: 40px;
    text-align: center;
}

.category-header h3 {
    color: #323232;
    font-size: 1.4rem;
    margin: 0;
    font-weight: 600;
}

.collaboration-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.collaboration-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(222, 107, 112, 0.1);
    transition: all 0.3s ease;
}

.collaboration-item:hover {
    border-color: rgba(222, 107, 112, 0.3);
    transform: translateX(5px);
}

.collaboration-item i {
    color: #4c681a;
    font-size: 1.1rem;
    margin-top: 0.2rem;
    min-width: 20px;
    text-align: center;
}

.collaboration-item span {
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
    flex: 1;
}

/* Responsive design pour les collaborations */
@media (max-width: 768px) {
    .collaborations-section {
        padding: 3rem 1rem;
    }
    
    .collaborations-title {
        font-size: 2rem;
    }
    
    .collaborations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .collaboration-category {
        padding: 1.5rem;
    }
    
    .category-header h3 {
        font-size: 1.2rem;
    }
    
    .collaboration-item {
        padding: 0.8rem;
    }
    
    .collaboration-item span {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .collaborations-title {
        font-size: 1.8rem;
    }
    
    .collaborations-subtitle {
        font-size: 1rem;
    }
    
    .collaboration-category {
        padding: 1rem;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .category-header i {
        font-size: 1.3rem;
    }
}

/* Mode sombre pour les collaborations */

.dark-theme .collaborations-title::after {
    background: linear-gradient(90deg, #42a5f5, #1976d2);
}

.dark-theme .collaboration-category {
    background: #BAD2E0;
    border-color: rgba(66, 165, 245, 0.2);
}

.dark-theme .collaboration-category:hover {
    border-color: rgba(66, 165, 245, 0.4);
}

.dark-theme .category-header {
    border-image: linear-gradient(90deg, #42a5f5, #1976d2) 1;
}

.dark-theme .category-header i {
    color: #1976d2;
}

.dark-theme .category-header h3 {
    color: #113356;
}

.dark-theme .collaboration-item {
    border-color: rgba(66, 165, 245, 0.2);
}

.dark-theme .collaboration-item:hover {
    border-color: rgba(66, 165, 245, 0.4);
}

.dark-theme .collaboration-item i {
    color: #1976d2;
}

.dark-theme .collaboration-item span {
    color: #113356;
}

/* Animation pour les collaborations */
.collaboration-category {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.collaboration-category.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === Fin des styles pour les collaborations === */ 

/* === Styles du calendrier en mode sombre === */
.dark-theme .calendar-container {
    background-color: #BAD2E0;
    border: 1px solid #00A9BA;
}

.dark-theme .calendar-title {
    color: #113356;
}

.dark-theme .calendar-nav {
    color: #113356;
}

.dark-theme .calendar-nav:hover {
    color: #1976d2;
}

.dark-theme .calendar-weekdays div {
    color: #113356;
    font-weight: bold;
}

.dark-theme .calendar-day {
    color: #113356;
    background-color: #E8F4F8;
    border: 1px solid #B8D4E3;
}

.dark-theme .calendar-day:hover {
    background-color: #D4E6F1;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(17, 51, 86, 0.2);
}

.dark-theme .calendar-day.today {
    background: #42a5f5;
    color: white;
    font-weight: bold;
    border: 2px solid #1976d2;
}

.dark-theme .calendar-day.selected {
    background: #1976d2;
    color: white;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.4);
    border: 1px solid #42a5f5;
}

.dark-theme .calendar-day.other-month {
    color: #8A9BA8;
    background-color: #F0F4F7;
}

.dark-theme .calendar-day.has-events {
    border: 1px solid #1976d2;
    background-color: rgba(25, 118, 210, 0.08);
}

.dark-theme .calendar-day.has-events:hover {
    border-color: #42a5f5;
    background-color: rgba(66, 165, 245, 0.1);
}

.dark-theme .calendar-day.selected.has-events {
    border-color: white;
    background-color: #1976d2;
}

.dark-theme .calendar-day.today.has-events {
    border-color: #1976d2;
    background-color: #42a5f5;
}

.dark-theme .calendar-day.has-events::after {
    background: #1976d2;
    box-shadow: 
        -8px 0 0 #1976d2,
        8px 0 0 #1976d2;
}

.dark-theme .calendar-day.has-events:hover::after {
    background: #42a5f5;
    box-shadow: 
        -8px 0 0 #42a5f5,
        8px 0 0 #42a5f5;
}

.dark-theme .calendar-day.selected.has-events::after {
    background: white;
    box-shadow: 
        -8px 0 0 white,
        8px 0 0 white;
}

.dark-theme .calendar-day.multi-day-event {
    background-color: rgba(25, 118, 210, 0.08);
    border: 1px solid #1976d2;
}

.dark-theme .calendar-day.multi-day-event:hover {
    background-color: rgba(66, 165, 245, 0.1);
    border-color: #42a5f5;
}

.dark-theme .calendar-day.selected.multi-day-event {
    border-color: white;
    background-color: #1976d2;
}

.dark-theme .calendar-events {
    background-color: #E8F4F8;
    border: 1px solid #B8D4E3;
}

.dark-theme .calendar-events h3 {
    color: #113356;
    border-bottom: 2px solid;
    border-image: linear-gradient(90deg, #42a5f5, #1976d2) 1;
}

.dark-theme .event-item {
    background-color: #F0F4F7;
    border: 1px solid #B8D4E3;
}

.dark-theme .event-item:hover {
    background-color: #E8F4F8;
    box-shadow: 0 6px 16px rgba(17, 51, 86, 0.15);
}

.dark-theme .event-item .event-title {
    color: #113356;
}

.dark-theme .event-item .event-title::before {
    background: #1976d2;
}

.dark-theme .event-item .event-description {
    color: #4A5A6B;
}

.dark-theme .no-events {
    color: #4A5A6B;
    background-color: #F0F4F7;
    border: 1px solid #B8D4E3;
}

.dark-theme .quick-date-selector {
    background-color: #E8F4F8;
    border: 1px solid #B8D4E3;
}

.dark-theme .quick-date-selector h3 {
    color: #113356;
    border-bottom: 2px solid;
    border-image: linear-gradient(90deg, #42a5f5, #1976d2) 1;
}

.dark-theme .date-picker {
    background-color: #F0F4F7;
    border: 1px solid #B8D4E3;
    color: #113356;
}

.dark-theme .date-picker:focus {
    border-color: #1976d2;
    box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.1);
}

.dark-theme .date-button {
    background: linear-gradient(135deg, #42a5f5 0%, #1976d2 100%);
    color: white;
}

.dark-theme .date-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(25, 118, 210, 0.4);
    background: linear-gradient(135deg, #1976d2 0%, #42a5f5 100%);
}

.dark-theme .event-duration {
    background-color: rgba(25, 118, 210, 0.15);
    color: #113356;
}

.dark-theme .event-start-date {
    color: #4A5A6B;
}
