@charset "UTF-8";

/*!
 * Version - 1.1.1
 * Copyright (c) 2026 2A Digital <info@2adigital.site>
 * L’autorisation est accordée à toute personne qui en obtient une copie de ce style.
 * Il est strictement interdit de publier(vendre) sans l'autorisation préalable des auteurs.
 * Des spécialistes sont à l'origine des documents fournis.
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Manrope:wght@200..800&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css');
@import url('../vendor/bootstrap/css/bootstrap.min.css');
@import url('color.css');
@import url('typography.css');

/*  ==========================================
*   ================= GENERAL ================
*/

*,
*::before,
*::after {
    box-sizing: border-box;
}

a {
    text-decoration: none !important;
}

.dropdown:hover>.dropdown-menu {
    display: block;
}

/* ========================================
   0. General
======================================== */
body {
    font-family: var(--ff-source);
    color: var(--dark);
    background: var(--light);

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}


/* ========================================
   I. Header
======================================== */

.header {
    z-index: 1030;
}

/* ============= 1. Topbar header ============= */

.topbar {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    font-weight: 400;
    border-bottom: 2px solid #DDD4C2;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}

.topbar-item i {
    font-size: 9px;
    color: var(--secondary);
}

.topbar-item span {
    font-size: 11px;
}


/* ============= 2. Content Header ============= */

.main-header {
    background: var(--light);
    border-bottom: 1px solid var(--header-border);
}

.main-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* ============= 3. brand Header (logo)  ============= */

.brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.brand img {
    display: block;
    width: auto;
    height: 48px;
    object-fit: contain;
}

/* ============= 4. Navigation ============= */

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-inline: auto;
    position: relative;

    color: var(--dark);

    transition:
        color 220ms var(--ease-luxury);
}

.main-nav .nav-link {
    position: relative;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 180ms ease;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
    color: var(--secondary);
}

.main-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 1px;
    background: var(--secondary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 350ms var(--ease-luxury);
}

.main-nav .nav-link:hover::after,
.main-nav .nav-link.active::after {
    color: var(--primary);
}

.main-nav .nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* ============= 5. Buttons action ============= */

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* ============= 5.1. switcher language ============= */

.language-switcher {
    display: flex;
    align-items: center;
    padding: 3px 5px;
    border: 1px solid #e3e5e2;
    border-radius: 5px;
}

.language {
    border: 0;
    background: transparent;
    align-content: center;
    min-width: 28px;
    height: 26px;
    padding: 0 7px;
    border-radius: 4px;
    color: #6c746f;
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
}

.language.active {
    background: var(--primary);
    color: var(--light);
}


/* =========================
   CTA
========================= */

.btn-composer {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 38px;
    padding: 0 20px;

    border-radius: 4px;

    background: var(--sirexe-gold);
    color: #15231e;

    font-size: 12px;
    font-weight: 600;

    text-decoration: none;

    transition:
        background 180ms ease,
        transform 180ms ease;
}

.btn-composer:hover {
    background: #c99d5f;
    color: #15231e;

    transform: translateY(-1px);
}

/* ========================================
   FOOTER
======================================== */

.site-footer {
    padding: 4.5rem 0 1.25rem;
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.55);
}


/* Brand */

.footer-brand {
    display: inline-block;
}

.footer-logo {
    display: block;
    width: 150px;
    height: auto;
}


/* Description */

.footer-description {
    max-width: 270px;
    margin: 1rem 0 0;
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.7rem;
    line-height: 1.6;
}


/* Heading */

.footer-heading {
    margin: 0 0 1rem;
    color: var(--secondary);
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
}


/* Links */

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;

    margin: 0;
    padding: 0;

    list-style: none;
}

.footer-links li,
.footer-links a,
.footer-links span {
    color: rgba(255, 255, 255, 0.5);

    font-size: 0.78rem;
    line-height: 1.45;
}

.footer-links a {
    text-decoration: none;

    transition: color 180ms ease;
}

.footer-links a:hover {
    color: #fff;
}


/* Bottom */

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 4rem;
    padding-top: 1rem;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.62rem;
}


/* Legal */
.footer-legal {
    display: flex;
    align-items: center;
    gap: 1.25rem;

    margin: 0;
    padding: 0;

    list-style: none;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.3);

    font-size: 0.62rem;
    text-decoration: none;

    transition: color 180ms ease;
}

.footer-legal a:hover {
    color: rgba(255, 255, 255, 0.75);
}


/* Focus */

.site-footer a:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 3px;
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 767.98px) {

    .site-footer {
        padding: 3.5rem 0 1.5rem;
    }

    .footer-description {
        max-width: 320px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 1rem;

        margin-top: 3rem;
    }

    .footer-legal {
        flex-wrap: wrap;
        gap: 0.75rem 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}

/*  ==========================================
*   ================ VARIABLES ================
*/

::selection {
    background-color: var(--primary);
    color: var(--light);
}

:root {
    --primary: #0E2A22;
    --primary-shiny: #164438;
    --primary-dark: #071A14;

    --secondary: #C79A5B;
    --secondary-dark: #9E753E;
    --secondary-light: #E4CFA8;
    --secondary-shiny: #F1E8D8;

    --dark: #111311;
    --dark-gray: #292A27;
    --gray: #686C67;
    --gray-light: #9A9D98;

    --light: #FFFFFF;
    --off-white: #FAF9F6;
    --beige: #F5EFE4;

    --color-border: #E6E0D5;
    --color-border-dark: rgba(14, 42, 34, .18);

    --ff-title: "Cormorant Garamond", serif;
    --ff-source: "Manrope", sans-serif;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;

    --shadow-soft: 0 4px 20px rgba(14, 42, 34, .06);

    --shadow-card: 0 12px 40px rgba(14, 42, 34, .08);

    --shadow-button: 0 6px 18px rgba(14, 42, 34, .12);

    --section-spacing: 96px;

    --ease-luxury: cubic-bezier(.22, 1, .36, 1);
    --transition-fast: 180ms var(--ease-luxury);
    --transition-base: 280ms var(--ease-luxury);
}