/* Kaweco France — modern-brand (vert forêt, laiton, pierre) */

body {
    font-family: 'Open Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* Accent = vert Kaweco / émeraude (classes coral-* conservées pour compatibilité template) */
.bg-coral-100 { background-color: #e6f4ef; }
.bg-coral-200 { background-color: #cce9dd; }
.bg-coral-500 { background-color: #1a7a5c; }
.bg-coral-600 { background-color: #145a45; }
.text-coral-200 { color: #cce9dd; }
.text-coral-500 { color: #1a7a5c; }
.text-coral-600 { color: #145a45; }
.border-coral-500 { border-color: #1a7a5c; }
.ring-coral-500 { --tw-ring-color: #1a7a5c; }

.bg-accent-warm {
    background: linear-gradient(135deg, #fafaf9 0%, #f0f7f4 50%, #e8f2ec 100%);
}

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

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

@keyframes pulse-soft {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.animate-fade-up { animation: fadeUp 0.6s ease-out forwards; }
.animate-fade-up-delay { animation: fadeUp 0.6s ease-out 0.2s forwards; opacity: 0; }
.animate-fade-in { animation: fadeIn 0.6s ease-out forwards; }
.animate-pulse { animation: pulse-soft 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }

#header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

/* Header logo: smaller than h-10, matches 80px WebP asset */
header .site-logo-img {
    height: 2rem;
    width: auto;
    max-width: 7.5rem;
    object-fit: contain;
}
@media (min-width: 768px) {
    header .site-logo-img {
        height: 2.25rem;
        max-width: 8rem;
    }
}

#mobile-menu { transition: all 0.3s ease-in-out; }
#mobile-menu.open { display: block; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #f5f5f4; }
::-webkit-scrollbar-thumb { background: #a8a29e; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: #78716c; }

button:focus-visible,
a:focus-visible,
input:focus-visible {
    outline: 2px solid #1a7a5c;
    outline-offset: 2px;
}

input::placeholder { color: #a8a29e; }
input:focus { outline: none; }

#testimonial-carousel { position: relative; }
#testimonial-track { display: flex; transition: transform 0.3s ease; }
#testimonial-track > div { flex: 0 0 100%; padding: 0 1rem; }

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 9999px;
    background-color: #d6d3d1;
    transition: background-color 0.3s ease;
    cursor: pointer;
}
.testimonial-dot.active { background-color: #1a7a5c; }

@media (max-width: 639px) {
    .hero-stats { gap: 1rem; }
    .hero-stats-pair { width: 100%; max-width: 22rem; margin-left: auto; margin-right: auto; }
}

@media print {
    header, footer, #mobile-menu, button, .no-print { display: none !important; }
    body { background: white; color: black; }
    a { color: black; text-decoration: underline; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

::selection { background-color: #1a7a5c; color: white; }
::-moz-selection { background-color: #1a7a5c; color: white; }

.prose-kaweco p { margin-bottom: 1rem; line-height: 1.75; }
