/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    color: #2c2c2c;
    overflow-x: hidden;
    background-color: #f5f5f5;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==================== HEADER & NAVIGATION ==================== */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: clamp(18px, 4vw, 28px);
    font-weight: bold;
    color: #d4af37;
    letter-spacing: 2px;
    cursor: pointer;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
    position: relative;
    padding: 5px 0;
}

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

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

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

/* Burger Menu */
.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.burger div {
    width: 25px;
    height: 3px;
    background: #d4af37;
    transition: all 0.3s;
    border-radius: 3px;
}

.burger.active div:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger.active div:nth-child(2) {
    opacity: 0;
}

.burger.active div:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* ==================== HERO SECTION ==================== */
.hero {
    height: 100vh;
    background-image: url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7));
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    animation: fadeInUp 1s ease;
    padding: 0 20px;
}

.hero h1 {
    font-size: clamp(32px, 7vw, 72px);
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 4px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero .subtitle {
    font-size: clamp(16px, 3vw, 24px);
    margin-bottom: 40px;
    color: #d4af37;
    font-style: italic;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #d4af37;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s;
    border: 2px solid #d4af37;
}

.cta-button:hover {
    background: transparent;
    color: #d4af37;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* ==================== SECTIONS GÉNÉRALES ==================== */
section {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(36px, 6vw, 48px);
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #d4af37;
}

/* ==================== PRESTATION SECTION ==================== */
.prestation {
    background: white;
}

.prestation-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.intro-text {
    font-size: clamp(16px, 2.5vw, 20px);
    line-height: 1.8;
    color: #555;
}

.prestation-a {
    color: #d4af37;
    text-decoration: none;
    font-style: italic;
    font-weight: bold;
}

.prestation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.prestation-card {
    background: #f9f9f9;
    padding: 40px 30px;
    border-radius: 15px;
    transition: all 0.3s;
    border: 2px solid transparent;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

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

.prestation-icon {
    font-size: 50px;
    margin-bottom: 20px;
    text-align: center;
}

.prestation-card h3 {
    font-size: clamp(20px, 3vw, 24px);
    color: #1a1a1a;
    margin-bottom: 15px;
    text-align: center;
}

.prestation-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
    text-align: justify;
}

.prestation-details {
    list-style: none;
    padding: 0;
}

.prestation-details li {
    padding: 8px 0;
    color: #555;
    font-size: 15px;
    border-bottom: 1px solid #eee;
}

.prestation-details li:last-child {
    border-bottom: none;
}

.prestation-details li::before {
    content: '✓ ';
    color: #d4af37;
    font-weight: bold;
    margin-right: 8px;
}

.prestation-cta {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(26, 26, 26, 0.05));
    border-radius: 15px;
    margin-top: 40px;
}

.prestation-cta h3 {
    font-size: clamp(24px, 4vw, 32px);
    color: #1a1a1a;
    margin-bottom: 15px;
}

.prestation-cta p {
    font-size: clamp(16px, 2.5vw, 18px);
    color: #666;
    margin-bottom: 30px;
}

/* ==================== RESPONSIVE PRESTATION ==================== */

/* Tablettes */
@media (max-width: 968px) {
    .prestation-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Smartphones */
@media (max-width: 768px) {
    .prestation-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .prestation-card p {
        text-align: left;
    }
}

/* Petits smartphones */
@media (max-width: 480px) {
    .prestation-card {
        padding: 30px 20px;
    }

    .prestation-intro {
        margin-bottom: 40px;
    }

    .prestation-cta {
        padding: 40px 20px;
    }
}

/* ==================== HISTORIQUE SECTION ==================== */
.historique {
    background: #f5f5f5;
}

.historique-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.historique-text {
    font-size: 18px;
    line-height: 1.8;
}

.historique-text p {
    margin-bottom: 20px;
    text-align: justify;
}

.historique-text .highlight {
    color: #d4af37;
    font-weight: bold;
    font-style: italic;
}

.historique-text strong {
    color: #1a1a1a;
    font-weight: bold;
}

.historique-image {
    height: 600px;
    background-image: url('images/pourHistorique.jpeg');
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.historique-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(26, 26, 26, 0.3));
}


.historique-details {
    list-style: none;
    padding: 0;
}

.historique-details li {
    padding: 4px 0;
    /*color: #555;*/
    /*font-size: 15px;*/
    border-bottom: 1px solid #eee;
}

.historique-details li:last-child {
    border-bottom: none;
}

.historique-details li::before {
    content: '* ';
    color: #d4af37;
    font-weight: bold;
    margin-right: 8px;
}

/* ==================== BIO SECTION ==================== */
.bio {
    background: white;
}

.bio-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: clamp(16px, 2.5vw, 18px);
    color: #666;
    line-height: 1.8;
}

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

.bio-member {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
    padding: 40px;
    background: #f9f9f9;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.bio-member.reverse {
    grid-template-columns: 1fr 1fr;
}

.bio-member.reverse .bio-member-text {
    order: 2;
}

.bio-member.reverse .bio-member-photo {
    order: 1;
}

.bio-member-text h3 {
    font-size: clamp(24px, 4vw, 32px);
    color: #1a1a1a;
    margin-bottom: 8px;
}

.bio-role {
    font-size: clamp(16px, 2.5vw, 18px);
    color: #d4af37;
    font-style: italic;
    margin-bottom: 20px;
    font-weight: bold;
}

.bio-description {
    font-size: clamp(15px, 2vw, 17px);
    line-height: 1.8;
    color: #555;
    text-align: justify;
    margin-bottom: 20px;
}

.bio-quote {
    font-style: italic;
    color: #d4af37;
    font-size: clamp(14px, 2vw, 16px);
    padding: 15px;
    border-left: 3px solid #d4af37;
    background: rgba(212, 175, 55, 0.05);
    margin-top: 15px;
}

.bio-quote::before {
    content: '"';
    font-size: 30px;
    line-height: 0;
    vertical-align: -0.3em;
    margin-right: 5px;
}

.bio-quote::after {
    content: '"';
    font-size: 30px;
    line-height: 0;
    vertical-align: -0.3em;
    margin-left: 5px;
}

.bio-member-photo {
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    position: relative;
}

.bio-member-photo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.3));
}

.bio-member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.bio-member:hover .bio-member-photo img {
    transform: scale(1.05);
}

/* ==================== CONTACT SECTION ==================== */
.contact {
    background: #1a1a1a;
    color: white;
}

.contact .section-title {
    color: white;
}

.contact-content {
    max-width: 900px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    padding: 30px 20px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 10px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s;
}

.contact-item:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #d4af37;
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 40px;
    color: #d4af37;
}

.contact-details h3 {
    color: #d4af37;
    margin-bottom: 10px;
    font-size: clamp(18px, 3vw, 20px);
}

.contact-details p {
    color: #ccc;
    line-height: 1.6;
    font-size: clamp(14px, 2vw, 16px);
}

/* ==================== FOOTER ==================== */
footer {
    background: #0a0a0a;
    color: white;
    text-align: center;
    padding: 40px 5%;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.social-links a {
    color: #d4af37;
    font-size: 30px;
    transition: all 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    transform: scale(1.2) rotate(5deg);
}

.footer-text {
    color: #888;
    font-size: 14px;
}

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

.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== RESPONSIVE DESIGN ==================== */

/* Tablettes */
@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        flex-direction: column;
        background: rgba(20, 20, 20, 0.98);
        width: 70%;
        max-width: 300px;
        text-align: center;
        transition: right 0.3s;
        padding: 100px 20px 40px;
        gap: 30px;
        justify-content: flex-start;
    }

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

    .nav-links a {
        font-size: 20px;
    }

    .burger {
        display: flex;
    }

    .historique-content,
    .bio-member,
    .bio-member.reverse {
        grid-template-columns: 1fr;
    }

    .bio-member.reverse .bio-member-text,
    .bio-member.reverse .bio-member-photo {
        order: initial;
    }

    .bio-member-photo {
        height: 400px;
    }

    .historique-image {
        height: 400px;
    }

    section {
        padding: 80px 5%;
    }

    .prestation-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }
}

/* Smartphones */
@media (max-width: 480px) {
    nav {
        padding: 15px 5%;
    }

    .hero {
        background-attachment: scroll;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }

    section {
        padding: 60px 5%;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .prestation-intro {
        margin-bottom: 40px;
    }

    .prestation-card {
        padding: 30px 20px;
    }

    .prestation-card p {
        text-align: left;
    }

    .prestation-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .prestation-cta {
        padding: 40px 20px;
    }

    .historique-text {
        font-size: 16px;
    }

    .historique-text p {
        text-align: left;
    }

    .historique-image {
        height: 300px;
    }

    .bio-member {
        padding: 25px;
        margin-bottom: 50px;
        gap: 30px;
    }

    .bio-member-photo {
        height: 350px;
    }

    .bio-description {
        text-align: left;
    }

    .contact-item {
        padding: 25px 15px;
    }

    .contact-icon {
        font-size: 35px;
    }

    .social-links a {
        font-size: 25px;
    }

    .footer-text {
        font-size: 12px;
    }
}

/* Très petits écrans */
@media (max-width: 320px) {
    .historique-image {
        height: 250px;
    }

    .bio-member-photo {
        height: 300px;
    }

    .prestation-card {
        padding: 25px 15px;
    }
}













/* ==================== GALERIE SECTION ==================== */
.galerie {
    background: #f9f9f9;
}

.galerie-intro {
    text-align: center;
    font-size: clamp(16px, 2.5vw, 18px);
    color: #666;
    margin-bottom: 40px;
}

/* Navigation Galerie */
.galerie-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.galerie-tab {
    background: white;
    border: 2px solid #d4af37;
    color: #1a1a1a;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Georgia', serif;
}

.galerie-tab:hover {
    background: #d4af37;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.galerie-tab.active {
    background: #d4af37;
    color: white;
}

/* Contenu Galerie */
.galerie-content {
    display: none;
    animation: fadeIn 0.5s ease-in;
}

.galerie-content.active {
    display: block;
}

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

/* ==================== PHOTOS GRID ==================== */
.photos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.photo-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    height: 350px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.photo-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
    padding: 30px 20px;
    transform: translateY(100%);
    transition: transform 0.3s;
}

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

.photo-overlay h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #d4af37;
}

.photo-overlay p {
    font-size: 14px;
    opacity: 0.9;
}

/* ==================== VIDEOS GRID ==================== */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.video-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.video-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.video-wrapper {
    position: relative;
    width: 100%;
    background: #000;
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    max-height: 400px;
    object-fit: cover;
}

/* Style personnalisé pour les contrôles vidéo */
.video-wrapper video::-webkit-media-controls-panel {
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.8));
}

.video-wrapper video::-webkit-media-controls-play-button {
    background-color: #d4af37;
    border-radius: 50%;
}

.video-info {
    padding: 25px;
    background: white;
}

.video-info h3 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.video-info p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* ==================== RESPONSIVE GALERIE ==================== */

/* Tablettes */
@media (max-width: 968px) {
    .photos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .photo-item {
        height: 280px;
    }

    .video-wrapper video {
        max-height: 300px;
    }
}

/* Smartphones */
@media (max-width: 768px) {
    .galerie-nav {
        gap: 15px;
    }

    .galerie-tab {
        padding: 12px 25px;
        font-size: 16px;
    }

    .photos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .photo-item {
        height: 300px;
    }

    .videos-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .video-wrapper video {
        max-height: none;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
        font-size: 40px;
    }

    .lightbox-img {
        max-width: 95%;
        max-height: 80%;
    }
}

/* Petits smartphones */
@media (max-width: 480px) {
    .galerie-tab {
        padding: 10px 20px;
        font-size: 15px;
    }

    .photo-item {
        height: 250px;
    }

    .video-info {
        padding: 20px;
    }

    .video-info h3 {
        font-size: 18px;
    }

    .lightbox-caption {
        font-size: 14px;
        padding: 10px 20px;
        bottom: 15px;
    }
}

/* ==================== LIGHTBOX ==================== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.lightbox.active {
    display: flex;
    animation: fadeIn 0.3s;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 50px;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10001;
}

.lightbox-close:hover {
    color: #d4af37;
    transform: rotate(90deg);
}

.lightbox-img {
    max-width: 90%;
    max-height: 85%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.5);
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 18px;
    text-align: center;
    background: rgba(0,0,0,0.7);
    padding: 15px 30px;
    border-radius: 50px;
    max-width: 80%;
}

/* ==================== RESPONSIVE GALERIE ==================== */

/* Tablettes */
@media (max-width: 968px) {
    .photos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .videos-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .photo-item {
        height: 280px;
    }
}

/* Smartphones */
@media (max-width: 768px) {
    .galerie-nav {
        gap: 15px;
    }

    .galerie-tab {
        padding: 12px 25px;
        font-size: 16px;
    }

    .photos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .photo-item {
        height: 300px;
    }

    .videos-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
        font-size: 40px;
    }

    .lightbox-img {
        max-width: 95%;
        max-height: 80%;
    }
}

/* Petits smartphones */
@media (max-width: 480px) {
    .galerie-tab {
        padding: 10px 20px;
        font-size: 15px;
    }

    .photo-item {
        height: 250px;
    }

    .video-info {
        padding: 20px;
    }

    .video-info h3 {
        font-size: 18px;
    }

    .lightbox-caption {
        font-size: 14px;
        padding: 10px 20px;
        bottom: 15px;
    }
}