/* ============================================
   CG Legal - Styles Partagés
   Source de vérité : index.html
   ============================================ */

/* ===== GLOBAL ===== */
body {
    font-weight: 300;
}

/* ===== MENU LUXE - Ultra Haute Couture ===== */
.menu-luxe-texture {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 128px 128px;
}

.menu-item-reveal {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-open .menu-item-reveal {
    opacity: 1;
    transform: translateX(0);
}

.menu-open .menu-item-reveal:nth-child(1) { transition-delay: 0.1s; }
.menu-open .menu-item-reveal:nth-child(2) { transition-delay: 0.2s; }
.menu-open .menu-item-reveal:nth-child(3) { transition-delay: 0.3s; }

.menu-link-luxe {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-link-luxe:hover {
    transform: translateX(16px);
    color: #7A1309;
}

/* ===== TYPOGRAPHIE EDITORIALE ===== */
.prose-editorial h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-top: 4rem;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.prose-editorial p {
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.125rem;
    color: rgba(28, 28, 28, 0.8);
}

.prose-editorial ul {
    margin-bottom: 3rem;
}

.prose-editorial li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: rgba(28, 28, 28, 0.8);
    font-size: 1.125rem;
}

.prose-editorial li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.8rem;
    width: 8px;
    height: 1px;
    background-color: #7A1309;
}

/* ===== PULL QUOTE ===== */
.pull-quote {
    position: relative;
    margin: 5rem 0;
    padding: 3rem 0;
    text-align: center;
}

.pull-quote::before,
.pull-quote::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background-color: #e5e5e5;
}

.pull-quote::before { top: 0; }
.pull-quote::after { bottom: 0; }

.pull-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 2.25rem;
    color: #7A1309;
    line-height: 1.3;
    margin: 0;
}

/* ===== SIDEBAR LINKS ===== */
.sidebar-link-active {
    font-family: 'Cormorant Garamond', serif;
    color: #7A1309;
    border-left: 2px solid #7A1309;
    padding-left: 1rem;
    font-weight: 500;
}

.sidebar-link-inactive {
    font-family: 'Cormorant Garamond', serif;
    color: rgba(28, 28, 28, 0.6);
    padding-left: 1rem;
    border-left: 2px solid transparent;
    transition: color 0.3s;
}

.sidebar-link-inactive:hover {
    color: #1C1C1C;
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
