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

body {
    font-family: 'Cormorant Garamond', 'Times New Roman', serif;
    background: #0a0a0a;
    color: #d4d4d4;
    line-height: 1.6;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    text-align: center;
    margin-bottom: 4rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 2rem;
}

h1 {
    font-size: 5rem;
    font-weight: 300;
    letter-spacing: 6px;
    color: #fff;
    line-height: 1.2;
}

@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
        letter-spacing: 3px;
    }
}

h1 .dot {
    color: #d4af37;
}

.tagline {
    font-size: 1.3rem;
    font-style: italic;
    color: #d4af37;
    letter-spacing: 2px;
    margin-top: 0.5rem;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero {
    text-align: center;
    margin: 2rem 0 4rem;
}

h2 {
    font-size: 2.8rem;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #fff;
}

@media (max-width: 768px) {
    h2 {
        font-size: 2rem;
    }
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: #d4af37;
    font-weight: 300;
}

.experiences {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.experience-item {
    padding: 1.5rem 1rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    background: rgba(255, 255, 255, 0.02);
    font-size: 1.2rem;
    transition: all 0.4s ease;
    backdrop-filter: blur(2px);
}

.experience-item:hover {
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.08);
    transform: translateY(-5px);
}

.coming-soon {
    margin: 4rem 0 2rem;
    padding: 2rem;
    border: 1px dashed #d4af37;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.coming-soon p {
    font-size: 1.3rem;
    color: #fff;
}

.coming-soon small {
    color: #a0a0a0;
    font-size: 1rem;
}

.reserved {
    font-style: italic;
    color: #a0a0a0;
    font-size: 1rem;
    margin-top: 3rem;
    letter-spacing: 1px;
}

.separator {
    width: 60px;
    height: 1px;
    background: #d4af37;
    margin: 2rem auto;
    opacity: 0.5;
}

footer {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    font-size: 0.95rem;
    color: #666;
}

.social-links {
    margin: 1rem 0;
}

.social-links a {
    color: #d4af37;
    text-decoration: none;
    margin: 0 1rem;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #fff;
}

.copyright {
    font-size: 0.8rem;
}

.language-selector {
    margin-top: 1rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.language-selector a {
    color: #a0a0a0;
    text-decoration: none;
    margin: 0 0.3rem;
    transition: color 0.3s;
}

.language-selector a:hover {
    color: #d4af37;
}
/* ===== SCROLLBAR PERSONNALISÉE ===== */

/* Pour Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #333 #0a0a0a;
}

/* Pour Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;  /* Fond noir */
}

::-webkit-scrollbar-thumb {
    background: #333;      /* Gris très foncé */
    border-radius: 6px;
    border: 2px solid #0a0a0a;
}

::-webkit-scrollbar-thumb:hover {
    background: #d4af37;   /* Doré au survol (optionnel) */
}

::-webkit-scrollbar-corner {
    background: #0a0a0a;
}