@import url('https://fonts.googleapis.com/css2?family=Michroma&family=Montserrat:wght@300;400;600;700;800;900&display=swap');

:root {
    --orange-start: #ff8c00;
    --orange-end: #ff4500;
    --orange-gradient: linear-gradient(135deg, #ff8c00 0%, #ff5200 50%, #e04000 100%);
    --brown: #3d2b1f;
    --brown-light: #5a3e2b;
    --white: #ffffff;
    --off-white: #f8f6f3;
    --text-dark: #2d2d2d;
    --text-mid: #6b6b6b;
    --text-light: #999999;
    --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.08);
    --shadow-card: 0 15px 35px rgba(255, 82, 0, 0.15);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --radius: 16px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Michroma', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }
img { max-width: 100%; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== NAVIGATION ===== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0,0,0,0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-logo img {
    height: 50px;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

nav.scrolled .nav-logo img {
    filter: none;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    font-weight: 700;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: currentColor;
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

nav.scrolled .nav-link {
    color: var(--text-dark);
}

.nav-link:hover, .nav-link.active {
    color: #fff;
}

nav.scrolled .nav-link:hover,
nav.scrolled .nav-link.active {
    color: var(--orange-start);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1100;
    padding: 10px;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: white;
    transition: var(--transition);
    border-radius: 2px;
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

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

nav.scrolled .hamburger span {
    background: var(--text-dark);
}

.hamburger.active span {
    background: white !important;
}

/* ===== CTA BUTTONS ===== */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.cta-primary {
    background: var(--white);
    color: var(--text-dark);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.cta-orange {
    background: var(--orange-gradient);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 82, 0, 0.3);
}

.cta-orange:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 82, 0, 0.4);
}

.cta-whatsapp {
    background: #25d366;
    color: white;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.cta-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

.cta-outline {
    background: transparent;
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
}

.cta-outline:hover {
    background: var(--text-dark);
    color: white;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    background: var(--orange-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

/* Floating geometric shapes */
.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.shape {
    position: absolute;
    opacity: 0.12;
}

.shape-triangle {
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 45px solid white;
}

.shape-circle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: white;
}

.shape-square {
    width: 22px;
    height: 22px;
    background: white;
    transform: rotate(45deg);
}

.shape-ring {
    width: 40px;
    height: 40px;
    border: 3px solid white;
    border-radius: 50%;
}

.shape-cross {
    width: 20px;
    height: 20px;
    position: relative;
}

.shape-cross::before,
.shape-cross::after {
    content: '';
    position: absolute;
    background: white;
}

.shape-cross::before {
    width: 100%;
    height: 3px;
    top: 50%;
    transform: translateY(-50%);
}

.shape-cross::after {
    height: 100%;
    width: 3px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 3.2rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.hero-stat {
    text-align: center;
    color: white;
}

.hero-stat h3 {
    font-size: 2rem;
    margin-bottom: 0.3rem;
}

.hero-stat p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0;
    letter-spacing: 1px;
}

/* ===== SECTIONS ===== */
.section-white {
    padding: 8rem 0;
    background: var(--white);
}

.section-light {
    padding: 8rem 0;
    background: var(--off-white);
}

.section-orange {
    padding: 8rem 0;
    background: var(--orange-gradient);
    position: relative;
    overflow: hidden;
}

.section-brown {
    padding: 8rem 0;
    background: var(--brown);
    color: white;
}

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

.section-title h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-title h2 span {
    color: var(--orange-start);
}

.section-title p {
    color: var(--text-mid);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-orange .section-title h2,
.section-brown .section-title h2 {
    color: white;
}

.section-orange .section-title h2 span {
    color: rgba(255,255,255,0.85);
}

.section-orange .section-title p,
.section-brown .section-title p {
    color: rgba(255,255,255,0.8);
}

/* ===== FEATURES GRID ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    text-align: center;
}

.feature-item {
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius);
    transition: var(--transition);
}

.feature-item:hover {
    background: var(--off-white);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.6rem;
    color: var(--orange-start);
    border: 1px solid #eee;
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    background: var(--orange-gradient);
    color: white;
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(255, 82, 0, 0.3);
}

.feature-item h3 {
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
}

.feature-item p {
    color: var(--text-mid);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ===== SERVICE CARDS ===== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--orange-gradient);
    border-radius: var(--radius);
    padding: 3rem 2rem;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-card);
}

.service-card:nth-child(2),
.service-card:nth-child(5) {
    background: linear-gradient(135deg, #d4691a 0%, #8b4513 100%);
}

.service-card:nth-child(3),
.service-card:nth-child(6) {
    background: linear-gradient(135deg, #b8510d 0%, #5a3e2b 100%);
}

.service-card:nth-child(4) {
    background: linear-gradient(135deg, #c75b0a 0%, #6d3a14 100%);
}

.service-card::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -30%;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -15%;
    width: 120px;
    height: 120px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(255, 82, 0, 0.25);
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.service-card .cta-button {
    position: relative;
    z-index: 1;
}

/* ===== REEL SECTION ===== */
.reel-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.reel-frame {
    max-width: 320px;
    margin: 0 auto;
    background: #1a1a1a;
    border-radius: 35px;
    padding: 12px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.2);
    position: relative;
}

.reel-frame::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 5px;
    background: #333;
    border-radius: 10px;
    z-index: 5;
}

.reel-frame video {
    width: 100%;
    border-radius: 25px;
    display: block;
}

.reel-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.reel-text h2 span { color: var(--orange-start); }

.reel-text p {
    color: var(--text-mid);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.gallery-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.gallery-card:hover img {
    transform: scale(1.05);
}

/* ===== ACTION CARDS ===== */
.action-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.action-card {
    background: white;
    border-radius: var(--radius);
    padding: 3.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    display: block;
    border: 1px solid transparent;
}

.action-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
    border-color: var(--orange-start);
}

.action-card i {
    font-size: 2.5rem;
    color: var(--orange-start);
    margin-bottom: 1.5rem;
    display: block;
}

.action-card h3 {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.action-card p {
    color: var(--text-mid);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

/* ===== BLOG & ARTICLES ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--off-white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.blog-card:hover {
    transform: translateY(-8px);
    background: white;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.blog-card-img {
    height: 200px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-tag {
    color: var(--orange-start);
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.blog-card h2 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.blog-card p {
    font-size: 0.85rem;
    color: var(--text-mid);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.blog-link {
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-card:hover .blog-link {
    color: var(--orange-start);
}

/* Article Page Styles */
.article-content {
    max-width: 800px;
    margin: -4rem auto 0;
    background: white;
    padding: 4rem;
    border-radius: var(--radius);
    position: relative;
    z-index: 5;
    box-shadow: var(--shadow-soft);
}

.article-hero-img {
    width: 100%;
    border-radius: var(--radius);
    margin-bottom: 3rem;
}

.article-content h2 {
    margin: 3rem 0 1.5rem;
    font-size: 1.6rem;
    color: var(--text-dark);
}

.article-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: var(--text-mid);
}

.article-content ul, .article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    color: var(--text-mid);
}

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

.article-tip {
    background: var(--off-white);
    border-left: 5px solid var(--orange-start);
    padding: 2.5rem;
    border-radius: 8px;
    margin: 3rem 0;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.article-tip i {
    font-size: 2rem;
    color: var(--orange-start);
    flex-shrink: 0;
}

.article-tip strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.article-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.spec-item {
    background: var(--off-white);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
}

.spec-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--orange-start);
    margin-bottom: 0.5rem;
    font-family: 'Michroma', sans-serif;
}

.spec-label {
    display: block;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.spec-item p {
    font-size: 0.75rem;
    margin-bottom: 0;
}

.article-cta-box {
    background: var(--brown);
    color: white;
    padding: 3rem;
    border-radius: var(--radius);
    margin-top: 4rem;
    text-align: center;
}

.article-cta-box h3 {
    margin-bottom: 1rem;
    color: white;
}

.article-cta-box p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
}

/* ===== FOOTER ===== */
footer {
    background: var(--brown);
    padding: 5rem 0 3rem;
    color: white;
}

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

.footer-brand img {
    height: 55px;
    filter: brightness(0) invert(1);
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    line-height: 1.8;
}

.footer-col h4 {
    font-size: 0.65rem;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 3px;
}

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}

.footer-col ul li a:hover {
    color: var(--orange-start);
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
    letter-spacing: 1px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero h1 { font-size: 2.8rem; }
    .hero-stats { gap: 2.5rem; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .cards-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .article-content { padding: 2.5rem; margin-top: -2rem; }
    .reel-wrapper { grid-template-columns: 1fr; text-align: center; }
    .reel-text { order: -1; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(180deg, var(--brown) 0%, #1a120d 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transition: var(--transition);
        z-index: 1050;
        backdrop-filter: blur(10px);
    }

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

    .nav-links .nav-link {
        color: white !important; /* Forcer pour le contraste mobile */
        font-size: 1.4rem;
        font-weight: 800;
        letter-spacing: 3px;
        opacity: 0.7;
        transition: 0.3s ease;
    }

    .nav-links .nav-link:hover,
    .nav-links .nav-link.active {
        color: var(--orange-start) !important;
        opacity: 1;
        transform: scale(1.05);
    }

    .hero { padding: 100px 0 60px; min-height: auto; }
    .hero h1 { font-size: 1.8rem; }
    .hero p { font-size: 0.9rem; }
    .hero-stats { flex-direction: column; gap: 1.5rem; }

    .section-white, .section-light, .section-orange, .section-brown { padding: 5rem 0; }
    .section-title h2 { font-size: 1.5rem; }
    .section-title { margin-bottom: 3rem; }

    .features-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .feature-item { padding: 1.5rem 1rem; }

    .cards-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .action-grid { grid-template-columns: 1fr; }
    .article-specs { grid-template-columns: 1fr 1fr; }
    .article-content { padding: 1.5rem; }

    .reel-frame { max-width: 260px; }

    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-brand img { margin: 0 auto 1.5rem; display: block; }

    .container { padding: 0 1.2rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.5rem; }
    .features-grid { grid-template-columns: 1fr; }
    .cta-button { padding: 0.8rem 1.8rem; font-size: 0.65rem; }
}
