/* === LOCAL FONTS === */
@font-face {
    font-family: 'Inter';
    src: url('fontes/Inter-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('fontes/Inter-Italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('fontes/Inter-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('fontes/Inter-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('fontes/Inter-SemiBoldItalic.woff2') format('woff2');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('fontes/Inter-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('fontes/Inter-BoldItalic.woff2') format('woff2');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Lora';
    src: url('fontes/lora-v35-latin-500.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Lora';
    src: url('fontes/lora-v35-latin-500italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
}
@font-face {
    font-family: 'Lora';
    src: url('fontes/lora-v35-latin-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Lora';
    src: url('fontes/lora-v35-latin-600italic.woff2') format('woff2');
    font-weight: 600;
    font-style: italic;
}
@font-face {
    font-family: 'Lora';
    src: url('fontes/lora-v35-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Lora';
    src: url('fontes/lora-v35-latin-700italic.woff2') format('woff2');
    font-weight: 700;
    font-style: italic;
}


/* === VARIABLES === */
:root {
    --orange: #FFB800;
    --orange-hover: #e5a500;
    --noir: #2a2a2a;
    --gris: #e8e8e8; /* Very light for better readability */
    --gris-section: #3a3a3a;
    --blanc: #ffffff;
    --max-width: 1100px;
    --padding-horizontal: 2rem;
    --transition: all 0.3s ease;
    --shadow-light: 0 2px 15px rgba(255,184,0,0.1);
    --shadow-hover: 0 8px 20px rgba(255,184,0,0.2);
}

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

/* === GENERAL === */
body {
    padding-top: 80px;
    font-family: 'Inter', sans-serif;
    color: var(--blanc);
    background: var(--noir);
    line-height: 1.1;
    /* English hyphenation */
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

h1, h2, h3, h4, h5, h6 {
    hyphens: none;
    -webkit-hyphens: none;
    -ms-hyphens: none;
}

/* Global styles for all links */
a {
    color: var(--orange);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--blanc) !important;
}

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

/* === HEADER === */
header {
    background: var(--noir);
    border-bottom: 1px solid #333;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

/* === LANGUAGE SWITCH === */
.nav-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lang-switch {
    font-size: 0.9rem;
    text-decoration: none;
    padding: 0.3rem 0.5rem;
    border-radius: 4px;
    transition: var(--transition);
    background: #404040;
    border: 1px solid #666;
    color: #ccc;
}

.lang-switch:hover {
    background: var(--orange) !important;
    color: var(--noir) !important;
    transform: scale(1.05);
    padding: 0.3rem 0.5rem !important;
}

/* === NAVIGATION === */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem var(--padding-horizontal);
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
}

.logo {
    font-weight: 600;
    font-family: 'Lora', serif;
    font-size: 1.6rem;
    text-decoration: none;
    color: var(--blanc);
    line-height: 1.1;
}

.logo:hover {
    background: none !important;
    color: var(--blanc) !important;
    padding: 0 !important;
}

.logo::after {
    content: ".com";
    color: var(--orange);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #d5d5d5; /* Much lighter */
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    line-height: 1.1;
}

.nav-links a:hover {
    color: var(--orange) !important;
    background: none !important;
    padding: 0 !important;
}

.burger {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
}

.burger img {
    width: 2rem;
    height: 2rem;
}

/* === HERO === */
.hero {
    padding: 3rem 0 3.5rem;
    background: var(--noir);
}

/* Animated signature point */
.hero-point-container {
    margin-bottom: 1.5rem;
}

.hero-point {
    width: 32px;
    height: 32px;
    background: var(--orange);
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: breathe 4s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 184, 0, 0.3);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 0 0 10px rgba(255, 184, 0, 0);
    }
}

.hero-point::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--orange);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s ease;
}

.hero-point:hover {
    transform: scale(1.2) rotate(180deg);
    background: var(--orange-hover);
}

.hero-point:hover::after {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1.5);
}

.hero h1 {
    font-family: 'Lora', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--blanc);
}

.hero .lead {
    font-size: 1.15rem;
    color: #e0e0e0; /* Almost white for excellent readability */
    font-family: 'Inter', sans-serif;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.hero .lead-image {
    width: 50%;
    height: auto;
    display: block;
    margin: 1rem auto;
    border-radius: 8px;
}

/* === SECTION TITLES === */
.section-title-icon {
    font-family: 'Lora', serif;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    line-height: 1.1;
    position: relative;
    color: var(--blanc);
    padding-left: 2.5rem;
}

.section-title-icon::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Specific icons per section */
.section-title-icon:nth-of-type(1)::before {
    background-image: url('https://babeleur.be/svg/sparkle-duotone.svg');
}

.section-title-icon:nth-of-type(2)::before {
    background-image: url('https://babeleur.be/svg/sparkle-duotone.svg');
}

.section-title-icon:nth-of-type(3)::before {
    background-image: url('https://babeleur.be/svg/seal-question-fill.svg');
}

/* === COMMON SECTIONS === */
.services,
.activites,
.approche {
    padding: 4rem 0;
}

/* Dark gray background sections */
.services,
.activites {
    background: var(--gris-section);
}

/* Black background sections */
.approche {
    background: var(--noir);
}

/* === SERVICES GRID === */
.services-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.service-card {
    background: var(--noir);
    border: 1px solid #444;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--orange);
}

.service-card p {
    line-height: 1.4;
    color: #d8d8d8; /* Very light */
}

.service-title {
    font-weight: 600;
    text-transform: lowercase;
    margin-bottom: 0.5rem;
    color: var(--orange);
    line-height: 1.1;
}

.service-image {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid #333;
}

.service-card-tall {
    max-width: 400px;
    aspect-ratio: 2/4;
    display: flex;
    flex-direction: column;
}

/* === BUTTONS IN CARDS === */
.service-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 25px;
    text-decoration: none;
    transition: var(--transition);
    text-align: center;
    margin-top: auto;
}

.service-button-active {
    background: var(--orange);
    color: #000000 !important;
}

.service-button-active:hover {
    background: var(--orange-hover);
    transform: translateY(-2px);
    color: var(--blanc) !important;
    padding: 0.8rem 1.5rem;
}

.service-button-disabled {
    background: #444;
    color: #b0b0b0; /* Lighter */
    cursor: not-allowed;
    opacity: 0.6;
}

.service-button-disabled:hover {
    background: #444 !important;
    color: #b0b0b0 !important;
    transform: none !important;
    padding: 0.8rem 1.5rem !important;
}

.service-button:hover {
    border-radius: 25px !important;
}

/* === COLUMN CONTENT === */
.approche-content {
    display: grid;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
    grid-template-columns: 2fr 1fr;
}

.approche-text p {
    margin-bottom: 1.2rem;
    line-height: 1.4;
    color: #e0e0e0; /* Almost white */
}

.content-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid #333;
}

.highlight-box {
    background: var(--gris-section);
    border: 1px solid #444;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--orange);
}

.highlight-box h3 {
    font-family: 'Lora', serif;
    margin-bottom: 1rem;
    color: var(--orange);
    line-height: 1.1;
}

.highlight-box p {
    line-height: 1.4;
    color: #d8d8d8; /* Very light */
}

/* === ACTIVITIES === */
.activites-list p {
    margin-bottom: 1rem;
    line-height: 1.4;
    color: #e0e0e0; /* Almost white */
}

.activites-list a {
    color: var(--orange);
}

/* === FOOTER === */
footer {
    background: #1a1a1a;
    color: #d0d0d0; /* Much lighter */
    padding: 3rem 0 2rem;
    border-top: 1px solid #444;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--padding-horizontal);
    text-align: center;
}

.footer-brand {
    font-family: 'Lora', serif;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--blanc);
}

.footer-brand strong {
    font-weight: 600;
}

.footer-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
    margin: 0 0.8rem;
    vertical-align: middle;
}

.footer-info {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #e0e0e0; /* Almost white */
}

.footer-info em {
    font-style: italic;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-info a {
    color: var(--blanc) !important;
}

.footer-info a:hover {
    color: var(--orange) !important;
}

.footer-links a {
    color: var(--blanc);
}

.footer-links a:hover {
    color: var(--orange) !important;
}

.footer-copyright {
    font-size: 0.85rem;
    color: #b0b0b0; /* Lighter */
}

.footer-copyright a {
    color: var(--blanc);
}

.footer-copyright a:hover {
    color: var(--orange) !important;
}

.email-protect {
    cursor: pointer;
    color: var(--blanc);
}

.email-protect:hover {
    color: var(--orange) !important;
}

/* === RESPONSIVE === */
@media (min-width: 769px) {
    .burger {
        display: none !important;
    }

    .nav-links {
        display: flex !important;
        position: static;
        flex-direction: row;
        background: transparent;
        padding: 0;
        box-shadow: none;
    }

    /* === TEXT JUSTIFICATION DESKTOP/TABLET === */
    .hero .lead,
    .approche-text p,
    .activites-list p {
        text-align: justify;
        hyphens: auto;
        text-align-last: left;
    }

    /* === EXCEPTION: VORTEX CARD TEXTS === */
    .service-card p {
        text-align: left !important;
    }
}

@media (max-width: 768px) {
    .burger {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background: var(--noir);
        border: 1px solid #333;
        padding: 1rem 2rem;
        position: absolute;
        top: 100%;
        right: 0;
        box-shadow: 0 4px 20px rgba(255,184,0,0.1);
        z-index: 1000;
        border-radius: 8px;
        min-width: 200px;
    }

    .nav-links.open {
        display: flex;
    }

    .hero .lead {
        text-align: left;
    }

    .hero .lead-image {
        width: 100%;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .approche-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title-icon {
        font-size: 1.5rem;
    }
}

/* === FORMULAIRE TALLY === */
iframe[data-tally-src] {
    background: #f5f5f5;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

/* === FOOTER COPYRIGHT PADDING === */
.footer-copyright p {
    padding: 0 4rem;
}

/* Version responsive pour mobile */
@media (max-width: 768px) {
    .footer-copyright p {
        padding: 0 2rem;
    }
}
