@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.8;
    color: #374151;
}
h1, h2, h3, h4, .font-heading {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
}

/* Brand Colors */
:root {
    --lavail-gold: #C5A065; 
    --lavail-gold-dark: #A68550;
    --lavail-black: #111111;
}

/* Utilities */
.text-justify-pretty { text-align: justify; text-justify: inter-word; }

/* Gardé même si plus utilisé en SPA */
.page-section { display: none; animation: fadeIn 0.8s ease-out; }
.page-section.active { display: block; }

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

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--lavail-gold); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--lavail-gold-dark); }

/* Buttons */
.btn-gold {
    background-color: var(--lavail-gold); color: white; border-radius: 9999px;
    transition: all 0.3s ease; padding: 0.75rem 2rem; font-weight: 700;
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; cursor: pointer;
}
.btn-gold:hover { background-color: var(--lavail-gold-dark); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(197, 160, 101, 0.3); }

.btn-outline-white {
    background: transparent; border: 2px solid rgba(255,255,255,0.3); color: white; border-radius: 9999px;
    padding: 0.75rem 2rem; font-weight: 700; transition: all 0.3s ease; cursor: pointer;
}
.btn-outline-white:hover { border-color: white; background: white; color: black; }

.btn-link-external {
    background-color: #1f2937; color: white; padding: 1rem 2rem; border-radius: 0.5rem;
    font-weight: bold; display: inline-flex; align-items: center; gap: 0.5rem; transition: all 0.3s;
}
.btn-link-external:hover { background-color: #000; }

/* FAQ Accordion */
.faq-item summary { list-style: none; cursor: pointer; }
.faq-item summary::-webkit-details-marker { display: none; }

/* Marquee Animation for Partners */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}
.marquee-content {
    display: inline-block;
    animation: marquee 30s linear infinite;
}
.marquee-content:hover {
    animation-play-state: paused;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.partner-logo-item {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin: 0 3rem;
    opacity: 0.5;
    transition: opacity 0.3s, transform 0.3s;
    filter: grayscale(100%);
}
.partner-logo-item:hover {
    opacity: 1;
    transform: scale(1.1);
    filter: grayscale(0%);
}

/* Specific Styles for Long Content Page */
.drop-cap:first-letter {
    float: left;
    font-size: 3.5rem;
    line-height: 0.8;
    font-weight: bold;
    color: var(--lavail-gold);
    margin-right: 0.5rem;
    margin-bottom: -0.5rem;
}

.tech-card {
    transition: all 0.4s ease;
}
.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.1);
}
