/**
 * EgaMaker Pro - Main Stylesheet
 * Version: 1.0.0
 */

/* ========================================
   RESET & BASE
   ======================================== */

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

:root {
    --bg-dark: #0D0D0D;
    --bg-card: #1A1A1A;
    --bg-code: #141414;
    --color-1: #FF6B9D;
    --color-2: #FEC260;
    --color-3: #00D9FF;
    --color-4: #A855F7;
    --color-5: #10B981;
    --color-6: #F97316;
    --text-primary: #FFFFFF;
    --text-secondary: #A0A0A0;
    --max-width: 1600px;
    --content-width: 1440px;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

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

/* ========================================
   NAVIGATION
   ======================================== */

.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1.5rem 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.custom-logo {
    max-height: 60px;
    width: auto;
}

.custom-logo-link {
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-1), var(--color-3));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.1em;
}

.main-navigation {
    display: flex;
    gap: 3rem;
    list-style: none;
    position: relative;
}

.main-navigation a {
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s;
}

.main-navigation a:hover,
.main-navigation .current-menu-item a {
    color: var(--text-primary);
}

/* Sous-menus déroulants */
.main-navigation .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem 0;
    min-width: 220px;
    z-index: 1001;
    list-style: none;
}

.main-navigation li {
    position: relative;
}

.main-navigation li:hover > .sub-menu {
    display: block;
}

.main-navigation .sub-menu li {
    margin: 0;
}

.main-navigation .sub-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--text-secondary);
    white-space: nowrap;
}

.main-navigation .sub-menu a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    padding-left: 2rem;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ========================================
   HOMEPAGE HERO
   ======================================== */

.hero-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 8rem 3rem 3rem;
    position: relative;
}

.hero-container {
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
}

.hero-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(3rem, 10vw, 8rem);
    line-height: 0.9;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-title .word {
    display: block;
}

.hero-title .word-1 { 
    color: var(--color-1);
    margin-left: 0;
}

.hero-title .word-2 { 
    color: var(--color-2);
    margin-left: 4rem;
}

.hero-title .word-3 { 
    color: var(--color-3);
    margin-left: 8rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-secondary);
    max-width: 800px;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.hero-tags {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.tag {
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    cursor: pointer;
}

.tag:nth-child(1) { border-color: var(--color-1); color: var(--color-1); }
.tag:nth-child(2) { border-color: var(--color-3); color: var(--color-3); }
.tag:nth-child(3) { border-color: var(--color-5); color: var(--color-5); }
.tag:nth-child(4) { border-color: var(--color-6); color: var(--color-6); }

.tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.btn-primary {
    padding: 1.3rem 3rem;
    background: linear-gradient(135deg, var(--color-1), var(--color-4));
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.4);
}

.btn-text {
    color: var(--text-secondary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.btn-text:hover {
    color: var(--text-primary);
}

/* ========================================
   PUB SLIDER (HOMEPAGE)
   ======================================== */

.pub-slider {
    padding: 4rem 3rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.pub-slider-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-secondary);
}

.pub-slider-content {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.pub-slider .widget {
    flex: 0 1 300px;
}

/* ========================================
   FEATURED PROJECTS
   ======================================== */

.featured-section {
    padding: 6rem 3rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

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

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--color-1), var(--color-2), var(--color-3), var(--color-4));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

/* ========================================
   PROJECT CARDS
   ======================================== */

.project-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
    display: block;
}

.project-card:hover {
    transform: translateY(-10px);
}

.project-card:nth-child(6n+1) { border-color: var(--color-1); }
.project-card:nth-child(6n+2) { border-color: var(--color-3); }
.project-card:nth-child(6n+3) { border-color: var(--color-5); }
.project-card:nth-child(6n+4) { border-color: var(--color-4); }
.project-card:nth-child(6n+5) { border-color: var(--color-6); }
.project-card:nth-child(6n) { border-color: var(--color-2); }

.project-visual {
    height: 280px;
    position: relative;
    overflow: hidden;
}

.project-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.project-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.project-card:hover .project-thumbnail {
    transform: scale(1.1);
}

.project-category {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 2;
}

.project-card:nth-child(6n+1) .project-category {
    background: var(--color-1);
    color: white;
}

.project-card:nth-child(6n+2) .project-category {
    background: var(--color-3);
    color: #0D0D0D;
}

.project-card:nth-child(6n+3) .project-category {
    background: var(--color-5);
    color: white;
}

.project-card:nth-child(6n+4) .project-category {
    background: var(--color-4);
    color: white;
}

.project-card:nth-child(6n+5) .project-category {
    background: var(--color-6);
    color: white;
}

.project-card:nth-child(6n) .project-category {
    background: var(--color-2);
    color: #0D0D0D;
}

.project-content {
    padding: 2rem;
}

.project-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.project-excerpt {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-meta {
    display: flex;
    gap: 2rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ========================================
   SINGLE POST
   ======================================== */

.article-header {
    padding: 12rem 3rem 4rem;
    max-width: 1440px;
    margin: 0 auto;
    text-align: center;
}

.article-category {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: var(--color-1);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.article-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.article-meta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.article-featured-image {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto 4rem;
    border-radius: 20px;
    overflow: hidden;
}

.article-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Article Content */
.article-content {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 3rem 6rem;
}

.entry-content {
    max-width: 1440px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
}

.entry-content p {
    margin-bottom: 1.5rem;
}

.entry-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 0.05em;
    margin: 3rem 0 1.5rem;
    color: var(--color-1);
}

.entry-content h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    margin: 2rem 0 1rem;
    color: var(--color-3);
}

.entry-content ul,
.entry-content ol {
    margin: 1.5rem 0 1.5rem 2rem;
}

.entry-content li {
    margin-bottom: 0.8rem;
}

.entry-content img {
    border-radius: 12px;
    margin: 2rem 0;
}

/* Code blocks */
.entry-content pre {
    background: var(--bg-code);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1.5rem;
    overflow-x: auto;
    margin: 2rem 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.entry-content code {
    font-family: monospace;
}

.entry-content p code {
    background: rgba(255, 107, 157, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.9em;
    color: var(--color-1);
}

/* ========================================
   NEWSLETTER SECTION
   ======================================== */

.newsletter-section {
    padding: 8rem 3rem;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(0, 217, 255, 0.1));
    position: relative;
    overflow: hidden;
}

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

.newsletter-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(2rem, 8vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.gradient-text {
    background: linear-gradient(90deg, var(--color-1), var(--color-2), var(--color-3), var(--color-4), var(--color-5));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    animation: gradientMove 5s linear infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.newsletter-desc {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 1.3rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: white;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
}

.newsletter-input:focus {
    border-color: var(--color-1);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-btn {
    padding: 1.3rem 3rem;
    background: white;
    color: var(--bg-dark);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-btn:hover {
    transform: scale(1.05);
}

/* ========================================
   FOOTER
   ======================================== */

.site-footer {
    padding: 5rem 3rem 3rem;
    background: #000000;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-widgets {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-widget-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.footer-widget ul {
    list-style: none;
}

.footer-widget ul li {
    margin-bottom: 1rem;
}

.footer-widget a {
    color: var(--text-secondary);
    transition: color 0.3s;
}

.footer-widget a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ========================================
   HOMEPAGE LAYOUT - SIDEBAR PUB DROITE
   ======================================== */

.homepage-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 3rem;
}

.homepage-main {
    min-width: 0;
}

.featured-section {
    padding: 4rem 0 6rem 0;
    max-width: none;
}

.pub-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
    padding: 2rem;
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.pub-sidebar-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    text-align: center;
}

.pub-sidebar .widget {
    margin-bottom: 2rem;
}

.pub-sidebar .widget:last-child {
    margin-bottom: 0;
}

/* Masquer l'ancienne section pub horizontale */
.pub-slider {
    display: none;
}

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

@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .footer-widgets {
        grid-template-columns: 1fr 1fr;
    }
    
    /* Layout sidebar sur tablette */
    .homepage-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pub-sidebar {
        position: relative;
        top: 0;
        order: -1;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 1rem 1.5rem;
    }
    
    .main-navigation {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-section,
    .featured-section,
    .article-content {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 12vw, 5rem);
    }
    
    .hero-title .word-2 {
        margin-left: 2rem;
    }
    
    .hero-title .word-3 {
        margin-left: 4rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-widgets {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .homepage-content-wrapper {
        padding: 0 1.5rem;
    }
}

/* ========================================
   UTILITIES
   ======================================== */

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 3rem;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.alignwide {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.alignfull {
    max-width: 100%;
}
/**
 * CSS LAYOUT FINAL COMPLET
 * Homepage : colonne pub droite fixe
 * Articles/Pages : full width sans pub
 * À REMPLACER dans CSS additionnel
 */

/* ========================================
   HOMEPAGE LAYOUT - Pub colonne droite
   ======================================== */

/* Wrapper global homepage : grid 2 colonnes */
.homepage-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 0;
    min-height: 100vh;
    padding-top: 90px; /* Hauteur du header */
}

/* Colonne gauche : tout le contenu */
.homepage-content {
    padding: 2rem 3rem;
    background: var(--bg-dark);
}

/* Colonne droite : sidebar pub FIXE */
.homepage-pub-sidebar {
    position: sticky;
    top: 90px;
    height: calc(100vh - 90px);
    background: rgba(26, 26, 26, 0.95);
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    overflow-y: auto;
}

.pub-sidebar-inner {
    padding: 2rem;
}

.pub-sidebar-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    text-align: center;
    text-transform: uppercase;
}

.homepage-pub-sidebar .widget {
    margin-bottom: 2rem;
}

.homepage-pub-sidebar .widget:last-child {
    margin-bottom: 0;
}

.homepage-pub-sidebar img,
.homepage-pub-sidebar iframe {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* ========================================
   HERO SECTION (dans homepage-content)
   ======================================== */

.hero-section {
    padding: 4rem 0 3rem;
}

.hero-container {
    max-width: 1200px;
}

.hero-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 0.9;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.hero-title .word {
    display: block;
    margin-bottom: 0.5rem;
}

.hero-title .word-1 { 
    color: var(--color-1);
    margin-left: 0;
}

.hero-title .word-2 { 
    color: var(--color-2);
    margin-left: 4rem;
}

.hero-title .word-3 { 
    color: var(--color-3);
    margin-left: 8rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 800px;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-tags {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

/* ========================================
   FEATURED SECTION (dans homepage-content)
   ======================================== */

.featured-section {
    padding: 3rem 0 6rem;
}

.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--color-1), var(--color-2), var(--color-3), var(--color-4));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Grid projets : 3 colonnes */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* ========================================
   ARTICLES & PAGES - FULL WIDTH (sans pub)
   ======================================== */

/* Sur les articles/pages, pas de wrapper grid */
.single .site-content,
.page .site-content {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 3rem;
}

/* Masquer la sidebar pub sur articles/pages */
body:not(.home) .homepage-pub-sidebar {
    display: none;
}

body:not(.home) .homepage-wrapper {
    display: block;
}

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

@media (max-width: 1400px) {
    .homepage-wrapper {
        grid-template-columns: 1fr 280px;
    }
}

@media (max-width: 1200px) {
    /* Sur tablette : pub passe en dessous */
    .homepage-wrapper {
        grid-template-columns: 1fr;
    }
    
    .homepage-pub-sidebar {
        position: relative;
        top: 0;
        height: auto;
        border-left: none;
        border-top: 2px solid rgba(255, 255, 255, 0.1);
    }
    
    /* Grid projets : 2 colonnes */
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title .word-2 {
        margin-left: 3rem;
    }
    
    .hero-title .word-3 {
        margin-left: 6rem;
    }
}

@media (max-width: 768px) {
    .homepage-content {
        padding: 1.5rem;
    }
    
    .hero-section {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 12vw, 5rem);
    }
    
    .hero-title .word-2 {
        margin-left: 2rem;
    }
    
    .hero-title .word-3 {
        margin-left: 4rem;
    }
    
    /* Grid projets : 1 colonne */
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-section {
        padding: 2rem 0 4rem;
    }
}

/* ========================================
   NEWSLETTER
   ======================================== */

.newsletter-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(0, 217, 255, 0.1));
}

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