/* col prin= *#d4af37; */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-color: #0a0a0a; 
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}
.main-nav {
    width: 100%;
    height: 90px;
    background-color: #000000;
    border-bottom: 2px solid #d4af37; 
    display: flex;
    align-items: center;
    position: sticky; 
    top: 0;
    z-index: 1000;
}
.nav-content {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* Logo */
.logo img {
    height: 60px; 
    display: block;
}
/* link */
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}
.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}
.nav-links a:hover {
    color: #d4af37;
}

main {
    padding-top: 20px;
}

.section-title { 
    font-family: 'Oswald', sans-serif; 
    font-size: 3.5rem; 
    text-transform: uppercase; 
    text-align: center; 
    margin: 80px auto; 
    letter-spacing: 4px; 
    position: relative;
    display: table; 
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #d4af37;
    margin: 15px auto 0;
}

.hero-video {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.video-container {
    height: 100%;
    width: 100%;
}

.img-back {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4); 
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.hero-overlay h2 {
    font-family: 'Oswald';
    font-size: 4rem;
    color: #d4af37; 
    letter-spacing: 5px;
}

.presentation {
    padding: 80px 10%;
    background: #0a0a0a;
}

.info-block {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}
.info-box {
    background-color: #f8f9fa; 
    border-left: 5px solid #d4af37; 
    padding: 15px;
    margin: 20px 0;
    color: #333;
    font-weight: bold;
    text-align: center;
}

.info-block.reverse {
    flex-direction: row-reverse; 
}

.info-text { 
    flex: 1; 

}
.info-img { 
    
    flex: 1; 
}

.info-img img {
    width: 100%;
    border-radius: 4px;
    border: 1px solid #d4af37;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.info-text h3 {
    font-family: 'Oswald';
    font-size: 2rem;

    color: #d4af37;
    margin-bottom: 20px;
}

.info-text p {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.8;
}
.galerie-container img, .contact-content img {
    transition: filter 0.4s ease;
    filter: grayscale(0%);
}
/* --- Galerie --- */

.session-message {
    background: rgba(255,255,255,0.1);
    border: 1px solid #d4af37;
    padding: 15px;
    margin-bottom: 20px;
    color: #fff;
    text-align: center;


}

.upload-section {
    background: #333;

    padding: 20px;
    border-radius: 5px;
    margin-bottom: 30px;
}

.upload-section label {
    color: #d4af37;
    display: block;
    margin-bottom: 10px;
}

.upload-section input [type="file"] {
    color: #fff;
    margin-bottom: 10px;

}

.upload-section .submit-btn {
    background: #d4af37;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
    color: #000;
    transition: 0.3s;
}

.upload-section .submit-btn:hover {
    background: #fff;
}

.galerie-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-start;
}

.galerie-item {
    
    flex: 0 0 calc(33.33% - 10px);
    border: 1px solid #d4af37;
    overflow: hidden;
    height: 250px; 

}

.galerie-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    filter: grayscale(100%); 
    transition: 0.5s ease;
}


.galerie-item img:hover {
    filter: grayscale(0%); 
    transform: scale(1.1); /* dir biha zoom */
}

@media (max-width: 900px) {
    .galerie-item {
        flex: 0 0 calc(50% - 8px); 
    }
}

@media (max-width: 600px) {
    .galerie-item {
        flex: 0 0 100%; 
    }
}
.galerie-container img:hover, .contact-content img:hover {
    filter: grayscale(100%);
}

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

.gold {
    text-align: center;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 40px;
    color: #d4af37;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.galerie-main {
    padding: 120px 0 50px 0;
}

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

.session-info {
    background: rgba(255,255,255,0.05); 
    border: 1px solid #d4af37; 
    padding: 15px; 
    margin-bottom: 25px; 
    color: #fff; 
    text-align: center;
}

.upload-section {
    background: #111; 
    padding: 25px; 
    border-radius: 4px; 
    margin-bottom: 40px;
    border: 1px solid #222;
}

.upload-section label {
    color: #d4af37; 
    display: block; 
    margin-bottom: 15px;
    font-family: 'Oswald', sans-serif;
}

.upload-section input[type="file"] {
    color: #888;
    margin-bottom: 15px;
    display: block;
}

.submit-btn {
    background: #d4af37; 
    border: none; 
    padding: 12px 25px; 
    cursor: pointer; 
    font-weight: bold; 
    color: #000;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #fff;
}

.galerie-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.galerie-item {
    flex: 0 0 calc(33.33% - 14px);
    border: 1px solid #1a1a1a;
    overflow: hidden;
    height: 280px;
    transition: border-color 0.3s;
}

.galerie-item:hover {
    border-color: #d4af37;
}

.galerie-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: 0.6s ease;
}

.galerie-item img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .galerie-item {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 600px) {
    .galerie-item {
        flex: 0 0 100%;
    }
}


/* --- upld --- */
.upload-section {
    background: #1a1a1a;
    border: 1px solid #333;
    border-left: 5px solid #d4af37; 
    padding: 30px;

    border-radius: 8px;
    margin-bottom: 50px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.upload-section label {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.upload-section input[type="file"] {
    background: #252525;
    padding: 10px;
    border-radius: 4px;
    border: 1px dashed #444;
    width: 100%;
    margin-bottom: 20px;
    cursor: pointer;
}

.upload-section .submit-btn {
    background: linear-gradient(135deg, #d4af37 0%, #b8962e 100%);
    color: #000;
    padding: 12px 30px;
    border-radius: 50px; 
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.upload-section .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    background: #fff;
}


.galerie-grid {
    display: grid;
    
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.galerie-item {
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    height: 300px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.galerie-item img {
    width: 100%;
    filter: grayscale(100%) brightness(0.8); 
    height: 100%;
    object-fit: cover;
    
    transition: all 0.5s ease;
}


.galerie-item:hover {
    transform: translateY(-10px); 
    border-color: #d4af37;
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
}

.galerie-item:hover img {
    filter: grayscale(0%) brightness(1.1); 
    transform: scale(1.1); 
}

.galerie-item::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(212, 175, 55, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s;

}

.galerie-item:hover::after {
    opacity: 1;
}

.session-message {
    border-radius: 10px;
    backdrop-filter: blur(5px); 
    animation: fadeInDown 0.5s ease;
}

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

/*  FOOTER  */
.main-footer {
    background-color: #000000;
    padding: 40px 0;
    border-top: 1px solid #1a1a1a; 
    margin-top: auto; 
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.footer-left p {
    color: #666; 
    font-size: 13px;
    margin-bottom: 5px;
}

.footer-left .author {
    color: #ffffff; 
    font-weight: 600;
    text-transform: uppercase;

    letter-spacing: 1px;
}


.footer-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links a {
    text-decoration: none;
    color: #666;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d4af37; 
}


@media (max-width: 768px) {
    .section-title { font-size: 2.2rem; }
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .footer-links {
        justify-content: center;
    }
}

/* --- Cartes Trav ultras --- */
.news-slider-3d {
    padding: 100px 0;
    overflow: hidden;
}

.scroll-viewport {
    width: 100%;
    overflow: hidden; 
    padding: 50px 0;
}
.cards-3d-track {
    display: flex;
    gap: 40px;
    padding-left: 50px;
    width: max-content; 
    will-change: transform;
}

.news-card-3d {
    position: relative;
    width: 320px;
    height: 450px;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1;
    border-radius: 15px;
    padding: 3px; 
    overflow: hidden;
}

.news-card-3d::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: conic-gradient(from 0deg, transparent 65%, #d4af37 100%);
    animation: rotateGold 4s linear infinite;
    opacity: 0; 
    transition: opacity 0.4s ease;
    z-index: -1;
}

.news-card-3d:hover::before { opacity: 1; }

@keyframes rotateGold {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.card-inner {
    background: #0a0a0a;
    border-radius: 12px;

    height: 100%;
    overflow: hidden;

    position: relative;
    z-index: 2; 
    display: flex;
    flex-direction: column;
}


.news-card-3d:hover {
    transform: translateY(-10px) scale(1.02);
}


.card-img { 
    height: 60%; 
}
.card-img img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

.card-content { 
    padding: 20px; 

}
.card-content h4 { 
    font-family: 'Oswald'; 
    color: #d4af37; 
    margin-bottom: 10px; }
.card-content p { 
    color: #888; 
    font-size: 0.9rem; 
}

.counters {
    display: flex;
    justify-content: space-around;
    padding: 80px 10%;
    background: #000;
    text-align: center;
}
.counter-item .number {
    display: block;
    font-family: 'Oswald';
    font-size: 3.5rem;
    color: #d4af37;
}
.counter-item .label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: #888;
}
/*  mentalité  */
.slogans-section {
    padding: 100px 0;
    background-color: #050505;
    overflow: hidden;
}

.slogans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 5%;
}

.slogan-card {
    position: relative;
    background: #0c0c0c;
    border: 1px solid #1a1a1a;
    padding: 40px 30px;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    transition: 0.4s;
}


.slogan-bg {
    position: absolute;
    bottom: -10px;
    right: -10px;
    font-family: 'Oswald';
    font-size: 6rem;
    font-weight: 900;
    color: rgba(212, 175, 55, 0.03); 
    line-height: 1;
    z-index: 1;
    transition: 0.5s;
    
}

.slogan-content {
    position: relative;
    z-index: 2;
}

.slogan-content h3 {
    font-family: 'Oswald';
    color: #d4af37;
    font-size: 1.4rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.slogan-content p {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.6;
}

.slogan-card:hover {
    border-color: #d4af37;
    background: #111;
    transform: translateY(-5px);
}

.slogan-card:hover .slogan-bg {
    color: rgba(212, 175, 55, 0.08); 
    transform: scale(1.1) translateX(-10px);
}

/* données */
.container-donnees {
    padding: 150px 5% 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
}

.gold { 
    color: #d4af37; 
}

.btn-print {
    background: #d4af37;
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Oswald';
}

.btn-print:hover {
    background: #fff;
    color: #000;
}

.table-wrapper {
    background: #000;
    border: 1px solid #1a1a1a;
    border-radius: 8px;
    padding: 15px;
}

table.dataTable {
    width: 100% !important;
    border-collapse: collapse !important;
    background: transparent !important;
    margin: 10px 0 !important;
}

table.dataTable thead th {
    background: #111;
    color: #d4af37;
    padding: 15px;
    font-family: 'Oswald';
    text-transform: uppercase;
    border-bottom: 1px solid #d4af37 !important;
    text-align: left;
}

table.dataTable tbody td {
    padding: 12px 15px;
    border-bottom: 1px solid #1a1a1a;
    color: #888;
    background: transparent !important;
}

.white-text {
    color: #fff;
    font-weight: 600;
}

.gold-text {
    color: #d4af37;
    font-family: 'Oswald';
}

.dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_filter, .dataTables_wrapper .dataTables_info, 
.dataTables_wrapper .dataTables_paginate {
    color: #d4af37 !important;
    margin: 15px 0;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.dataTables_wrapper .dataTables_filter input {
    background: #111;
    border: 1px solid #333;
    color: #fff;
    padding: 6px;
    border-radius: 4px;
    margin-left: 10px;
}

.dataTables_wrapper .dataTables_length select {
    background-color: #111 !important;
    color: #fff !important;
    border: 1px solid #333 !important;
    padding: 5px;
    border-radius: 4px;
    margin: 0 5px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    color: #d4af37 !important;
    border: 1px solid #333 !important;
    background: #111 !important;
    transition: 0.3s;
    margin-left: 5px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: #fff !important;
    color: #000 !important;
    border-color: #fff !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background: #d4af37 !important;
    color: #000 !important;
    border: 1px solid #d4af37 !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled {
    color: #444 !important;
}

@media print {
    header, footer, .dataTables_filter, .dataTables_length, .dataTables_paginate, .btn-print { 
        display: none !important; 
    }
    body { 
        background: #fff; 

        color: #000; 
    }
    table { border: 1px solid #000 !important; 
        width: 100%; 
    }
    th, td { 
        border: 1px solid #000 !important; 
        color: #000 !important; 
        padding: 10px; 
    }
}
/* contact */

.contact-main {
    padding: 150px 0 100px 0;
    min-height: 80vh;
}

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

.contact-titles {
    margin-bottom: 50px;
}

.info-retour {
    background: rgba(212, 175, 55, 0.1); 
    border: 1px solid #d4af37; 
    padding: 15px; 
    margin: 20px 0; 
    color: #fff; 
    text-align: center;
}

.contact-content {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-form-box {
    flex: 1;
    min-width: 300px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row input {
    flex: 1;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 12px;
    background: #111;
    border: 1px solid #333;
    color: #fff;
    margin-bottom: 20px;
}

.radio-group {
    margin: 15px 0 25px 0;
    color: #fff;
}

.radio-group p {
    margin-bottom: 10px;
    font-weight: bold;
    color: #d4af37;
}

.radio-options label {
    margin-right: 15px;
    cursor: pointer;
}

.submit-btn {
    background: #d4af37;
    color: #000;
    border: none;
    padding: 15px 30px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #fff;
}

.contact-details {
    flex: 0 0 300px;
}

.detail-item {
    margin-bottom: 30px;
}

.social-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-box a {
    color: #d4af37;
    text-decoration: none;
    font-weight: bold;
}

.social-box a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    gap: 0;
    }
}

.contact-main {
    padding: 150px 0 100px 0;
    background-color: #050505; 
    color: #fff;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.radio-group {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.radio-group p {
    color: #d4af37;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.radio-group label {
    display: inline-block;
    margin-right: 20px;
    cursor: pointer;
    color: #fff;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.radio-group label:hover {
    color: #d4af37;
}

.radio-group input[type="radio"] {
    accent-color: #d4af37; 
    margin-right: 8px;
    vertical-align: middle;
    transform: scale(1.2);
    cursor: pointer;
}

.contact-titles {
    margin-bottom: 80px;
}

.contact-titles h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 5rem;
    line-height: 0.9;

    text-transform: uppercase;
    letter-spacing: -2px;
}

.contact-titles p {
    color: #d4af37; 
    font-family: 'Oswald';
    letter-spacing: 5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-top: 10px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr; 
    gap: 80px;

    align-items: flex-start;
}

.contact-form-box {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-form-box input,.contact-form-box textarea {
    
    background: transparent;
    border: none;
    border-bottom: 1px solid #333;
    padding: 15px 0;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;

    transition: all 0.4s ease;
}

.contact-form-box input:focus,.contact-form-box textarea:focus {
    outline: none;
    border-bottom-color: #d4af37;
    padding-left: 10px;
}

.submit-btn {
    background: #d4af37;
    color: #000;
    border: none;
    padding: 20px 40px;
    font-family: 'Oswald';
    font-weight: 800;
    font-size: 1.2rem;
    
    cursor: pointer;
    width: fit-content;
    margin-top: 20px;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #fff;
    letter-spacing: 2px;
}

.contact-details {
    border-left: 1px solid #d4af37;
    padding-left: 40px;
}

.detail-item {
    margin-bottom: 50px;
}

.detail-item h4 {
    font-family: 'Oswald';
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: #666;
    margin-bottom: 15px;
}

.detail-item p {
    font-family: 'Oswald';
    font-size: 1.4rem;
    color: #fff;
}

.social-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-box a {
    color: #d4af37;
    text-decoration: none;
    font-family: 'Oswald';
    font-size: 1.1rem;
    transition: 0.3s;
}

.social-box a:hover {
    color: #fff;
}

.wow-card-container {
    position: relative;
    padding: 20px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.card-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 110%; height: 110%;
    background: radial-gradient(circle, rgba(212,175,55,0.2) 0%, transparent 70%);
    filter: blur(30px);
    z-index: 0;
    animation: pulseGlow 4s infinite ease-in-out;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.equipe-page {
    background-color: #050505;
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

.equipe-page .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-title {
    text-align: center;
    font-size: 3rem;
    letter-spacing: 10px;
    margin-bottom: 60px;
}

.leader-section {
    margin-bottom: 100px;
    display: flex;
    justify-content: center;
}

.leader-card {
    position: relative;
    z-index: 2;
    background: #111;
    display: flex;
    border: 1px solid #222;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    transition: 0.5s;
}

.leader-card:hover {
    transform: scale(1.02) perspective(1000px) rotateX(2deg);
    border-color: #d4af37;
}

.leader-image {
    flex: 1;
    position: relative;
    min-height: 350px;
}

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

.leader-badge {
    position: absolute;
    top: 20px; left: 20px;
    background: #d4af37;
    color: #000;
    padding: 5px 15px;
    font-weight: bold;
    font-size: 0.7rem;
    letter-spacing: 2px;
}

.leader-info {
    flex: 1.2;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gold-animate {
    font-size: 2.2rem;
    background: linear-gradient(to right, #bf953f, #fcf6ba, #bf953f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shineGold 4s linear infinite;
}

@keyframes shineGold { 
    to { background-position: 200% center; } 
}

.role-premium { 
    color: #888; 
    letter-spacing: 3px; 
    font-size: 0.8rem; 
    margin-top: 5px; 
}

.gold-divider { 
    width: 60px; 
    height: 3px; 
    background: #d4af37; 
    margin: 25px 0; 
}

.leader-desc { 
    color: #bbb; 
    line-height: 1.6; 
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.member-card {
    background: #111;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #222;
    transition: 0.3s;
}

.member-card:hover {
    border-color: #d4af37;
    transform: translateY(-10px);
}

.member-image { 
    height: 250px; 
    
}

.member-image img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    filter: grayscale(100%); 
    transition: 0.5s;
}

.member-card:hover .member-image img { 
    filter: grayscale(0%); 
}

.member-info { 
    padding: 20px; 
    text-align: center; 
}

.member-info h3 { 
    margin-bottom: 5px; 
    color: #fff; 
}

@media (max-width: 900px) {
    .leader-card { flex-direction: column; }
    .team-grid { grid-template-columns: 1fr 1fr; }
}

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