/* ------------------------------------
   PALETTE & TYPOGRAPHIE
------------------------------------ */
:root {
    --noir: #0a0a0c;
    --gris-fonce: #1a1a1d;
    --rouge-sang: #8b0000;
    --or-mystere: #c7a76c;
    --blanc-casse: #e8e6e3;
    --accent: #d4b47c;
}

body {
    margin: 0;
    font-family: "Cinzel", "Georgia", serif;
    background: var(--noir);
    color: var(--blanc-casse);
    overflow-x: hidden;
}

/* ------------------------------------
   ANIMATIONS
------------------------------------ */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes glow {
    0% { text-shadow: 0 0 5px var(--rouge-sang); }
    50% { text-shadow: 0 0 15px var(--rouge-sang); }
    100% { text-shadow: 0 0 5px var(--rouge-sang); }
}

.fade-in {
    animation: fadeIn 1.2s ease-out forwards;
}

/* ------------------------------------
   HEADER & MENU
------------------------------------ */
header {
    background: rgba(10, 10, 12, 0.9);
    backdrop-filter: blur(6px);
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--rouge-sang);
    z-index: 1000;
}

header img {
    height: 60px;
    animation: fadeIn 1.5s ease-out;
}

nav a {
    color: var(--blanc-casse);
    margin-left: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

nav a:hover {
    color: var(--accent);
    text-shadow: 0 0 10px var(--accent);
}

/* ------------------------------------
   SECTIONS
------------------------------------ */
section {
    padding: 120px 40px 60px;
    max-width: 900px;
    margin: auto;
    animation: fadeIn 1.2s ease-out;
}

h2, h3 {
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon {
    font-size: 2rem;
}

/* ------------------------------------
   ÉQUIPE
------------------------------------ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.team-member {
    text-align: center;
    padding: 20px;
    background: var(--gris-fonce);
    border: 1px solid #222;
    border-radius: 8px;
    transition: 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px var(--rouge-sang);
}

.team-member img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 15px;
}

/* ------------------------------------
   FOOTER
------------------------------------ */
footer {
    background: var(--gris-fonce);
    color: var(--blanc-casse);
    text-align: center;
    padding: 30px;
    margin-top: 40px;
    border-top: 1px solid var(--rouge-sang);
}

.social a {
    color: var(--accent);
    margin: 0 10px;
    text-decoration: none;
    font-weight: bold;
}

.social a:hover {
    color: var(--blanc-casse);
}
