/* Import Google Fonts (fallback propre) */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Montserrat:wght@300;400;700&display=swap');

/* FONT LOCALE (corrigée et optimisée) */
@font-face {
    font-family: 'PlayfairLocal';
    src: url('ressources/fonts/Playfair.woff2') format('woff2'),
         url('ressources/fonts/Playfair.woff') format('woff'),
         url('ressources/fonts/Playfair.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

:root {
    --gold: #c5a059;
    --dark-bg: #0a0a0a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: 
        linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.7)), /* Voile sombre pour la lisibilité */
        url('ressources/images/fond1.png') no-repeat center center fixed; /* Ton image de fond */
    background-size: cover; /* L'image couvre tout l'écran */
    color: white;
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

.mouse-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(180, 180, 180, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* HEADER */
header {
    width: 100%;
    padding: 22px 0;
    text-align: center;
    position: relative;
    z-index: 10;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 60px;
}

nav a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

nav a.active {
    border-bottom: 2px solid #ffffff;
    padding-bottom: 3px;
}

nav a:hover { 
    color: var(--gold); 
}

.hero-container {
    position: relative;
    width: 100%;
    margin-top: 30px;
    padding: 0 40px 20px;
}


.logo {
    width: 230px;
}

.logo-box {
    position: absolute;
    left: 20px; /* ajuste si tu veux + ou - collé */
    top: 50%;
    transform: translateY(-50%);
}

h1 {
    font-family: 'PlayfairLocal', serif;
    font-size: clamp(1.8rem, 4.5vw, 4.2rem); /* un peu plus grand */
    color: var(--gold);
    letter-spacing: 6px; /* + long visuellement */
    font-weight: 400;
    text-transform: uppercase;
}

.title-box {
    text-align: center;
    width: 100%;
}

/* Style pour la nouvelle liste de prestations */
.custom-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.custom-list li {
    color: var(--gold);
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 5px;
}

.subtitle { 
    font-family: 'PlayfairLocal', serif;
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 6px; /* + long visuellement */
    text-transform: uppercase;
    margin-top: 10px;
    font-weight: 400;
}

/* TEXTE */
.text-content {
    font-family: 'PlayfairLocal', serif;
    margin: 60px auto;
    letter-spacing: 3px; /* + long visuellement */
    font-weight: 200; /* Plus fin que le 300 actuel */
    text-align: center;
    max-width: 1000px;
    padding: 0 30px;
}

.text-content p {
    color: var(--gold);
    font-family: 'PlayfairLocal', serif;
    font-weight: 200; /* Plus fin que le 300 actuel */
    font-size: 1.4rem;   /* un peu plus grand */
    line-height: 1.3;    /* plus condensé */
    margin-bottom: 6px;  /* légèrement resserré */
}

.section-spacer {
    margin-top: 45px !important;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero-container { 
        flex-direction: column; 
        gap: 15px; 
    }

    h1 { 
        white-space: normal; 
        font-size: 2.2rem; 
        text-align: center; 
    }

    nav ul { 
        gap: 25px; 
    }
}