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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: #2d1416!important;
            color: #fff;
            overflow-x: hidden;
        }

        /* Animation du rideau minimaliste */
        .curtain-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            z-index: 9999;
            pointer-events: none;
        }

        .curtain {
            position: absolute;
            top: 0;
            width: 50%;
            height: 100%;
            background: #250407;
            transition: transform 1.5s cubic-bezier(0.76, 0, 0.24, 1);
        }

        .curtain-left {
            left: 0;
        }

        .curtain-right {
            right: 0;
        }

        .curtain-container.open .curtain-left {
            transform: translateX(-100%);
        }

        .curtain-container.open .curtain-right {
            transform: translateX(100%);
        }

        /* Header */
        header {
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
            background-image: url("../img/img-home.jpg");
            background-repeat: no-repeat;
            background-size: cover;
    
        }
     .menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
} 
.mobile-menu {
    position: fixed;
    inset: 0;
    background: #2d1416;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    z-index: 1000;
}

.mobile-menu a {
    color: white;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    text-decoration: none;
}
.mobile-menu.active {
    transform: translateY(0);
}
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}



        h1 {
            font-size: clamp(3rem, 8vw, 8rem);
            font-weight: 300;
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
            opacity: 0;
            animation: fadeInUp 1s ease-out 1.5s forwards;
        }

        .tagline {
            font-size: clamp(1rem, 2vw, 1.5rem);
            color: #888;
            font-weight: 300;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            opacity: 0;
            animation: fadeInUp 1s ease-out 1.8s forwards;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 3rem;
            font-size: 0.9rem;
            color: #888;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            opacity: 0;
            animation: fadeInUp 1s ease-out 2.1s forwards;
        }

        /* Navigation */
        nav {
            background: #2d1416!important;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 2rem 4rem;
            z-index: 100;
            background: rgba(10, 10, 10, 0);
            transition: background 0.3s;
            border-bottom: solid 1px white;

        }

        nav.scrolled {
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
        }

        .logo {
            font-size: 1.2rem;
            font-weight: 300;
            letter-spacing: 0.2em;
            color: #FFF!important;
        }
        h1{
            color: #FFF;

        }
        .nav-links-o {
            display: flex;
            gap: 3rem;
        }
       .nav-links-m {
            display: flex;
            gap: 3rem;
        }

#piece-une {
    padding: 6rem 2rem;
    background: #2d1416;
    color: white;
}

.piece-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.piece-images {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.piece-images img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    transition: transform 0.4s ease;
}

.piece-images img:hover {
    transform: scale(1.03);
}

.piece-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.5rem;
}

.piece-content h3 {
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    color: #ccc;
}

.piece-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.piece-tagline {
    display: inline-block;
    margin-top: 2rem;
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.8;
}







@media (max-width: 568px) {
    .nav-links-o {
        display: none;
    }
    .menu-toggle {
        display: flex;
    }
    header {
    height: 45vh;
    }
    .carousel-item img{
        height: auto!important;
    }

 
}

@media (min-width: 569px) {
    .menu-toggle {
        display: none;
    }
    .mobile-menu {
        display: none;
    }
}
.close-menu { 
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.close-menu:hover {
    transform: rotate(90deg);
    opacity: 0.7;
}
        nav a {
            color: #fff;
            text-decoration: none;
            font-size: 0.9rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            transition: color 0.3s;
            position: relative;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 1px;
            background: #fff;
            transition: width 0.3s;
        }

        nav a:hover::after {
            width: 100%;
        }

        /* Sections */
        section {
            min-height: 100vh;
            padding: 8rem 4rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        h2 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 300;
            margin-bottom: 4rem;
            letter-spacing: -0.02em;
            color: #fff!important;
        }

        /* Calendrier */
        .calendar-grid {
            display: grid;
            gap: 1px;
            background: #222;
        }

        .event-card {
            background: #0a0909;
            padding: 3rem;
            transition: all 0.4s cubic-bezier(0.76, 0, 0.24, 1);
            position: relative;
            overflow: hidden;
        }

        .event-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: #fff;
            transition: width 0.6s cubic-bezier(0.76, 0, 0.24, 1);
            z-index: 0;
        }

        .event-card:hover::before {
            width: 100%;
        }

        .event-card:hover {
            background: #fff;
        }

        .event-card:hover * {
            color: #0a0a0a;
        }

        .event-content {
            position: relative;
            z-index: 1;
        }

        .event-header {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            margin-bottom: 2rem;
            gap: 2rem;
        }

        .event-date {
            font-size: 1rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: #888;
            white-space: nowrap;
        }

        .event-title {
            font-size: clamp(1.5rem, 3vw, 2.5rem);
            font-weight: 300;
            letter-spacing: -0.02em;
            flex: 1;
        }

        .event-details {
            color: #888;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .event-location {
            color: #888;
            font-size: 0.9rem;
            letter-spacing: 0.05em;
        }

        /* Contact Form */
        .contact-wrapper {
            max-width: 800px;
        }

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

        label {
            display: block;
            color: #888;
            margin-bottom: 0.8rem;
            font-size: 0.9rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        input, textarea {
            width: 100%;
            padding: 1.2rem 0;
            background: transparent;
            border: none;
            border-bottom: 1px solid #333;
            color: #fff;
            font-size: 1.1rem;
            transition: border-color 0.3s;
            font-family: inherit;
        }

        input:focus, textarea:focus {
            outline: none;
            border-bottom-color: #fff;
        }

        textarea {
            resize: none;
            min-height: 120px;
        }

        button {
            background: #fff;
            color: #0a0a0a;
            padding: 1.2rem 3rem;
            border: none;
            font-size: 0.9rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 2rem;
        }

        button:hover {
            background: #0a0a0a;
            color: #fff;
            box-shadow: inset 0 0 0 2px #fff;
        }

        /* Footer */
        footer {
            text-align: center;
            padding: 4rem 2rem;
            color: #555;
            font-size: 0.85rem;
            letter-spacing: 0.1em;
            border-top: 1px solid #222;
        }

        footer p {
            margin-bottom: 0.5rem;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            nav {
                padding: 1.5rem 2rem;
            }

            .nav-links-o {
                gap: 1.5rem;
            }
              .nav-links-m {
                gap: 1.5rem;
            }

            section {
                padding: 6rem 2rem;
                    min-height: 55vh;
            }
       
    .piece-container {
        grid-template-columns: 1fr;
    }

    .piece-images {
        order: 2;
    }

    .piece-content {
        order: 1;
        text-align: center;
    }

            .event-header {
                flex-direction: column;
                gap: 1rem;
            }

            .event-card {
                padding: 2rem;
            }
        }
        .admin-section{
  margin-left: 15%;
      margin-top: 12%;
}
.t-admin{
     color: white !important;
    border: 1px solid white;
    padding-left: 5%;
   
}
.admin-section input{
  margin-bottom: 30px;
  margin-left: 30px;
}
.admin-section textarea{
  
  margin-left: 30px;
}
.pres-prod-admin {
    color: #FFF;
    font-family: 'Kiona', sans-serif;

    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    text-align: left;
    opacity: 0.7;
    margin-top: 5%;
}
.pres-prod-admin-link a{
  color: #FFF;
    font-family: 'Kiona', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    text-align: left;
    opacity: 0.7;
    margin-top: 5%;}

.actu-box{
  width: 80%;
  margin: 10%;
}
.actu-content{
  margin-top: 5%;
}
.img-actu{
  width: 100%;
}
h2{
      color: #fff;
}
.center-content{
        display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
        margin-top: 150px;
        width: 80%;
    margin-left: 10%;
}
.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.member-card {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    cursor: pointer;
    background: #111;
    box-shadow: 0 20px 40px rgba(0,0,0,0.35);
    transition: transform 0.4s ease;
}

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

.member-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.member-card:hover img {
    transform: scale(1.1);
}

/* Overlay infos */
.member-info {
    position: absolute;
    inset: 0;
    background: rgba(45, 20, 22, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    text-align: center;
}

.member-card:hover .member-info {
    opacity: 1;
}

.member-info h3 {
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    color: #ccc;
}

.member-info span {
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ccc;
}
.member-info {
    transform: translateY(20px);
}

.member-card:hover .member-info {
    opacity: 1;
    transform: translateY(0);
}
.center-content-2{
        display: flex;
    flex-direction: column;
    text-align: left;
        margin-top: 150px;
        width: 80%;
    margin-left: 10%;
}

.timeline {
    position: relative;
    margin: 5rem 0;
    padding-left: 2rem;
    border-left: 1px solid #333;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;

}



.timeline-date {
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
        color: white;

}

.timeline-text {
    color: #bbb;
    font-size: 1rem;
}
.margin-h2{
    margin-top: 10%;
}
.carousel-wrapper {
    max-width: 1000px;
    margin: 5rem auto;
}

.carousel-item img {
    height: 700px;
    object-fit: cover;
    filter: grayscale(20%) brightness(0.85);
}

.carousel-caption {
    background: rgba(10, 10, 10, 0.6);
    padding: 1.5rem 2rem;
    border: 1px solid #222;
}

.carousel-caption h5 {
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.carousel-caption p {
    color: #ccc;
    font-size: 0.95rem;
}

/* Boutons discrets */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}
table{
    width: 80%!important;
}
.animated-words-bg {
position: relative;
    top: -400px;
    width: 100%;
        left: 50%;
    /* height: 590px; */
    pointer-events: none;/* ne gêne pas les clics */
}

.animated-words-bg span {
    position: absolute;
    color: rgba(255, 255, 255, 0.39);
    font-size: clamp(1rem, 3vw, 3rem);
    font-weight: 300;
    white-space: nowrap;
    animation: float linear infinite;
}

/* Animation */
@keyframes float {
    from {
        transform: translateY(120vh);
    }
    to {
        transform: translateY(-20vh);
    }
}
html{
        box-shadow :inset 0 0 30px #796223;
}
.site-footer {
    background: #0a0a0a;
    border-top: 1px solid #222;
    padding: 4rem 2rem 2rem;
    color: #888;
    font-size: 0.9rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    align-items: start;
}

.footer-brand h3 {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #aaa;
    line-height: 1.6;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-nav a {
    color: #888;
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #fff;
}

.footer-contact p {
    margin-bottom: 0.6rem;
    color: #aaa;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #222;
    font-size: 0.8rem;
    color: #555;
}
    .sf-toolbar{
        display: none!important;
        }