/* ═══ L'Oli – GLF Imprimerie – Styles v3 ═══ */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Space+Mono:wght@400;700&display=swap');

:root {
    --cyan: #00B4D8;
    --magenta: #E91E8C;
    --yellow: #FFD60A;
    --key: #1A1A2E;
    --key-light: #2D2D44;
    --white: #FAFAFA;
    --gray-50: #F5F5F7;
    --gray-100: #E8E8EC;
    --gray-200: #D1D1D8;
    --gray-400: #9898A6;
    --gray-600: #6B6B7B;
    --shadow: 0 2px 20px rgba(26,26,46,0.08);
    --shadow-lg: 0 8px 40px rgba(26,26,46,0.12);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'DM Sans', sans-serif; background: var(--white); color: var(--key); line-height: 1.7; overflow-x: hidden; }
a { color: var(--cyan); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ═══ TOP BAR TEL (desktop permanent) ═══ */
.top-bar { background: var(--key); color: rgba(255,255,255,0.85); font-size: 0.82rem; padding: 7px 24px; position: fixed; top: 0; left: 0; right: 0; z-index: 1001; display: flex; justify-content: center; align-items: center; gap: 28px; }
.top-bar a { color: var(--white); text-decoration: none; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.top-bar a:hover { text-decoration: none; opacity: 0.9; }
.top-bar .sep { color: rgba(255,255,255,0.2); margin: 0 4px; }
.top-bar-hours { color: rgba(255,255,255,0.55); font-size: 0.78rem; }

/* ═══ NAV ═══ */
nav { position: fixed; top: 33px; left: 0; right: 0; z-index: 1000; background: rgba(250,250,250,0.92); backdrop-filter: blur(20px); border-bottom: 1px solid var(--gray-100); transition: box-shadow 0.3s; }
nav.scrolled { box-shadow: var(--shadow); }
.nav-inner { max-width: 1140px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 62px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo:hover { text-decoration: none; }
.logo-mark { width: 36px; height: 36px; background: var(--key); border-radius: 9px; position: relative; overflow: hidden; }
.logo-mark::before { content: ''; position: absolute; width: 14px; height: 14px; border-radius: 50%; background: var(--cyan); top: 5px; left: 5px; opacity: 0.9; }
.logo-mark::after { content: ''; position: absolute; width: 14px; height: 14px; border-radius: 50%; background: var(--magenta); bottom: 5px; right: 5px; opacity: 0.9; mix-blend-mode: screen; }
.logo-text { font-family: 'Space Mono', monospace; font-weight: 700; font-size: 1.02rem; color: var(--key); letter-spacing: -0.5px; }
.logo-text span { color: var(--gray-400); font-weight: 400; }
.nav-links { display: flex; gap: 2px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--gray-600); font-size: 0.85rem; font-weight: 500; padding: 7px 12px; border-radius: 8px; transition: all 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--key); background: var(--gray-50); text-decoration: none; }
.nav-cta { background: var(--key) !important; color: var(--white) !important; padding: 9px 18px !important; border-radius: 10px !important; font-weight: 600 !important; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(26,26,46,0.2); background: var(--key-light) !important; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; width: 32px; height: 32px; position: relative; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--key); position: absolute; left: 5px; transition: all 0.3s; }
.nav-toggle span:nth-child(1) { top: 9px; }
.nav-toggle span:nth-child(2) { top: 15px; }
.nav-toggle span:nth-child(3) { top: 21px; }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg); top: 15px; }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg); top: 15px; }

/* ═══ BOUTON APPEL MOBILE ═══ */
.mobile-call-btn { display: none; position: fixed; bottom: 20px; right: 20px; z-index: 1002; width: 62px; height: 62px; border-radius: 50%; background: linear-gradient(135deg, #00c853, #00a844); color: white; font-size: 1.6rem; border: none; cursor: pointer; box-shadow: 0 4px 24px rgba(0,200,83,0.4); text-decoration: none; align-items: center; justify-content: center; animation: pulse-call 2s infinite; }
.mobile-call-btn:hover { text-decoration: none; transform: scale(1.05); }
@keyframes pulse-call { 0%,100% { box-shadow: 0 4px 20px rgba(0,200,83,0.4); } 50% { box-shadow: 0 4px 30px rgba(0,200,83,0.6), 0 0 0 10px rgba(0,200,83,0.08); } }

/* ═══ LAYOUT ═══ */
.page-wrap { padding-top: 95px; }
.section { padding: 72px 24px; max-width: 1140px; margin: 0 auto; }
.section-alt { background: var(--gray-50); }
.section-alt .section { max-width: 1140px; margin: 0 auto; }
.section-label { font-family: 'Space Mono', monospace; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--cyan); margin-bottom: 10px; }
.section-title { font-size: 2.1rem; font-weight: 700; letter-spacing: -1px; line-height: 1.2; }
.section-desc { color: var(--gray-600); margin-top: 12px; max-width: 640px; font-size: 1.02rem; }

/* ═══ HERO ═══ */
.hero { padding: 56px 24px 72px; max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; min-height: calc(100vh - 95px); }
.hero h1 { font-size: 2.7rem; font-weight: 700; line-height: 1.08; letter-spacing: -1.5px; margin-bottom: 20px; }
.hero h1 .accent { background: linear-gradient(135deg, var(--cyan), var(--magenta)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-size: 1.06rem; color: var(--gray-600); margin-bottom: 30px; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-img { width: 100%; max-width: 560px; height: auto; border-radius: 20px; box-shadow: var(--shadow-lg); object-fit: cover; }
.hero-card { width: 100%; max-width: 460px; background: var(--gray-50); border-radius: 20px; border: 1px solid var(--gray-100); position: relative; overflow: hidden; padding: 28px; }
.hero-card::before { content: ''; position: absolute; top: -40px; right: -40px; width: 180px; height: 180px; background: radial-gradient(circle, rgba(0,180,216,0.15), transparent 70%); }
.hero-card::after { content: ''; position: absolute; bottom: -40px; left: -40px; width: 180px; height: 180px; background: radial-gradient(circle, rgba(233,30,140,0.12), transparent 70%); }
.format-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; z-index: 1; position: relative; }
.format-item { background: var(--white); border: 1px solid var(--gray-100); border-radius: 12px; padding: 18px 14px; text-align: center; transition: all 0.3s; }
.format-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--cyan); }
.format-label { font-family: 'Space Mono', monospace; font-weight: 700; font-size: 1.3rem; }
.format-desc { font-size: 0.73rem; color: var(--gray-400); margin-top: 3px; }
.badges { display: flex; gap: 20px; margin-top: 36px; flex-wrap: wrap; }
.badge { display: flex; align-items: center; gap: 8px; font-size: 0.84rem; color: var(--gray-600); }
.badge-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

/* ═══ BUTTONS ═══ */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; border-radius: 12px; font-size: 0.93rem; font-weight: 600; text-decoration: none; cursor: pointer; border: none; transition: all 0.25s; font-family: inherit; }
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--key); color: var(--white); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(26,26,46,0.2); }
.btn-outline { background: transparent; color: var(--key); border: 2px solid var(--gray-200); }
.btn-outline:hover { border-color: var(--key); background: var(--gray-50); }

/* ═══ SERVICE CARDS ═══ */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; margin-top: 36px; }
.service-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: 16px; padding: 30px; transition: all 0.3s; }
.service-card:hover { border-color: transparent; box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.service-icon { width: 50px; height: 50px; border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 18px; }
.service-card h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 8px; }
.service-card p { color: var(--gray-600); font-size: 0.9rem; line-height: 1.65; }

/* ═══ PROSE ═══ */
.prose { max-width: 760px; }
.prose h2 { font-size: 1.5rem; font-weight: 700; margin: 36px 0 14px; letter-spacing: -0.5px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.12rem; font-weight: 600; margin: 24px 0 10px; }
.prose p { color: var(--gray-600); margin-bottom: 14px; font-size: 0.95rem; }
.prose strong { color: var(--key); }

/* ═══ CTA ═══ */
.cta-box { background: linear-gradient(135deg, var(--key) 0%, #2a2a50 100%); border-radius: 20px; padding: 52px; color: var(--white); text-align: center; position: relative; overflow: hidden; }
.cta-box::before { content: ''; position: absolute; top: -100px; right: -100px; width: 280px; height: 280px; background: radial-gradient(circle, rgba(0,180,216,0.2), transparent 70%); }
.cta-box::after { content: ''; position: absolute; bottom: -100px; left: -100px; width: 280px; height: 280px; background: radial-gradient(circle, rgba(233,30,140,0.15), transparent 70%); }
.cta-box h2 { font-size: 1.8rem; font-weight: 700; margin-bottom: 14px; position: relative; z-index: 1; }
.cta-box p { opacity: 0.8; margin-bottom: 28px; max-width: 500px; margin-left: auto; margin-right: auto; position: relative; z-index: 1; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-email { display: inline-flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 14px; padding: 15px 28px; transition: all 0.3s; }
.cta-email:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.3); }
.cta-email a { color: var(--white); font-family: 'Space Mono', monospace; font-size: 1.05rem; font-weight: 700; }
.cta-email a:hover { text-decoration: none; }
.cta-phone { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); border-radius: 14px; padding: 15px 26px; color: var(--white); text-decoration: none; font-weight: 600; font-size: 0.93rem; transition: all 0.3s; }
.cta-phone:hover { background: rgba(255,255,255,0.2); text-decoration: none; }

/* ═══ MAP ═══ */
.map-container { border-radius: 16px; overflow: hidden; border: 1px solid var(--gray-100); height: 380px; margin-top: 36px; }
.map-container iframe { width: 100%; height: 100%; border: none; }
.map-full { height: 420px; margin-top: 0; }

/* ═══ CONTACT ═══ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.contact-info-card { background: var(--gray-50); border-radius: 16px; padding: 32px; }
.contact-item { display: flex; gap: 14px; margin-bottom: 24px; }
.contact-item:last-child { margin-bottom: 0; }
.contact-icon-wrap { width: 42px; height: 42px; border-radius: 11px; background: var(--white); border: 1px solid var(--gray-100); display: flex; align-items: center; justify-content: center; font-size: 1.05rem; flex-shrink: 0; }
.contact-item h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--gray-400); margin-bottom: 3px; }
.contact-item p { font-weight: 500; }
.contact-item a { color: var(--key); font-weight: 500; }
.contact-item a:hover { color: var(--cyan); }

/* ═══ FAQ ═══ */
.faq-list { max-width: 720px; }
.faq-item { border-bottom: 1px solid var(--gray-100); padding: 22px 0; }
.faq-q { font-weight: 600; font-size: 1.02rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q::after { content: '+'; font-family: 'Space Mono', monospace; font-size: 1.2rem; color: var(--gray-400); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-q::after { transform: rotate(45deg); color: var(--cyan); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s; color: var(--gray-600); line-height: 1.7; }
.faq-item.open .faq-a { max-height: 300px; padding-top: 12px; }

/* ═══ BREADCRUMB ═══ */
.breadcrumb { padding: 16px 24px; max-width: 1140px; margin: 0 auto; font-size: 0.82rem; color: var(--gray-400); }
.breadcrumb a { color: var(--gray-400); text-decoration: none; }
.breadcrumb a:hover { color: var(--key); }
.breadcrumb span { margin: 0 6px; }

/* ═══ TWO COL / FORMATS ═══ */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.format-block { background: var(--white); border: 1px solid var(--gray-100); border-radius: 16px; overflow: hidden; }
.format-block-header { padding: 22px 26px; border-bottom: 1px solid var(--gray-100); display: flex; align-items: center; gap: 12px; }
.format-block-header h3 { font-size: 1.05rem; font-weight: 600; }
.color-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.format-block-body { padding: 18px 26px; }
.format-row { display: flex; justify-content: space-between; align-items: center; padding: 13px 0; border-bottom: 1px solid var(--gray-50); }
.format-row:last-child { border: none; }
.format-row .name { font-family: 'Space Mono', monospace; font-weight: 700; font-size: 0.93rem; }
.format-row .size { color: var(--gray-400); font-size: 0.82rem; }

/* ═══ FOOTER ═══ */
footer { background: var(--key); color: rgba(255,255,255,0.6); padding: 44px 24px; }
.footer-inner { max-width: 1140px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-brand { font-family: 'Space Mono', monospace; font-weight: 700; color: var(--white); font-size: 1rem; }
.footer-links { display: flex; gap: 20px; list-style: none; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.84rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 0.78rem; width: 100%; text-align: center; margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-copy a { color: rgba(255,255,255,0.6); }

/* ═══ ANIMATIONS ═══ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.animate { animation: fadeUp 0.6s ease forwards; opacity: 0; }
.delay-1 { animation-delay: 0.1s; } .delay-2 { animation-delay: 0.2s; } .delay-3 { animation-delay: 0.3s; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; gap: 32px; padding: 44px 24px; min-height: auto; }
    .hero h1 { font-size: 2.1rem; }
    .hero-visual { order: -1; }
    .hero-img { max-width: 360px; margin: 0 auto; border-radius: 16px; }
    .two-col, .contact-grid { grid-template-columns: 1fr; }
    .cta-box { padding: 32px 20px; }
    .section-title { font-size: 1.65rem; }
}
@media (max-width: 640px) {
    .top-bar { display: none; }
    nav { top: 0; }
    .page-wrap { padding-top: 62px; }
    .mobile-call-btn { display: flex; }
    .nav-links { display: none; position: absolute; top: 62px; left: 0; right: 0; background: rgba(250,250,250,0.98); backdrop-filter: blur(20px); flex-direction: column; padding: 16px 24px; border-bottom: 1px solid var(--gray-100); box-shadow: var(--shadow); }
    .nav-links.open { display: flex; }
    .nav-toggle { display: block; }
    .hero h1 { font-size: 1.75rem; }
    .hero { padding: 28px 20px 40px; }
    .format-grid { gap: 8px; }
    .format-item { padding: 13px 10px; }
    .services-grid { grid-template-columns: 1fr; }
    .section { padding: 44px 20px; }
    footer { padding-bottom: 90px; }
    .map-container { height: 260px; }
}
