/* Hover sur icônes achat */
a[title="Amazon"]:hover,
a[title="Fnac"]:hover,
a[title="Apple Books"]:hover,
a[title="Google Play Books"]:hover,
a[title="Kobo"]:hover {
    border-color: white;
    background: rgba(255,255,255,0.1) !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.1);
}/* ==========================================
   VARIABLES CSS
   ========================================== */
:root {
    --gold: #ffffff;
    --dark: #0d0d0d;
    --darker: #050505;
    --light-text: #e8e8e8;
    --gray: #6a6a6a;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--light-text);
    background: var(--darker);
    overflow-x: hidden;
}

/* ==========================================
   PARTICULES DÉCORATIVES
   ========================================== */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--gold);
    opacity: 0.3;
    animation: float 20s infinite;
}

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

/* ==========================================
   HEADER
   ========================================== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 80px;
    transition: all 0.4s ease;
}

header.scrolled {
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(20px);
    padding: 20px 80px;
    box-shadow: 0 4px 30px rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.logo {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--gold);
    display: none;
}

.menu {
    display: flex;
    list-style: none;
    gap: 50px;
    align-items: center;
}

.menu-social {
    display: flex;
    gap: 20px;
    margin-left: 30px;
    padding-left: 30px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.menu-social a {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.menu-social a:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.menu a {
    color: var(--light-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
    font-family: 'Cinzel', serif;
}

.menu a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.menu a:hover {
    color: var(--gold);
}

.menu a:hover:before {
    width: 100%;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0.8;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><rect fill="%230a0a0a" width="1920" height="1080"/></svg>') no-repeat center;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    max-width: 900px;
}

/* Hero Book Layout - deux colonnes */
.hero-content--book {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0 60px;
    align-items: center;
    max-width: 1400px;
    width: 100%;
    padding: 0 80px;
    text-align: left;
}

.hero-text {
    grid-column: 1;
    grid-row: 1;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.3s;
}

.hero-mockup {
    grid-column: 2;
    grid-row: 1 / 3;
}

.hero-cta {
    grid-column: 1;
    grid-row: 2;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.6s;
}

.hero-tagline {
    font-family: 'Cinzel', serif;
    font-size: 26px;
    color: #b0b0b0;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 25px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.6s;
}

.hero-availability {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--gray);
    text-transform: uppercase;
    font-family: 'Cinzel', serif;
    margin-top: 20px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1.1s;
}

.hero-buy-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 30px !important;
    font-size: 12px !important;
    letter-spacing: 2px !important;
}

.hero-buy-btn i {
    font-size: 16px;
}

.hero-mockup {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: fadeInRight 1.2s ease forwards 0.5s;
}

.hero-mockup-frame {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Stamp premium – sceau de luxe */
.hero-stamp {
    position: absolute;
    bottom: 6%;
    right: -8%;
    z-index: 3;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        #b8860b, #d4a429, #f5d680, #d4a429,
        #b8860b, #d4a429, #f5d680, #d4a429,
        #b8860b
    );
    padding: 3px;
    transform: rotate(-8deg);
    animation: stampAppear 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 1.2s;
    opacity: 0;
    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(184, 134, 11, 0.3),
        0 0 60px rgba(184, 134, 11, 0.1);
}

.hero-stamp-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(ellipse at 30% 20%, #1a1a1a 0%, #0a0a0a 60%, #000 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 1px;
}

/* Cercle doré intérieur décoratif */
.hero-stamp-inner::before {
    content: '';
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    border: 1px solid rgba(212, 164, 41, 0.5);
}

.hero-stamp-inner::after {
    content: '';
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    border: 1px solid rgba(212, 164, 41, 0.25);
}

.hero-stamp-star {
    font-size: 8px;
    color: #d4a429;
    line-height: 1;
    text-shadow: 0 0 6px rgba(212, 164, 41, 0.5);
}

.hero-stamp-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 8px;
    font-weight: 300;
    color: rgba(212, 164, 41, 0.7);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 2px;
}

.hero-stamp-text {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    font-weight: 700;
    background: linear-gradient(180deg, #f5d680 0%, #d4a429 50%, #b8860b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    line-height: 1.1;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.5));
}

.hero-stamp-divider {
    width: 35px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4a429, transparent);
    margin: 2px 0;
}

.hero-stamp-sub {
    font-family: 'Cinzel', serif;
    font-size: 9px;
    font-weight: 400;
    color: #d4a429;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 8px rgba(212, 164, 41, 0.3);
}

@keyframes stampAppear {
    0% {
        opacity: 0;
        transform: rotate(-8deg) scale(0);
    }
    50% {
        opacity: 1;
        transform: rotate(-8deg) scale(1.1);
    }
    70% {
        transform: rotate(-8deg) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: rotate(-8deg) scale(1);
    }
}

/* Stamp dans la section Mon Premier Roman */
.book-stamp {
    top: 15px;
    right: 15px;
    bottom: auto;
    animation-delay: 0.5s;
}

/* Fond noir en biais sur toute la section */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-mockup img {
    position: relative;
    z-index: 1;
    max-width: 105%;
    max-height: 75vh;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.9));
    transition: transform 0.6s ease;
}

.hero-mockup img:hover {
    transform: scale(1.03) translateY(-5px);
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-subtitle {
    font-size: 13px;
    letter-spacing: 5px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 400;
    font-family: 'Cinzel', serif;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.3s;
}

.hero h1 {
    font-family: 'Cinzel', serif;
    font-size: 72px;
    margin-bottom: 10px;
    color: var(--light-text);
    letter-spacing: 4px;
    font-weight: 600;
    line-height: 1.1;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.5s;
}

.hero h1 span {
    color: var(--gold);
}

.hero-description {
    font-size: 17px;
    line-height: 1.8;
    color: #b0b0b0;
    margin-bottom: 35px;
    font-weight: 300;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.7s;
}

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

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-start;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.9s;
}

.cta-btn {
    display: inline-block;
    padding: 18px 45px;
    background: var(--gold);
    color: var(--darker);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
    font-family: 'Cinzel', serif;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cta-btn:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
    border-radius: 50%;
}

.cta-btn:hover:before {
    width: 300px;
    height: 300px;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.3);
}

.cta-btn-outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 45px;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
    font-family: 'Cinzel', serif;
    text-decoration: none;
    transition: all 0.4s ease;
}

.cta-btn-outline:hover {
    background: var(--gold);
    color: var(--darker);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ==========================================
   STATS SECTION
   ========================================== */
.stats {
    background: var(--dark);
    padding: 80px 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.stat-number {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 13px;
    color: var(--gray);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
    font-family: 'Cinzel', serif;
}

/* ==========================================
   TESTIMONIALS SECTION - SLIDER
   ========================================== */
.testimonials {
    padding: 100px 0;
    background: var(--darker);
    text-align: center;
    overflow: hidden;
}

.testimonials .section-title {
    margin-bottom: 50px;
    padding: 0 80px;
}

.testimonials-slider-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 40px;
}

.testimonials-slider {
    display: flex;
    gap: 25px;
    animation: testimonialScroll 25s linear infinite;
    width: max-content;
}

.testimonials-slider:hover {
    animation-play-state: paused;
}

@keyframes testimonialScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: background 0.4s ease, border-color 0.4s ease;
    position: relative;
    min-width: 300px;
    max-width: 300px;
    flex-shrink: 0;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 164, 41, 0.2);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
}

.testimonial-stars i {
    color: #d4a429;
    font-size: 14px;
    text-shadow: 0 0 8px rgba(212, 164, 41, 0.3);
}

.testimonial-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1px;
}

.testimonial-format {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 400;
    color: rgba(212, 164, 41, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 5px 14px;
    border: 1px solid rgba(212, 164, 41, 0.2);
    border-radius: 20px;
    margin-top: 5px;
}

.testimonial-format i {
    font-size: 10px;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about {
    padding: 150px 80px;
    background: var(--darker);
    position: relative;
}

.about:before {
    content: '"';
    position: absolute;
    top: 80px;
    left: 80px;
    font-family: 'Cinzel', serif;
    font-size: 300px;
    color: rgba(255, 255, 255, 0.02);
    line-height: 1;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-img-wrapper {
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.about-img-wrapper.visible {
    opacity: 1;
    transform: translateX(0);
}

.about-img-wrapper:before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold);
    z-index: -1;
}

.about-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    filter: grayscale(40%);
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.about-content {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.about-content.visible {
    opacity: 1;
    transform: translateX(0);
}

.section-label {
    font-size: 12px;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 400;
    font-family: 'Cinzel', serif;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    color: var(--light-text);
    margin-bottom: 30px;
    line-height: 1.2;
    font-weight: 600;
}

.about-content p {
    font-size: 17px;
    line-height: 2;
    margin-bottom: 25px;
    color: #b0b0b0;
    font-weight: 300;
}

.signature {
    margin-top: 40px;
    font-family: 'Cinzel', serif;
    font-size: 36px;
    color: var(--gold);
    font-style: normal;
    font-weight: 400;
}

/* ==========================================
   BOOKS SECTION
   ========================================== */
.books {
    padding: 150px 80px;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.books:before {
    content: '';
    position: absolute;
    top: 0;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.01) 0%, transparent 70%);
    border-radius: 50%;
}

.books-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 100px;
}

.book-mockup {
    position: relative;
    height: 450px;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.book-3d {
    width: 280px;
    height: 400px;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateY(-25deg) rotateX(5deg);
    transition: transform 0.6s ease;
}

.book-card:hover .book-3d {
    transform: rotateY(-15deg) rotateX(2deg) translateZ(20px);
}

.book-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: -10px 10px 40px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, #3a3a3a 0%, #1a1a1a 100%);
}

.book-spine {
    position: absolute;
    left: -30px;
    top: 0;
    width: 30px;
    height: 100%;
    background: linear-gradient(to right, #0a0a0a, #1a1a1a);
    transform: rotateY(-90deg);
    transform-origin: right;
}

/* ==========================================
   PRESS SECTION
   ========================================== */
.press {
    padding: 150px 80px;
    background: var(--darker);
}

.press-container {
    max-width: 1400px;
    margin: 0 auto;
}

.press-header {
    text-align: center;
    margin-bottom: 80px;
}

.quotes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.quote-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px;
    position: relative;
}

.quote-card:before {
    content: '"';
    font-family: 'Cinzel', serif;
    font-size: 120px;
    color: rgba(255, 255, 255, 0.1);
    position: absolute;
    top: 20px;
    left: 30px;
    line-height: 1;
}

.quote-text {
    font-size: 18px;
    line-height: 1.9;
    color: var(--light-text);
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.quote-source {
    color: var(--gold);
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 1px;
    font-family: 'Cinzel', serif;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact {
    padding: 150px 80px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact form {
    margin-top: 60px;
    display: grid;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.contact input,
.contact textarea {
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--light-text);
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    font-weight: 300;
}

.contact input:focus,
.contact textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.contact textarea {
    min-height: 180px;
    resize: vertical;
}

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

.social-link {
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    font-size: 24px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gold);
    color: var(--darker);
    transform: translateY(-5px);
    border-color: var(--gold);
}

.social-link:hover svg {
    fill: var(--darker);
}

/* ==========================================
   FOOTER
   ========================================== */
footer {
    background: var(--darker);
    padding: 50px 80px;
    text-align: center;
    color: var(--gray);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 13px;
    letter-spacing: 2px;
}

/* ==========================================
   MOBILE MENU
   ========================================== */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 30px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials {
        padding: 80px 0;
    }

    .testimonials .section-title {
        padding: 0 40px;
    }

    .testimonial-card {
        min-width: 280px;
        max-width: 280px;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    header { 
        padding: 20px 40px; 
    }
    
    .hero h1 { 
        font-size: 64px; 
    }
}

@media (max-width: 768px) {
    .mobile-toggle { 
        display: flex; 
    }
    
    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        transition: right 0.3s ease;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

    .menu.active { 
        right: 0; 
    }
    
    .menu-social {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        padding-left: 0;
        padding-top: 20px;
        margin-left: 0;
        margin-top: 20px;
    }
    
    .quotes-grid { 
        grid-template-columns: 1fr; 
    }
    
    .form-row { 
        grid-template-columns: 1fr; 
    }
    
    .hero h1 { 
        font-size: 48px; 
    }
    
    .books, .contact, .about, .press { 
        padding: 80px 30px; 
    }
    
    header { 
        padding: 20px 30px; 
    }
}
/* ==========================================
   CORRECTIONS RESPONSIVE MOBILE + FIX OVERFLOW
   Remplacez toute votre section responsive par ceci
   ========================================== */

/* Fix overflow global */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

* {
    box-sizing: border-box;
}

/* Empêcher les débordements sur tous les conteneurs */
.hero, .stats, .about, .books, .press, .contact, footer {
    max-width: 100vw;
    overflow-x: hidden;
}

@media (max-width: 1024px) {
    .hero-content--book {
        gap: 40px;
        padding: 0 40px;
    }

    .hero-content--book .hero h1 {
        font-size: 56px;
    }

    .hero-tagline {
        font-size: 22px;
    }

    .hero-content--book .hero-description {
        font-size: 15px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    header {
        padding: 20px 40px;
    }

    nav {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 56px;
    }

    .logo img {
        height: 50px;
    }

    .book-stamp {
        width: 100px;
        height: 100px;
        top: 10px;
        right: 10px;
    }

    /* Section livre responsive */
    #livres > div:first-child {
        padding: 80px 40px !important;
        max-width: 100vw;
        overflow: hidden;
    }

    #livres > div:first-child > div {
        grid-template-columns: 1fr !important;
        gap: 50px !important;
        text-align: center;
        max-width: 100%;
    }
    
    #livres h2 {
        font-size: 48px !important;
    }
    
    #livres h3 {
        font-size: 32px !important;
    }
    
    /* Grille caractéristiques livre */
    #livres .book-info > div:nth-of-type(1) {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden !important;
    }
    
    .mobile-toggle { 
        display: flex; 
    }
    
    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: right 0.3s ease;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        padding: 40px 20px;
    }

    .menu.active { 
        right: 0; 
    }
    
    .menu-social {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        padding-left: 0;
        padding-top: 20px;
        margin-left: 0;
        margin-top: 20px;
    }
    
    .logo img {
        height: 45px;
    }
    
    .hero {
        height: auto;
        min-height: 100vh;
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .hero-content--book {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 15px;
        padding: 0 20px;
        text-align: center;
    }

    .hero-subtitle,
    .hero-text h1,
    .hero-tagline,
    .hero-description,
    .hero-availability {
        color: #fff !important;
    }

    .hero-content--book .hero-buttons {
        justify-content: center;
    }

    .hero-text {
        grid-column: 1;
        grid-row: auto;
        order: 1;
    }

    .hero-mockup {
        grid-column: 1;
        grid-row: auto;
        order: 2;
    }

    .hero-cta {
        grid-column: 1;
        grid-row: auto;
        order: 3;
    }

    .hero-mockup img {
        max-height: 45vh;
    }

    .hero-stamp {
        width: 100px;
        height: 100px;
        right: -2%;
        bottom: 5%;
    }

    .hero-stamp-label {
        font-size: 6px;
        letter-spacing: 2px;
    }

    .hero-stamp-text {
        font-size: 11px;
    }

    .hero-stamp-sub {
        font-size: 7px;
        letter-spacing: 2px;
    }

    .hero-stamp-star {
        font-size: 6px;
    }

    .hero-stamp-divider {
        width: 25px;
    }

    .hero::after {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }

    .hero h1 {
        font-size: 56px;
        word-wrap: break-word;
        max-width: 100%;
        margin-bottom: 5px;
    }

    .hero-subtitle {
        margin-bottom: 5px;
    }

    .hero-tagline {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .hero-content {
        padding: 20px;
        max-width: 100%;
    }

    .hero-description {
        font-size: 15px;
        margin-bottom: 5px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
    }

    .hero-buttons a {
        width: 100%;
        max-width: 100%;
    }

    .hero-availability {
        text-align: center;
    }
    
    .stats {
        padding: 60px 20px !important;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 100%;
    }

    .testimonials {
        padding: 60px 0;
    }

    .testimonials .section-title {
        margin-bottom: 30px;
        padding: 0 20px;
    }

    .testimonials-slider-wrapper {
        padding: 0 15px;
    }

    .testimonial-card {
        min-width: 260px;
        max-width: 260px;
        padding: 25px 20px;
    }

    .quotes-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row { 
        grid-template-columns: 1fr; 
    }
    
    .books, .contact, .about, .press { 
        padding: 80px 20px !important;
        max-width: 100vw;
        overflow: hidden;
    }
    
    header { 
        padding: 15px 20px; 
        max-width: 100vw;
    }
    
    nav {
        max-width: 100%;
        width: 100%;
    }
    
    .section-title {
        font-size: 36px;
        word-wrap: break-word;
    }
    
    .about:before {
        font-size: 150px;
        top: 40px;
        left: 20px;
    }
    
    .about-container {
        max-width: 100%;
    }
    
    .about-img {
        height: 400px;
        width: 100%;
    }
    
    .about-img-wrapper:before {
        display: none; /* Cache la bordure décorative qui peut dépasser */
    }
    
    /* Section livre mobile - FIX OVERFLOW */
    #livres {
        padding: 0 !important;
        max-width: 100vw;
        overflow: hidden;
    }
    
    .book-stamp {
        width: 80px;
        height: 80px;
        top: 8px;
        right: 8px;
    }

    .book-stamp .hero-stamp-label {
        font-size: 5px;
    }

    .book-stamp .hero-stamp-text {
        font-size: 9px;
    }

    .book-stamp .hero-stamp-sub {
        font-size: 6px;
    }

    .book-stamp .hero-stamp-star {
        font-size: 5px;
    }

    #livres > div:first-child {
        padding: 60px 20px !important;
        max-width: 100vw;
        overflow: hidden;
    }

    #livres > div:first-child > div {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        max-width: 100%;
        width: 100%;
    }
    
    #livres h2 {
        font-size: 36px !important;
        word-wrap: break-word;
        max-width: 100%;
    }
    
    #livres h3 {
        font-size: 24px !important;
        word-wrap: break-word;
    }
    
    #livres p {
        max-width: 100%;
        word-wrap: break-word;
    }
    
    #livres .book-info {
        padding: 0 !important;
        max-width: 100%;
        width: 100%;
    }
    
    /* Grille caractéristiques en 2 colonnes sur mobile */
    #livres .book-info > div:nth-of-type(1) {
        grid-template-columns: 1fr 1fr !important;
        gap: 15px !important;
        padding: 20px !important;
        max-width: 100%;
    }
    
    #livres .book-info > div:nth-of-type(1) > div > div:first-child {
        font-size: 10px !important;
    }
    
    #livres .book-info > div:nth-of-type(1) > div > div:last-child {
        font-size: 13px !important;
    }
    
    /* Boutons en colonne */
    #livres .book-info > div:nth-of-type(3) {
        flex-direction: column !important;
        width: 100%;
        max-width: 100%;
    }
    
    #livres .book-info > div:nth-of-type(3) a {
        width: 100% !important;
        flex: none !important;
        max-width: 100%;
    }
    
    /* Icônes d'achat responsive */
    #livres .book-info > div:nth-of-type(4) {
        flex-direction: column !important;
        align-items: flex-start !important;
        width: 100%;
        max-width: 100%;
    }
    
    #livres .book-info > div:nth-of-type(4) > span {
        margin-bottom: 15px;
    }
    
    #livres .book-info > div:nth-of-type(4) > div {
        width: 100%;
        max-width: 100%;
    }
    
    .book-mockup {
        height: 400px !important;
        max-width: 100%;
    }
    
    .book-3d {
        width: 240px !important;
        height: 360px !important;
    }
    
    /* Section trailer mobile */
    #trailer {
        padding: 60px 20px !important;
        max-width: 100vw;
        overflow: hidden;
    }
    
    #trailer > div {
        max-width: 100%;
    }
    
    #trailer video {
        max-width: 100%;
    }
    
    /* Citation responsive */
    .quote-card {
        padding: 30px 20px;
        max-width: 100%;
    }
    
    .quote-card:before {
        font-size: 80px;
        left: 10px;
    }
    
    .quote-text {
        font-size: 16px;
        word-wrap: break-word;
    }
    
    /* Social links */
    .social-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .social-link {
        width: 50px;
        height: 50px;
    }
    
    /* Contact form */
    .contact-container {
        max-width: 100%;
        width: 100%;
    }
    
    .contact form {
        max-width: 100%;
    }
    
    .contact input,
    .contact textarea {
        max-width: 100%;
        width: 100%;
    }
    
    /* Footer */
    footer {
        padding: 40px 20px;
        max-width: 100vw;
    }
}

@media (max-width: 480px) {
    .hero-content--book {
        padding: 0 15px;
        gap: 25px;
    }

    .hero-mockup img {
        max-height: 35vh;
    }

    .hero-stamp {
        width: 80px;
        height: 80px;
        right: 0%;
        bottom: 3%;
    }

    .hero-stamp-label {
        font-size: 5px;
    }

    .hero-stamp-text {
        font-size: 9px;
        letter-spacing: 1px;
    }

    .hero-stamp-sub {
        font-size: 6px;
        letter-spacing: 1.5px;
    }

    .hero-stamp-star {
        font-size: 5px;
    }

    .hero-stamp-divider {
        width: 20px;
    }

    .hero-tagline {
        font-size: 17px;
        margin-bottom: 15px;
    }

    .hero-buy-btn {
        padding: 14px 20px !important;
        font-size: 11px !important;
    }

    .hero h1 {
        font-size: 48px;
    }

    .section-title {
        font-size: 28px;
    }
    
    #livres h2 {
        font-size: 28px !important;
    }
    
    #livres h3 {
        font-size: 20px !important;
    }
    
    .cta-btn, .cta-btn-outline {
        font-size: 11px;
        padding: 15px 30px;
    }
    
    .logo img {
        height: 40px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .book-mockup {
        height: 350px !important;
    }
    
    .book-3d {
        width: 200px !important;
        height: 300px !important;
    }
    
    /* Grille caractéristiques 1 colonne sur petit mobile */
    #livres .book-info > div:nth-of-type(1) {
        grid-template-columns: 1fr !important;
    }
}

/* ==========================================
   FIX SECTION "MON PREMIER ROMAN"
   Ajoutez ceci à votre CSS
   ========================================== */

/* Fix général section livre */
#livres {
    padding: 0 !important;
    max-width: 100%;
    overflow-x: hidden;
}

/* Container principal du livre */
#livres > div:first-child {
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

/* Grille livre (image + infos) */
#livres > div:first-child > div {
    box-sizing: border-box;
    max-width: 100%;
    width: 100%;
}

/* Mockup du livre */
.book-mockup {
    box-sizing: border-box;
    max-width: 100%;
}

.book-3d {
    margin: 0 auto;
}

/* Infos du livre */
.book-info {
    box-sizing: border-box;
    max-width: 100%;
    width: 100%;
}

/* Grille caractéristiques (Genre, Pages, etc.) */
.book-info > div:nth-of-type(1) {
    box-sizing: border-box;
    max-width: 100%;
    width: 100%;
}

/* Citation */
.book-info > div:nth-of-type(2) {
    box-sizing: border-box;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
}

/* Container des boutons */
.book-info > div:nth-of-type(3) {
    box-sizing: border-box;
    max-width: 100%;
    width: 100%;
}

/* Icônes d'achat */
.book-info > div:nth-of-type(4) {
    box-sizing: border-box;
    max-width: 100%;
    width: 100%;
}

/* RESPONSIVE MOBILE SPÉCIFIQUE */
@media (max-width: 768px) {
    /* Section livre */
    #livres > div:first-child {
        padding: 60px 15px !important;
        margin: 0;
    }
    
    /* Grille en colonne */
    #livres > div:first-child > div {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        padding: 0;
        margin: 0;
    }
    
    /* Titre KALDISS */
    #livres h2 {
        font-size: 32px !important;
        line-height: 1.2 !important;
        margin-bottom: 10px !important;
        padding: 0;
    }
    
    /* Sous-titre "Le secret du jarl" */
    #livres h3 {
        font-size: 20px !important;
        margin-bottom: 20px !important;
        padding: 0;
    }
    
    /* Paragraphe description */
    #livres .book-info p {
        font-size: 15px !important;
        line-height: 1.6 !important;
        margin-bottom: 30px !important;
        padding: 0;
    }
    
    /* Grille caractéristiques - 2 colonnes */
    #livres .book-info > div:nth-of-type(1) {
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
        padding: 15px !important;
        margin-bottom: 30px !important;
    }
    
    #livres .book-info > div:nth-of-type(1) > div {
        padding: 0;
    }
    
    #livres .book-info > div:nth-of-type(1) > div > div:first-child {
        font-size: 9px !important;
        margin-bottom: 5px !important;
    }
    
    #livres .book-info > div:nth-of-type(1) > div > div:last-child {
        font-size: 12px !important;
    }
    
    /* Citation */
    #livres .book-info > div:nth-of-type(2) {
        padding: 20px !important;
        margin-bottom: 30px !important;
    }
    
    #livres .book-info > div:nth-of-type(2) p:first-child {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }
    
    #livres .book-info > div:nth-of-type(2) p:last-child {
        font-size: 12px !important;
    }
    
    /* Boutons en colonne */
    #livres .book-info > div:nth-of-type(3) {
        flex-direction: column !important;
        gap: 15px !important;
        margin-bottom: 30px !important;
    }
    
    #livres .book-info > div:nth-of-type(3) a {
        width: 100% !important;
        flex: none !important;
        padding: 16px 20px !important;
        font-size: 11px !important;
    }
    
    /* Section "Disponible sur" */
    #livres .book-info > div:nth-of-type(4) {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 15px !important;
        padding-top: 20px !important;
    }
    
    #livres .book-info > div:nth-of-type(4) > span {
        font-size: 11px !important;
        margin-bottom: 0;
    }
    
    #livres .book-info > div:nth-of-type(4) > div {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 10px !important;
        width: 100%;
    }
    
    #livres .book-info > div:nth-of-type(4) > div a {
        width: 45px !important;
        height: 45px !important;
    }
    
    #livres .book-info > div:nth-of-type(4) > div a svg {
        width: 20px !important;
        height: 20px !important;
    }
    
    /* Mockup livre mobile */
    .book-mockup {
        height: 380px !important;
        margin-bottom: 20px;
    }
    
    .book-3d {
        width: 220px !important;
        height: 330px !important;
    }
}

@media (max-width: 480px) {
    #livres > div:first-child {
        padding: 40px 15px !important;
    }
    
    #livres h2 {
        font-size: 28px !important;
    }
    
    #livres h3 {
        font-size: 18px !important;
    }
    
    /* Grille en 1 colonne sur très petit écran */
    #livres .book-info > div:nth-of-type(1) {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }
    
    .book-mockup {
        height: 320px !important;
    }
    
    .book-3d {
        width: 180px !important;
        height: 270px !important;
    }
}

.book-extract {
    position: relative;

    background-image:url(../images/norway.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding:80px 0px;
}

.extract-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.book-extract2 {
    position: relative;
    background-image:url(../images/campfire.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding:80px 0px;
}

.extract-overlay2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.extract-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px 60px;
    text-align: center;
}

.extract-quote {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.quote-icon-left,
.quote-icon-right {
    flex-shrink: 0;
    opacity: 0.5;
}

.extract-text {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    line-height: 1.7;
    color: white;
    font-weight: 400;
    font-style: italic;
    margin: 0;
    letter-spacing: 0.5px;
    text-align: center;
    padding: 0 30px;
}

.extract-author {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .book-extract {
        height: auto;
        min-height: 200px;
        padding: 50px 0;
        background-attachment: scroll;
        margin: 60px 0;
    }
    
    .extract-content {
        padding: 0 30px;
    }
    
    .extract-quote {
        gap: 20px;
        margin-bottom: 15px;
    }
    
    .quote-icon-left,
    .quote-icon-right {
        width: 30px;
        height: 30px;
    }
    
    .extract-text {
        font-size: 16px;
        line-height: 1.6;
        padding: 0 20px;
    }
    
    .extract-author {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .book-extract {
        padding: 40px 0;
        margin: 40px 0;
    }
    
    .extract-content {
        padding: 0 20px;
    }
    
    .extract-quote {
        flex-direction: column;
        gap: 15px;
    }
    
    .quote-icon-left {
        order: 1;
    }
    
    .extract-text {
        font-size: 15px;
        order: 2;
        padding: 0 10px;
    }
    
    .quote-icon-right {
        display: none;
    }
}
.about-img-wrapper-round {
    position: relative;
  
    margin: 0 auto;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
    z-index: 10;
}

.about-img-wrapper-round.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Retire l'ancien :before qui créait la bordure décorative */
.about-img-wrapper-round:before {
    display: none;
}

.about-img-round {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    filter: grayscale(20%);
    transition: all 0.3s ease;
    display: block;
    position: relative;
    z-index: 10;
}

.about-img-round:hover {
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.02);
}

/* Responsive */
@media (max-width: 1024px) {
    .about-img-wrapper-round {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .about-img-wrapper-round {
        width: 300px;
        height: 300px;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .about-img-wrapper-round {
        width: 250px;
        height: 250px;
    }
}
footer {
    background: #000;
    color: #fff;
    padding: 3rem 2rem 1.5rem;
    position: relative;
    border-top: 1px solid #333;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    margin-bottom: 2rem;
}

.footer-logo img {
    max-width: 150px;
    height: auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 2rem;
}

.footer-social a {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

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

.footer-link:hover {
    opacity: 0.7;
}

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

.separator {
    color: rgba(255, 255, 255, 0.5);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* Pop-up Styles */
.legal-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    padding: 2rem;
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

.legal-popup.active {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

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

.popup-content {
    background: #000;
    border: 2px solid #fff;
    border-radius: 0;
    max-width: 800px;
    width: 100%;
    position: relative;
    margin: 2rem auto;
    animation: slideUp 0.4s ease;
}

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

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    font-size: 2rem;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
}

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

.popup-content h2 {
    color: #fff;
    font-family: 'Cinzel', serif;
    text-align: center;
    padding: 2rem 3rem 1rem;
    margin: 0;
    border-bottom: 1px solid #fff;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.popup-body {
    padding: 2rem 3rem;
    color: #fff;
    line-height: 1.8;
    font-family: 'Poppins', sans-serif;
}

.popup-body h3 {
    color: #fff;
    font-family: 'Cinzel', serif;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.popup-body h3:first-child {
    margin-top: 0;
}

.popup-body p {
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.popup-body strong {
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    footer {
        padding: 2rem 1rem 1rem;
    }
    
    .footer-social {
        gap: 15px;
    }

    .footer-social a {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .footer-links {
        font-size: 0.8rem;
        gap: 0.3rem 0.8rem;
    }
    
    .legal-popup {
        padding: 1rem;
    }
    
    .popup-content h2 {
        font-size: 1.5rem;
        padding: 1.5rem 2rem 0.8rem;
        letter-spacing: 1px;
    }
    
    .popup-body {
        padding: 1.5rem 2rem;
    }
    
    .popup-body h3 {
        font-size: 1.1rem;
    }
    
    .popup-close {
        top: 0.5rem;
        right: 0.5rem;
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
}

/* ==========================================
   FORMULAIRE - ANTI-SPAM & FEEDBACK
   ========================================== */

/* Honeypot : invisible pour les humains, visible pour les bots */
.hp-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    z-index: -1;
}

/* Messages de retour du formulaire */
.form-message {
    margin-top: 20px;
    padding: 18px 25px;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    text-align: center;
    border: 1px solid;
    transition: all 0.3s ease;
}

.form-message.success {
    color: #a8e6a3;
    border-color: rgba(168, 230, 163, 0.3);
    background: rgba(168, 230, 163, 0.05);
}

.form-message.error {
    color: #e6a3a3;
    border-color: rgba(230, 163, 163, 0.3);
    background: rgba(230, 163, 163, 0.05);
}

/* Bouton en état loading */
#submit-btn.loading {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

