/* Container pour le contenu du header */
nav .nav-container {
    max-width: 1200px; /* largeur maximale */
    margin: 0 auto;    /* centré */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;  /* espace gauche/droite */
}

/* Logo */
nav .logo img {
    height: 50px;
    width: auto;
    transition: transform 0.5s;
}

nav .logo img:hover {
    transform: rotate(-10deg) scale(1.1);
}

/* Menu */
nav ul {
    display: flex;
    gap: 3rem;
    list-style: none;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    font-weight: 300;
    position: relative;
    transition: color 0.3s;
}

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

nav a:hover {
    color: #f59e0b;
}

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

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

    nav ul {
        flex-direction: column;
        gap: 1rem;
    }
}

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

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

/* Ajustement espacement page de confidentialité */
.privacy-updated {
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.privacy-hero .section-header {
    margin-bottom: 2rem;
}

/* Ligne d'accent dorée */
.top-accent-line {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, #f59e0b, transparent);
    z-index: 1000;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
    z-index: 999;
    padding: 1.5rem 0;
}

nav ul {
    display: flex;
    justify-content: center;
    gap: 3rem;
    list-style: none;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    font-weight: 300;
    position: relative;
    transition: color 0.5s;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 1px;
    background: #f59e0b;
    transition: width 0.5s;
}

nav a:hover {
    color: #f59e0b;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.grid-background {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: 
        linear-gradient(rgba(245, 158, 11, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 158, 11, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
}

.hero-content {
    text-align: center;
    z-index: 10;
    padding: 2rem;
}

.logo-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
}

.logo-border {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(245, 158, 11, 0.3);
    animation: spin-slow 20s linear infinite;
}

.logo-icon {
    position: relative;
    padding: 2rem;
    color: #f59e0b;
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-title {
    font-family: serif;
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    animation: fade-in-up 1s ease-out;
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.line {
    height: 1px;
    width: 5rem;
}

.line-left {
    background: linear-gradient(to right, transparent, #f59e0b);
}

.line-right {
    background: linear-gradient(to left, transparent, #f59e0b);
}

.hero-subtitle {
    color: #f59e0b;
    font-size: 0.875rem;
    letter-spacing: 0.3em;
    font-weight: 300;
}

.hero-description {
    color: #9ca3af;
    font-size: 1.125rem;
    font-weight: 300;
    max-width: 42rem;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    position: relative;
    padding: 1rem 2.5rem;
    border: 1px solid #f59e0b;
    background: transparent;
    color: #fff;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    font-weight: 300;
    cursor: pointer;
    overflow: hidden;
    transition: color 0.3s;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #f59e0b;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s;
    z-index: -1;
}

.btn-primary:hover::before {
    transform: scaleY(1);
}

.btn-primary:hover {
    color: #000;
}

.btn-secondary {
    padding: 1rem 2.5rem;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s;
}

.btn-secondary:hover {
    color: #f59e0b;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: bounce-slow 3s ease-in-out infinite;
}

.scroll-line {
    width: 1px;
    height: 4rem;
    background: linear-gradient(to bottom, transparent, #f59e0b, transparent);
}

.scroll-indicator p {
    font-size: 0.625rem;
    letter-spacing: 0.2em;
    color: rgba(245, 158, 11, 0.5);
}

@keyframes bounce-slow {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

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

/* Sections */
section {
    padding: 8rem 1.5rem;
    border-top: 1px solid rgba(245, 158, 11, 0.2);
}

.container {
    max-width: 72rem;
    margin: 0 auto;
}

.container-wide {
    max-width: 90rem;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-label {
    color: #f59e0b;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
}

.section-title {
    font-family: serif;
    font-size: clamp(2.5rem, 6vw, 6rem);
    font-weight: 300;
    margin-bottom: 2rem;
}

.section-underline {
    width: 6rem;
    height: 1px;
    background: #f59e0b;
    margin: 0 auto;
}

/* À propos */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    margin-bottom: 6rem;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-text p {
    color: #9ca3af;
    line-height: 1.8;
    font-size: 1.125rem;
    font-weight: 300;
}

.about-quote {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-border {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(245, 158, 11, 0.2);
    transform: rotate(6deg);
}

.quote-content {
    position: relative;
    background: linear-gradient(to bottom right, rgba(245, 158, 11, 0.1), transparent);
    padding: 3rem;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.quote-mark {
    font-family: serif;
    font-size: 4rem;
    color: #f59e0b;
    line-height: 1;
    margin-bottom: 1rem;
}

.quote-text {
    color: #d1d5db;
    font-style: italic;
    font-weight: 300;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1px;
    background: rgba(245, 158, 11, 0.2);
}

.stat-item {
    background: #000;
    padding: 3rem;
    text-align: center;
    transition: background 0.5s;
}

.stat-item:hover {
    background: linear-gradient(to bottom right, rgba(245, 158, 11, 0.1), transparent);
}

.stat-icon {
    color: #f59e0b;
    margin-bottom: 1.5rem;
    transition: transform 0.5s;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1);
}

.stat-number {
    font-family: serif;
    font-size: 6rem;
    font-weight: 300;
    color: #f59e0b;
    line-height: 1;
}

.stat-number::after {
    content: '+';
    font-size: 3rem;
}

.stat-label {
    color: #6b7280;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    font-weight: 300;
    margin-top: 0.75rem;
}

/* Portfolio */
.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 5rem;
}

.filter-btn {
    padding: 0.75rem 2rem;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    font-weight: 300;
    border: 1px solid rgba(245, 158, 11, 0.3);
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: #f59e0b;
    border-color: #f59e0b;
    color: #000;
}

.portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1rem;
}

.portfolio-item {
    grid-column: span 12;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.portfolio-item.large {
    aspect-ratio: 16/9;
}

@media (min-width: 768px) {
    .portfolio-item {
        grid-column: span 4;
    }
    .portfolio-item.large {
        grid-column: span 8;
    }
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.7s;
}

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

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: #000;
    opacity: 0;
    transition: opacity 0.5s;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 0.7;
}

.portfolio-border {
    position: absolute;
    inset: 0;
    border: 2px solid #f59e0b;
    opacity: 0;
    transform: scale(1);
    transition: all 0.3s;
}

.portfolio-item:hover .portfolio-border {
    opacity: 1;
    transform: scale(0.95);
}

.portfolio-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    transform: translateY(1rem);
    opacity: 0;
    transition: all 0.5s;
}

.portfolio-item:hover .portfolio-content {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: #f59e0b;
    margin-bottom: 0.5rem;
}

.portfolio-desc {
    font-family: serif;
    font-size: 1.5rem;
    font-weight: 300;
}

.portfolio-arrow {
    width: 3rem;
    height: 3rem;
    border: 1px solid #f59e0b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: background 0.3s, color 0.3s;
}

.portfolio-item:hover .portfolio-arrow {
    background: #f59e0b;
    color: #000;
}

/* ========================================
   PAGE GALERIE COMPLÈTE
   À ajouter à la fin de style.css
   ======================================== */

/* Hero Galerie */
.gallery-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 6rem;
}

.gallery-hero-content {
    text-align: center;
    z-index: 10;
    padding: 2rem;
}

.gallery-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: #6b7280;
}

.gallery-breadcrumb a {
    color: #f59e0b;
    text-decoration: none;
    transition: color 0.3s;
}

.gallery-breadcrumb a:hover {
    color: #d97706;
}

.breadcrumb-separator {
    color: rgba(245, 158, 11, 0.3);
}

.gallery-hero-title {
    font-family: serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    animation: fade-in-up 0.8s ease-out;
}

.gallery-hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.gallery-hero-divider svg {
    color: #f59e0b;
}

.gallery-hero-subtitle {
    color: #9ca3af;
    font-size: 1rem;
    letter-spacing: 0.1em;
    font-weight: 300;
}

/* Section Galerie */
.full-gallery-section {
    padding: 6rem 1.5rem;
}

/* Contrôles de la galerie */
.gallery-controls {
    margin-bottom: 5rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Statistiques */
.gallery-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
}

.stat-badge {
    text-align: center;
    padding: 2rem 3rem;
    border: 1px solid rgba(245, 158, 11, 0.2);
    background: linear-gradient(to bottom right, rgba(245, 158, 11, 0.05), transparent);
    transition: all 0.5s;
}

.stat-badge:hover {
    border-color: rgba(245, 158, 11, 0.5);
    background: linear-gradient(to bottom right, rgba(245, 158, 11, 0.1), transparent);
    transform: translateY(-5px);
}

.stat-count {
    display: block;
    font-family: serif;
    font-size: 4rem;
    font-weight: 300;
    color: #f59e0b;
    line-height: 1;
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: #6b7280;
}

/* Filtres avancés */
.gallery-filters-advanced {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.filter-btn-advanced {
    padding: 1rem 2rem;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    font-weight: 300;
    border: 1px solid rgba(245, 158, 11, 0.2);
    background: transparent;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.filter-btn-advanced::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.3s;
}

.filter-btn-advanced:hover::before,
.filter-btn-advanced.active::before {
    transform: translateX(0);
}

.filter-btn-advanced:hover,
.filter-btn-advanced.active {
    border-color: #f59e0b;
    color: #f59e0b;
}

.filter-icon {
    font-size: 1.2rem;
}

/* Grille de photos */
.full-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.gallery-photo-card {
    position: relative;
    cursor: pointer;
    opacity: 0;
}

.gallery-photo-wrapper {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.gallery-photo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.7s;
}

.gallery-photo-card:hover .gallery-photo-wrapper img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.gallery-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.9));
    opacity: 0;
    transition: opacity 0.5s;
}

.gallery-photo-card:hover .gallery-photo-overlay {
    opacity: 1;
}

.gallery-photo-border {
    position: absolute;
    inset: 0;
    border: 2px solid #f59e0b;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.3s;
    pointer-events: none;
}

.gallery-photo-card:hover .gallery-photo-border {
    opacity: 1;
    transform: scale(0.95);
}

.gallery-photo-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    transform: translateY(1rem);
    opacity: 0;
    transition: all 0.5s;
}

.gallery-photo-card:hover .gallery-photo-content {
    transform: translateY(0);
    opacity: 1;
}

.gallery-photo-category {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: #f59e0b;
    margin-bottom: 0.5rem;
}

.gallery-photo-title {
    font-family: serif;
    font-size: 1.25rem;
    font-weight: 300;
    color: #fff;
}

.gallery-photo-view {
    width: 3rem;
    height: 3rem;
    border: 1px solid #f59e0b;
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.gallery-photo-view:hover {
    background: #f59e0b;
    color: #000;
}

/* Pagination */
.gallery-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 3rem 0;
    border-top: 1px solid rgba(245, 158, 11, 0.2);
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border: 1px solid rgba(245, 158, 11, 0.3);
    background: transparent;
    color: #fff;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s;
}

.pagination-btn:hover:not(:disabled) {
    border-color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.pagination-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.pagination-btn svg {
    width: 16px;
    height: 16px;
}

.pagination-numbers {
    display: flex;
    gap: 0.5rem;
}

.pagination-number {
    width: 3rem;
    height: 3rem;
    border: 1px solid rgba(245, 158, 11, 0.2);
    background: transparent;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.pagination-number::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #f59e0b;
    transform: translateY(100%);
    transition: transform 0.3s;
    z-index: -1;
}

.pagination-number:hover::before,
.pagination-number.active::before {
    transform: translateY(0);
}

.pagination-number:hover,
.pagination-number.active {
    border-color: #f59e0b;
    color: #000;
}

.pagination-ellipsis {
    width: 3rem;
    height: 3rem;
    border: none;
    background: transparent;
    color: #6b7280;
    font-size: 1rem;
    cursor: default;
}

/* Modale photo */
.photo-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.photo-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    animation: modal-zoom 0.3s ease-out;
}

@keyframes modal-zoom {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-content img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.modal-info {
    text-align: center;
}

.modal-category {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: #f59e0b;
    margin-bottom: 0.5rem;
}

.modal-title {
    font-family: serif;
    font-size: 2rem;
    font-weight: 300;
    color: #fff;
}

.modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    border: 1px solid #f59e0b;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10000;
}

.modal-close:hover {
    background: #f59e0b;
    color: #000;
    transform: rotate(90deg);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 4rem;
    height: 4rem;
    border: 1px solid rgba(245, 158, 11, 0.3);
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10000;
}

.modal-nav:hover {
    border-color: #f59e0b;
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.modal-prev {
    left: 2rem;
}

.modal-next {
    right: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .stat-badge {
        padding: 1.5rem 2rem;
    }
    
    .stat-count {
        font-size: 3rem;
    }
    
    .gallery-filters-advanced {
        gap: 0.75rem;
    }
    
    .filter-btn-advanced {
        padding: 0.75rem 1.5rem;
        font-size: 0.7rem;
    }
    
    .filter-icon {
        font-size: 1rem;
    }
    
    .full-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .gallery-pagination {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .pagination-btn {
        width: 100%;
        justify-content: center;
    }
    
    .modal-nav {
        width: 3rem;
        height: 3rem;
    }
    
    .modal-prev {
        left: 1rem;
    }
    
    .modal-next {
        right: 1rem;
    }
    
    .modal-close {
        top: 1rem;
        right: 1rem;
    }
}

/* Animation de chargement des photos */
@keyframes fadeInScale {
    from { 
        opacity: 0; 
        transform: scale(0.95) translateY(20px); 
    }
    to { 
        opacity: 1; 
        transform: scale(1) translateY(0); 
    }
}

/* ========================================
   PAGE POLITIQUE DE CONFIDENTIALITÉ
   ======================================== */

/* CORRECTION : Forcer l'affichage du contenu */
.privacy-section,
.privacy-hero,
.privacy-content,
.privacy-article {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    position: relative;
    z-index: 100 !important;
}

.privacy-section {
    padding: 6rem 1.5rem 4rem;
}

.privacy-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 6rem;
}

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

.privacy-updated {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 3rem;
    text-align: center;
}

.privacy-article {
    margin-bottom: 4rem;
}

.privacy-article h2 {
    font-family: serif;
    font-size: 2rem;
    font-weight: 300;
    color: #f59e0b;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
}

.privacy-article h3 {
    font-size: 1.25rem;
    font-weight: 400;
    color: #fff;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.privacy-article p {
    color: #d1d5db;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 300;
    font-size: 1rem;
}

.privacy-article ul,
.privacy-article ol {
    color: #d1d5db;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    font-size: 1rem;
}

.privacy-article li {
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.privacy-article strong {
    color: #f59e0b;
    font-weight: 500;
}

.privacy-highlight {
    background: rgba(245, 158, 11, 0.1);
    border-left: 3px solid #f59e0b;
    padding: 1.5rem;
    margin: 2rem 0;
}

.privacy-highlight p {
    margin-bottom: 0;
}

.privacy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.privacy-table th,
.privacy-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.privacy-table th {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
}

.privacy-table td {
    color: #d1d5db;
    font-weight: 300;
}

.privacy-contact-box {
    background: linear-gradient(to bottom right, rgba(245, 158, 11, 0.1), transparent);
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.privacy-contact-box h3 {
    color: #f59e0b;
    margin-bottom: 1rem;
}

.privacy-contact-box p {
    margin-bottom: 0.5rem;
}

.privacy-contact-box a {
    color: #f59e0b;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.privacy-contact-box a:hover {
    border-bottom-color: #f59e0b;
}

/* Liens dans le contenu de la page de confidentialité */
.privacy-article a,
.privacy-highlight a {
    color: #f59e0b;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.privacy-article a:hover,
.privacy-highlight a:hover {
    border-bottom-color: #f59e0b;
}

@media (max-width: 768px) {
    .privacy-article h2 {
        font-size: 1.5rem;
    }
    
    .privacy-table {
        font-size: 0.875rem;
    }
    
    .privacy-table th,
    .privacy-table td {
        padding: 0.75rem 0.5rem;
    }
}
/* ========================================
   BOUTON VOIR TOUTE LA GALERIE (Page Index)
   ======================================== */

.section-description {
    color: #9ca3af;
    font-size: 1rem;
    font-weight: 300;
    margin-top: 1.5rem;
    line-height: 1.6;
}

.portfolio-view-all {
    margin-top: 5rem;
    text-align: center;
    padding-top: 4rem;
    border-top: 1px solid rgba(245, 158, 11, 0.2);
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    border: 2px solid #f59e0b;
    background: transparent;
    color: #fff;
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    font-weight: 300;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.btn-view-all::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    transform: translateX(-100%);
    transition: transform 0.4s;
    z-index: -1;
}

.btn-view-all:hover::before {
    transform: translateX(0);
}

.btn-view-all:hover {
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.btn-view-all svg {
    transition: transform 0.3s;
}

.btn-view-all:hover svg {
    transform: translateX(5px);
}

.view-all-subtitle {
    margin-top: 1.5rem;
    color: #6b7280;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    font-weight: 300;
}

@media (max-width: 768px) {
    .btn-view-all {
        padding: 1.25rem 2rem;
        font-size: 0.75rem;
    }
}

/* ========================================
   PAGE GALERIE COMPLÈTE
   À ajouter à la fin de style.css
   ======================================== */

/* Hero Galerie */
.gallery-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 6rem;
}

.gallery-hero-content {
    text-align: center;
    z-index: 10;
    padding: 2rem;
}

.gallery-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: #6b7280;
}

.gallery-breadcrumb a {
    color: #f59e0b;
    text-decoration: none;
    transition: color 0.3s;
}

.gallery-breadcrumb a:hover {
    color: #d97706;
}

.breadcrumb-separator {
    color: rgba(245, 158, 11, 0.3);
}

.gallery-hero-title {
    font-family: serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    animation: fade-in-up 0.8s ease-out;
}

.gallery-hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.gallery-hero-divider svg {
    color: #f59e0b;
}

.gallery-hero-subtitle {
    color: #9ca3af;
    font-size: 1rem;
    letter-spacing: 0.1em;
    font-weight: 300;
}

/* Section Galerie */
.full-gallery-section {
    padding: 6rem 1.5rem;
}

/* Contrôles de la galerie */
.gallery-controls {
    margin-bottom: 5rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Statistiques */
.gallery-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
}

.stat-badge {
    text-align: center;
    padding: 2rem 3rem;
    border: 1px solid rgba(245, 158, 11, 0.2);
    background: linear-gradient(to bottom right, rgba(245, 158, 11, 0.05), transparent);
    transition: all 0.5s;
}

.stat-badge:hover {
    border-color: rgba(245, 158, 11, 0.5);
    background: linear-gradient(to bottom right, rgba(245, 158, 11, 0.1), transparent);
    transform: translateY(-5px);
}

.stat-count {
    display: block;
    font-family: serif;
    font-size: 4rem;
    font-weight: 300;
    color: #f59e0b;
    line-height: 1;
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: #6b7280;
}

/* Filtres avancés */
.gallery-filters-advanced {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.filter-btn-advanced {
    padding: 1rem 2rem;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    font-weight: 300;
    border: 1px solid rgba(245, 158, 11, 0.2);
    background: transparent;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.filter-btn-advanced::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.3s;
}

.filter-btn-advanced:hover::before,
.filter-btn-advanced.active::before {
    transform: translateX(0);
}

.filter-btn-advanced:hover,
.filter-btn-advanced.active {
    border-color: #f59e0b;
    color: #f59e0b;
}

.filter-icon {
    font-size: 1.2rem;
}

/* Grille de photos */
.full-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.gallery-photo-card {
    position: relative;
    cursor: pointer;
    opacity: 0;
}

.gallery-photo-wrapper {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.gallery-photo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.7s;
}

.gallery-photo-card:hover .gallery-photo-wrapper img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.gallery-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.9));
    opacity: 0;
    transition: opacity 0.5s;
}

.gallery-photo-card:hover .gallery-photo-overlay {
    opacity: 1;
}

.gallery-photo-border {
    position: absolute;
    inset: 0;
    border: 2px solid #f59e0b;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.3s;
    pointer-events: none;
}

.gallery-photo-card:hover .gallery-photo-border {
    opacity: 1;
    transform: scale(0.95);
}

.gallery-photo-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    transform: translateY(1rem);
    opacity: 0;
    transition: all 0.5s;
}

.gallery-photo-card:hover .gallery-photo-content {
    transform: translateY(0);
    opacity: 1;
}

.gallery-photo-category {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: #f59e0b;
    margin-bottom: 0.5rem;
}

.gallery-photo-title {
    font-family: serif;
    font-size: 1.25rem;
    font-weight: 300;
    color: #fff;
}

.gallery-photo-view {
    width: 3rem;
    height: 3rem;
    border: 1px solid #f59e0b;
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.gallery-photo-view:hover {
    background: #f59e0b;
    color: #000;
}

/* Pagination */
.gallery-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 3rem 0;
    border-top: 1px solid rgba(245, 158, 11, 0.2);
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border: 1px solid rgba(245, 158, 11, 0.3);
    background: transparent;
    color: #fff;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s;
}

.pagination-btn:hover:not(:disabled) {
    border-color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.pagination-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.pagination-btn svg {
    width: 16px;
    height: 16px;
}

.pagination-numbers {
    display: flex;
    gap: 0.5rem;
}

.pagination-number {
    width: 3rem;
    height: 3rem;
    border: 1px solid rgba(245, 158, 11, 0.2);
    background: transparent;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.pagination-number::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #f59e0b;
    transform: translateY(100%);
    transition: transform 0.3s;
    z-index: -1;
}

.pagination-number:hover::before,
.pagination-number.active::before {
    transform: translateY(0);
}

.pagination-number:hover,
.pagination-number.active {
    border-color: #f59e0b;
    color: #000;
}

.pagination-ellipsis {
    width: 3rem;
    height: 3rem;
    border: none;
    background: transparent;
    color: #6b7280;
    font-size: 1rem;
    cursor: default;
}

/* Modale photo */
.photo-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.photo-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    animation: modal-zoom 0.3s ease-out;
}

@keyframes modal-zoom {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-content img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.modal-info {
    text-align: center;
}

.modal-category {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: #f59e0b;
    margin-bottom: 0.5rem;
}

.modal-title {
    font-family: serif;
    font-size: 2rem;
    font-weight: 300;
    color: #fff;
}

.modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    border: 1px solid #f59e0b;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10000;
}

.modal-close:hover {
    background: #f59e0b;
    color: #000;
    transform: rotate(90deg);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 4rem;
    height: 4rem;
    border: 1px solid rgba(245, 158, 11, 0.3);
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10000;
}

.modal-nav:hover {
    border-color: #f59e0b;
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.modal-prev {
    left: 2rem;
}

.modal-next {
    right: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .stat-badge {
        padding: 1.5rem 2rem;
    }
    
    .stat-count {
        font-size: 3rem;
    }
    
    .gallery-filters-advanced {
        gap: 0.75rem;
    }
    
    .filter-btn-advanced {
        padding: 0.75rem 1.5rem;
        font-size: 0.7rem;
    }
    
    .filter-icon {
        font-size: 1rem;
    }
    
    .full-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .gallery-pagination {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .pagination-btn {
        width: 100%;
        justify-content: center;
    }
    
    .modal-nav {
        width: 3rem;
        height: 3rem;
    }
    
    .modal-prev {
        left: 1rem;
    }
    
    .modal-next {
        right: 1rem;
    }
    
    .modal-close {
        top: 1rem;
        right: 1rem;
    }
}

/* Animation de chargement des photos */
@keyframes fadeInScale {
    from { 
        opacity: 0; 
        transform: scale(0.95) translateY(20px); 
    }
    to { 
        opacity: 1; 
        transform: scale(1) translateY(0); 
    }
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1px;
    background: rgba(245, 158, 11, 0.2);
}

.pricing-card {
    background: #000;
    padding: 3rem 2rem;
    position: relative;
    transition: background 0.5s;
}

.pricing-card:hover {
    background: linear-gradient(to bottom right, rgba(245, 158, 11, 0.1), transparent);
}

.pricing-card.featured {
    border: 2px solid #f59e0b;
}

.featured-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #f59e0b;
    color: #000;
    padding: 0.25rem 1.5rem;
    font-size: 0.625rem;
    letter-spacing: 0.2em;
    font-weight: 300;
}

.pricing-number {
    font-family: serif;
    font-size: 7rem;
    color: rgba(245, 158, 11, 0.3);
    line-height: 1;
    margin-bottom: 2rem;
    transition: color 0.5s;
}

.pricing-card:hover .pricing-number {
    color: rgba(245, 158, 11, 0.5);
}

.pricing-title {
    font-family: serif;
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.pricing-price {
    margin-bottom: 2rem;
}

.price-value {
    font-size: 6rem;
    font-weight: 300;
    color: #f59e0b;
}

.price-currency {
    font-size: 2rem;
    color: #6b7280;
}

.pricing-divider {
    width: 3rem;
    height: 1px;
    background: rgba(245, 158, 11, 0.3);
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 3rem;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 0;
    color: #9ca3af;
    font-weight: 300;
}

.pricing-features span {
    color: #f59e0b;
    margin-top: 0.25rem;
}

.pricing-btn {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(245, 158, 11, 0.3);
    background: transparent;
    color: #fff;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s;
}

.pricing-btn:hover {
    background: #f59e0b;
    border-color: #f59e0b;
    color: #000;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem;
    border: 1px solid rgba(245, 158, 11, 0.2);
    transition: all 0.5s;
}

.info-card:hover {
    border-color: rgba(245, 158, 11, 0.5);
}

.info-icon {
    color: #f59e0b;
    transition: transform 0.5s;
}

.info-card:hover .info-icon {
    transform: scale(1.1);
}

.info-title {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: #f59e0b;
    margin-bottom: 0.75rem;
}

.info-text {
    color: #d1d5db;
    font-weight: 300;
    line-height: 1.6;
}

.info-text a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.info-text a:hover {
    color: #f59e0b;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: #f59e0b;
    margin-bottom: 0.75rem;
}

.form-group input,
.form-group textarea {
    padding: 1rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(245, 158, 11, 0.3);
    color: #fff;
    font-family: inherit;
    font-weight: 300;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f59e0b;
}

.form-group textarea {
    resize: vertical;
}

/* CAPTCHA Visuel - Style reCAPTCHA */
.captcha-container {
    margin: 2rem 0;
    padding: 0;
    border: 1px solid rgba(245, 158, 11, 0.3);
    background: linear-gradient(to bottom right, rgba(245, 158, 11, 0.03), transparent);
    overflow: hidden;
}

.captcha-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: #d1d5db;
}

.captcha-header svg {
    color: #f59e0b;
}

.captcha-challenge {
    padding: 2rem 1.5rem;
}

.captcha-instruction {
    text-align: center;
    color: #9ca3af;
    font-size: 0.875rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.captcha-instruction strong {
    color: #f59e0b;
    font-weight: 500;
}

.captcha-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.captcha-cell {
    aspect-ratio: 1;
    border: 2px solid rgba(245, 158, 11, 0.2);
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.captcha-cell::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.captcha-cell:hover::before {
    opacity: 1;
}

.captcha-cell:hover {
    border-color: rgba(245, 158, 11, 0.5);
    transform: scale(0.98);
}

.captcha-cell.selected {
    border-color: #f59e0b;
    background: rgba(245, 158, 11, 0.2);
}

.captcha-cell.selected::after {
    content: '✓';
    position: absolute;
    top: 0.25rem;
    right: 0.25rem;
    width: 1.5rem;
    height: 1.5rem;
    background: #f59e0b;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.875rem;
    animation: check-pop 0.3s ease-out;
}

@keyframes check-pop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.captcha-cell svg {
    width: 2.5rem;
    height: 2.5rem;
    color: #9ca3af;
    transition: all 0.3s;
}

.captcha-cell:hover svg {
    color: #f59e0b;
    transform: scale(1.1);
}

.captcha-cell.selected svg {
    color: #f59e0b;
}

.captcha-cell.correct {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    animation: pulse-correct 0.5s ease-out;
}

.captcha-cell.incorrect {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    animation: shake 0.5s ease-out;
}

@keyframes pulse-correct {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.captcha-actions {
    display: flex;
    gap: 1rem;
    align-items: stretch;
}

.captcha-verify {
    flex: 1;
    padding: 1rem 2rem;
    border: 1px solid #f59e0b;
    background: transparent;
    color: #fff;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.captcha-verify::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #f59e0b;
    transform: translateY(100%);
    transition: transform 0.3s;
    z-index: -1;
}

.captcha-verify:hover::before {
    transform: translateY(0);
}

.captcha-verify:hover {
    color: #000;
}

.captcha-verify:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.captcha-reload {
    padding: 1rem;
    border: 1px solid rgba(245, 158, 11, 0.3);
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.captcha-reload:hover {
    border-color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
    transform: rotate(180deg);
}

.captcha-status {
    margin-top: 1rem;
    padding: 1rem;
    text-align: center;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s;
}

.captcha-status.show {
    opacity: 1;
    transform: translateY(0);
}

.captcha-status.success {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.captcha-status.error {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Responsive Captcha */
@media (max-width: 768px) {
    .captcha-grid {
        gap: 0.5rem;
    }
    
    .captcha-cell svg {
        width: 2rem;
        height: 2rem;
    }
    
    .captcha-actions {
        flex-direction: column;
    }
    
    .captcha-reload {
        width: 100%;
    }
}

.contact-submit {
    width: 100%;
    padding: 1rem;
    margin-top: 2rem;
    border: 1px solid #f59e0b;
    background: transparent;
    color: #fff;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s;
}

.contact-submit:hover {
    background: #f59e0b;
    color: #000;
}

/* Footer */
footer {
    border-top: 1px solid rgba(245, 158, 11, 0.2);
    padding: 3rem 1.5rem;
}

.footer-content {
    max-width: 90rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-content p {
    color: #6b7280;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    font-weight: 300;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-icon {
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid rgba(245, 158, 11, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    border-color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
}

/* Bouton retour en haut - Repositionné en bas à droite */
.scroll-top-btn {
    position: fixed !important;
    bottom: 1rem !important;
    right: 2rem !important;
    left: auto !important;
    width: 3rem;
    height: 3rem;
    border: 1px solid #f59e0b;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1000 !important;
}

.scroll-top-btn.show {
    opacity: 1 !important;
    visibility: visible !important;
}

.scroll-top-btn:hover {
    background: #f59e0b;
    color: #000;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    nav ul {
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    section {
        padding: 5rem 1.5rem;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
/* ========================================
   ANIMATION MESH MODERNE - À ajouter à la fin de style.css
   ======================================== */

/* Container principal pour l'animation mesh */
.mesh-background {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Animation Mesh avec dégradés organiques */
.modern-mesh {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(245, 158, 11, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
    background-size: 100% 100%;
    animation: mesh-move 20s ease-in-out infinite;
}

/* Deuxième couche pour plus de profondeur */
.modern-mesh::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 60% 20%, rgba(245, 158, 11, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 40% 80%, rgba(245, 158, 11, 0.12) 0%, transparent 45%);
    animation: mesh-move-reverse 25s ease-in-out infinite;
}

/* Troisième couche pour effet de profondeur */
.modern-mesh::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 90% 50%, rgba(245, 158, 11, 0.06) 0%, transparent 55%),
        radial-gradient(circle at 10% 60%, rgba(245, 158, 11, 0.09) 0%, transparent 48%);
    animation: mesh-move 30s ease-in-out infinite;
    animation-delay: 5s;
}

/* Animation principale du mesh */
@keyframes mesh-move {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    33% {
        transform: scale(1.05) rotate(2deg);
        opacity: 0.9;
    }
    66% {
        transform: scale(1.08) rotate(-2deg);
        opacity: 0.95;
    }
}

/* Animation inverse pour plus de dynamisme */
@keyframes mesh-move-reverse {
    0%, 100% {
        transform: scale(1) rotate(0deg) translate(0, 0);
    }
    50% {
        transform: scale(1.1) rotate(-3deg) translate(10px, -10px);
    }
}

/* S'assurer que tout le contenu est au-dessus du mesh */
nav,
.hero,
section,
footer,
.scroll-top-btn {
    position: relative;
    z-index: 10;
}

/* Effet de particules subtiles optionnel */
.mesh-particles {
    position: absolute;
    inset: 0;
}

.mesh-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #f59e0b;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
    opacity: 0;
    animation: particle-float 15s infinite ease-in-out;
}

@keyframes particle-float {
    0%, 100% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
        transform: translateY(-10vh) scale(1.5);
    }
    90% {
        opacity: 0.7;
    }
}

/* Responsive - Réduire l'intensité sur mobile */
@media (max-width: 768px) {
    .modern-mesh {
        opacity: 0.7;
    }
    
    .modern-mesh::before,
    .modern-mesh::after {
        opacity: 0.6;
    }
}
/* ========================================
   SECTION À PROPOS - CARTES INFO
   ======================================== */

.section-subtitle {
    color: #9ca3af;
    font-size: 1.125rem;
    font-weight: 300;
    max-width: 42rem;
    margin: 0 auto;
    line-height: 1.6;
}

/* Info Cards Grid */
.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 6rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.info-card {
    position: relative;
    padding: 2.5rem 1.5rem;
    border: 1px solid rgba(245, 158, 11, 0.2);
    background: linear-gradient(to bottom right, rgba(245, 158, 11, 0.05), transparent);
    transition: all 0.5s;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #f59e0b, transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s;
}

.info-card:hover {
    border-color: rgba(245, 158, 11, 0.5);
    background: linear-gradient(to bottom right, rgba(245, 158, 11, 0.1), transparent);
    transform: translateY(-5px);
}

.info-card:hover::before {
    transform: scaleX(1);
}

.card-icon-wrapper {
    width: 4rem;
    height: 4rem;
    border: 1px solid rgba(245, 158, 11, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.5s;
    transform: rotate(45deg);
}

.info-card:hover .card-icon-wrapper {
    border-color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
    transform: rotate(45deg) scale(1.1);
}

.card-icon {
    color: #f59e0b;
    font-size: 1.5rem;
    transform: rotate(-45deg);
}

.card-title {
    font-family: serif;
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: #fff;
    text-align: center;
}

.card-text {
    color: #9ca3af;
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 1.6;
    text-align: center;
}

/* Responsive pour les cartes */
@media (max-width: 1200px) {
    .info-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .info-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 4rem;
    }

    .info-card {
        padding: 2rem 1.5rem;
    }

    .card-icon-wrapper {
        width: 3rem;
        height: 3rem;
        margin-bottom: 1.5rem;
    }

    .card-icon {
        font-size: 1.25rem;
    }

    .card-title {
        font-size: 1.25rem;
    }

    .skills-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

/* About Content - Déjà existant, mais version améliorée */
.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    margin-bottom: 6rem;
}

/* ========================================
   SECTION COMPÉTENCES
   ======================================== */

.skills-section {
    margin-bottom: 6rem;
}

.skills-header {
    text-align: center;
    margin-bottom: 4rem;
}

.skills-title {
    font-family: serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 300;
    color: #f59e0b;
    margin-bottom: 1rem;
}

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

.skill-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.skill-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    color: #d1d5db;
}

.skill-percentage {
    color: #f59e0b;
    font-weight: 500;
}

.skill-bar-wrapper {
    height: 4px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    overflow: hidden;
}

.skill-bar {
    height: 100%;
    background: linear-gradient(to right, #f59e0b, #d97706);
    width: 0;
    transition: width 1.5s ease-out;
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

/* ========================================
   RESPONSIVE POUR SECTION À PROPOS
   ======================================== */

@media (max-width: 768px) {
    .info-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 4rem;
    }

    .info-card {
        padding: 2rem 1.5rem;
    }

    .card-icon-wrapper {
        width: 3rem;
        height: 3rem;
        margin-bottom: 1.5rem;
    }

    .card-icon {
        font-size: 1.25rem;
    }

    .card-title {
        font-size: 1.25rem;
    }

    .skills-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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


/* ========================================
   STYLES POUR LES MESSAGES DU FORMULAIRE
   À ajouter à la fin de style.css
   ======================================== */

/* Animation fadeInScale */
@keyframes fadeInScale {
    from { 
        opacity: 0; 
        transform: scale(0.95); 
    }
    to { 
        opacity: 1; 
        transform: scale(1); 
    }
}

/* Messages du formulaire */
.form-message {
    margin-top: 2rem;
    padding: 2rem;
    border: 1px solid;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease-out;
}

.form-message.show {
    opacity: 1;
    transform: translateY(0);
}

.form-message.success {
    background: linear-gradient(to bottom right, rgba(245, 158, 11, 0.1), transparent);
    border-color: rgba(245, 158, 11, 0.5);
}

.form-message.error {
    background: linear-gradient(to bottom right, rgba(239, 68, 68, 0.1), transparent);
    border-color: rgba(239, 68, 68, 0.5);
}

.message-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.form-message.success .message-icon {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.5);
}

.form-message.error .message-icon {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.5);
}

.message-content {
    flex: 1;
}

.message-title {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.form-message.success .message-title {
    color: #f59e0b;
}

.form-message.error .message-title {
    color: #ef4444;
}

.message-text {
    color: #d1d5db;
    font-size: 0.875rem;
    line-height: 1.6;
    font-weight: 300;
}

/* ====== LOGO RESPONSIVE DANS HERO ====== */

/* Logo grand format par défaut (PC et tablette) */
.hero-divider img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Adaptation pour tablettes (largeur moyenne) */
@media (max-width: 1024px) {
    .hero-divider img {
        max-width: 80%;
        margin: 0 auto;
    }
}

/* Adaptation pour smartphones */
@media (max-width: 768px) {
    .hero-divider {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-divider img {
        max-width: 80%;
        margin: 0 auto;
    }
    
    /* Réduire les lignes décoratives sur mobile */
    .hero-divider .line {
        width: 3rem;
    }
}

/* Petits smartphones */
@media (max-width: 480px) {
    .hero-divider img {
        max-width: 80%;
        margin: 0 auto;
    }
    
    .hero-divider .line {
        width: 2rem;
    }
    
    /* Ajuster l'espacement du hero sur petits écrans */
    .hero-content {
        padding: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
}


/* ========================================
   COOKIE CONSENT BANNER - RGPD
   À ajouter à la fin de style.css
   ======================================== */

/* Overlay sombre */
.cookie-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    pointer-events: none;
}

.cookie-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Banner principal */
.cookie-consent {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(150%);
    max-width: 900px;
    width: calc(100% - 3rem);
    background: #000;
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 0;
    z-index: 9999;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: hidden;
}

.cookie-consent.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Header du banner */
.cookie-header {
    background: linear-gradient(to right, rgba(245, 158, 11, 0.1), transparent);
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cookie-icon {
    width: 2.5rem;
    height: 2.5rem;
    color: #f59e0b;
    flex-shrink: 0;
}

.cookie-title {
    font-family: serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: #fff;
    margin: 0;
}

/* Contenu du banner */
.cookie-content {
    padding: 2rem;
}

.cookie-text {
    color: #d1d5db;
    font-size: 0.9375rem;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.cookie-text a {
    color: #f59e0b;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.cookie-text a:hover {
    border-bottom-color: #f59e0b;
}

/* Options de cookies */
.cookie-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(245, 158, 11, 0.03);
    border: 1px solid rgba(245, 158, 11, 0.1);
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.cookie-option-info {
    flex: 1;
}

.cookie-option-title {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    color: #fff;
    margin-bottom: 0.25rem;
    font-weight: 400;
}

.cookie-option-desc {
    font-size: 0.75rem;
    color: #9ca3af;
    font-weight: 300;
}

/* Toggle Switch */
.cookie-toggle {
    position: relative;
    width: 50px;
    height: 26px;
    flex-shrink: 0;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: rgba(107, 114, 128, 0.3);
    border: 1px solid rgba(107, 114, 128, 0.5);
    transition: all 0.3s;
    border-radius: 26px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background: #6b7280;
    transition: all 0.3s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .toggle-slider {
    background: rgba(245, 158, 11, 0.2);
    border-color: #f59e0b;
}

.cookie-toggle input:checked + .toggle-slider:before {
    transform: translateX(24px);
    background: #f59e0b;
}

.cookie-toggle input:disabled + .toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-toggle input:disabled + .toggle-slider:before {
    background: #9ca3af;
}

/* Boutons d'action */
.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    flex: 1;
    min-width: 150px;
    padding: 1rem 2rem;
    border: 1px solid;
    background: transparent;
    color: #fff;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.cookie-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    transform: translateY(100%);
    transition: transform 0.3s;
    z-index: -1;
}

.cookie-btn-accept {
    border-color: #f59e0b;
}

.cookie-btn-accept::before {
    background: #f59e0b;
}

.cookie-btn-accept:hover::before {
    transform: translateY(0);
}

.cookie-btn-accept:hover {
    color: #000;
}

.cookie-btn-custom {
    border-color: rgba(245, 158, 11, 0.3);
}

.cookie-btn-custom::before {
    background: rgba(245, 158, 11, 0.1);
}

.cookie-btn-custom:hover {
    border-color: #f59e0b;
}

.cookie-btn-custom:hover::before {
    transform: translateY(0);
}

.cookie-btn-refuse {
    border-color: rgba(107, 114, 128, 0.3);
}

.cookie-btn-refuse::before {
    background: rgba(107, 114, 128, 0.2);
}

.cookie-btn-refuse:hover {
    border-color: #6b7280;
}

.cookie-btn-refuse:hover::before {
    transform: translateY(0);
}

/* État "personnaliser" affiché */
.cookie-consent.customize-mode .cookie-options {
    display: flex;
}

.cookie-consent:not(.customize-mode) .cookie-options {
    display: none;
}

/* Footer du banner */
.cookie-footer {
    padding: 1rem 2rem;
    border-top: 1px solid rgba(245, 158, 11, 0.2);
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
}

.cookie-footer-text {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 300;
}

.cookie-footer-text a {
    color: #f59e0b;
    text-decoration: none;
    transition: color 0.3s;
}

.cookie-footer-text a:hover {
    color: #d97706;
}

/* ========================================
   FOOTER AMÉLIORÉ AVEC LIENS LÉGAUX
   À ajouter à la fin de style.css
   ======================================== */

/* Footer restructuré */
footer {
    border-top: 1px solid rgba(245, 158, 11, 0.2);
    padding: 3rem 1.5rem;
}

.footer-content {
    max-width: 90rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-content p {
    color: #6b7280;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    font-weight: 300;
    margin: 0;
}

/* Liens légaux (Confidentialité, CGV) */
.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-link {
    color: #9ca3af;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    font-weight: 300;
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
    padding-bottom: 2px;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #f59e0b;
    transition: width 0.3s;
}

.footer-link:hover {
    color: #f59e0b;
}

.footer-link:hover::after {
    width: 100%;
}

/* Séparateur entre les liens */
.footer-link:not(:last-child)::before {
    content: '•';
    position: absolute;
    right: -0.9rem;
    color: rgba(245, 158, 11, 0.3);
}

/* Social links (déjà existants, repositionnés) */
.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-icon {
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid rgba(245, 158, 11, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    border-color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
    transform: translateY(-2px);
}

/* Responsive footer */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-left {
        align-items: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .footer-link:not(:last-child)::before {
        right: -0.85rem;
    }
}

/* Bouton de gestion des cookies (après acceptation) */
.cookie-settings-trigger {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 3rem;
    height: 3rem;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
}

.cookie-settings-trigger.show {
    opacity: 1;
    visibility: visible;
}

.cookie-settings-trigger:hover {
    background: rgba(245, 158, 11, 0.2);
    border-color: #f59e0b;
    transform: scale(1.1);
}

.cookie-settings-trigger svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-consent {
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        transform: translateX(0) translateY(150%);
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-bottom: none;
    }
    
    .cookie-consent.show {
        transform: translateX(0) translateY(0);
    }
    
    .cookie-header {
        padding: 1.25rem 1.5rem;
    }
    
    .cookie-icon {
        width: 2rem;
        height: 2rem;
    }
    
    .cookie-title {
        font-size: 1.25rem;
    }
    
    .cookie-content {
        padding: 1.5rem;
    }
    
    .cookie-options {
        padding: 1rem;
    }
    
    .cookie-actions {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
        min-width: 0;
    }
    
    .cookie-settings-trigger {
        bottom: 1rem;
        left: 1rem;
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .cookie-settings-trigger svg {
        width: 1.25rem;
        height: 1.25rem;
    }
}

/* Animation d'entrée */
@keyframes cookieSlideUp {
    from {
        transform: translateX(-50%) translateY(150%);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

/* Animation de sortie */
@keyframes cookieSlideDown {
    from {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    to {
        transform: translateX(-50%) translateY(150%);
        opacity: 0;
    }
}

/* Bouton Galerie Privée dans la navigation */
.nav-login {
    margin-left: 1rem;
}

.login-link {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem !important;
    background: transparent;
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #f59e0b !important;
    font-size: 0.7rem !important;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.login-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #f59e0b;
    transform: translateY(100%);
    transition: transform 0.3s;
    z-index: -1;
}

.login-link:hover::before {
    transform: translateY(0);
}

.login-link:hover {
    color: #000 !important;
    border-color: #f59e0b;
}

.login-link svg {
    width: 16px;
    height: 16px;
    stroke-width: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-login {
        margin-left: 0;
        margin-top: 0.5rem;
    }
    
    .login-link {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1rem !important;
    }
}