/* --- VARIABLES & RESET --- */
:root {
    --gold: #D4AF37;
    --gold-dark: #b59020;
    --black: #050505;
    --black-light: #111111;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--black);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

h1, h2, h3, .serif {
    font-family: 'Playfair Display', serif;
}

a { text-decoration: none; color: inherit; }

/* --- BACKGROUND ANIMATION --- */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1; /* Derrière tout */
    background-color: var(--black);
}

/* --- UI ELEMENTS --- */
.text-gold { color: var(--gold); }
.border-gold { border: 1px solid var(--gold); }

.btn-main {
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 15px 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: all 0.4s ease;
    background: transparent;
    cursor: pointer;
    display: inline-block;
}

.btn-main:hover {
    background: var(--gold);
    color: var(--black);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.logo-container { margin-bottom: 30px; }
.hero h1 {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 10px;
}
.hero p {
    font-size: 1rem;
    letter-spacing: 4px;
    color: #888;
    margin-bottom: 50px;
    text-transform: uppercase;
}

/* --- GALERIE --- */
.gallery-section { padding: 80px 5%; text-align: center; }
.section-title {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 10px;
}
.subtitle { color: #666; margin-bottom: 60px; font-style: italic; }

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    border: 1px solid #222;
    transition: transform 0.3s;
    cursor: pointer;
}

.card:hover { transform: translateY(-5px); border-color: var(--gold); }

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 20px;
    text-align: left;
}

.card h3 { color: var(--gold); font-size: 1.2rem; }
.card span { font-size: 0.8rem; color: #ccc; }

/* --- DASHBOARD & PRICING --- */
.dashboard-header {
    background: var(--black-light);
    border-bottom: 1px solid var(--gold);
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.selected-profile-bar {
    display: flex;
    align-items: center;
    gap: 20px;
}
.mini-avatar {
    width: 60px; height: 60px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background-size: cover;
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 80px 20px;
    flex-wrap: wrap;
}

.pricing-box {
    width: 350px;
    border: 1px solid #333;
    padding: 40px;
    background: rgba(10,10,10, 0.8);
    position: relative;
}

.pricing-box.vip { border: 1px solid var(--gold); }

.badge {
    position: absolute;
    top: -15px; right: 20px;
    background: var(--gold);
    color: black;
    padding: 5px 15px;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #333;
    color: #fff;
}
.price-row span.price { font-size: 1.2rem; font-weight: bold; }

.footer {
    text-align: center;
    padding: 50px;
    border-top: 1px solid #222;
    color: var(--gold);
    font-size: 0.9rem;
}

/* Force le bouton à être au-dessus de tout */
a, button {
    position: relative;
    z-index: 50;
}

#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1 !important; /* Force l'arrière-plan DERRIÈRE */
}