:root {
    /* Palette de couleurs */
    --bg-color: #faf9f6; /* Blanc cassé très doux */
    --text-color: #2c2c2c;
    --rose-gold: #d4a5a5; /* Rose poudré sophistiqué */
    --rose-light: #fbeee0;
    --gold: #c5a059; /* Or mat élégant */
    --gold-hover: #b08d4b;
    --white: #ffffff;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, .logo {
    font-family: 'Playfair Display', serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: fixed;
    width: 100%;
    background: rgba(250, 249, 246, 0.95);
    backdrop-filter: blur(5px);
    z-index: 1000;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--gold);
}

.cta-nav {
    border: 1px solid var(--gold);
    padding: 8px 20px;
    border-radius: 50px;
}

.cta-nav:hover {
    background: var(--gold);
    color: var(--white);
}

/* Hero Section */
header {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 10%;
    background: linear-gradient(135deg, var(--bg-color) 60%, var(--rose-light) 100%);
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.subtitle {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    color: var(--gold);
    margin-bottom: 10px;
}

h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.gold-text {
    color: var(--gold);
    font-style: italic;
}

.description {
    max-width: 500px;
    margin-bottom: 30px;
    color: #666;
}

.hero-visual {
    flex: 1;
    height: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-img {
    width: 350px;     /* Largeur de la photo */
    height: 450px;    /* Hauteur de la photo */
    object-fit: cover; /* TRES IMPORTANT : Coupe l'image sans la déformer */
    border-radius: 200px 200px 0 0; /* Crée la forme d'arche */
    border: 3px solid var(--gold); /* Bordure dorée */
    box-shadow: 20px 20px 0px rgba(212, 165, 165, 0.3); /* Ombre rose décalée pour le style */
}

}

/* Boutons */
.btn {
    padding: 12px 30px;
    border-radius: 0;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background-color: var(--text-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--gold);
}

/* Sections communes */
section {
    padding: 80px 10%;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--gold);
    margin: 15px auto 0;
}

/* À propos */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.stat-box {
    margin-bottom: 20px;
    border-left: 3px solid var(--gold);
    padding-left: 15px;
}

.stat-box h3 {
    font-size: 1.5rem;
    color: var(--rose-gold);
}

/* Portfolio */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    border: 1px solid #eee;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-color: var(--gold);
}

.card-img {
    height: 250px;
    width: 100%;
}

.card-info {
    padding: 20px;
    text-align: center;
}

.card-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.card-info p {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 15px;
}

.card-info a {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* Podcast Section - Special Styling */
#podcast {
    background-color: var(--text-color);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tag {
    background: var(--gold);
    color: var(--text-color);
    padding: 5px 10px;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 20px;
    display: inline-block;
}

.podcast-content {
    max-width: 600px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}

/* Animation Audio Wave */
.audio-visualizer {
    display: flex;
    justify-content: center;
    gap: 5px;
    height: 30px;
    margin: 30px 0;
}

.bar {
    width: 6px;
    background: var(--rose-gold);
    animation: bounce 1s infinite ease-in-out;
}

.bar:nth-child(2) { animation-delay: 0.1s; }
.bar:nth-child(3) { animation-delay: 0.2s; }
.bar:nth-child(4) { animation-delay: 0.3s; }
.bar:nth-child(5) { animation-delay: 0.4s; }

@keyframes bounce {
    0%, 100% { height: 5px; }
    50% { height: 30px; }
}

.newsletter {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.newsletter input {
    padding: 12px;
    border: none;
    width: 250px;
}

.btn-gold {
    background: var(--gold);
    color: white;
    border: none;
    padding: 12px 25px;
    cursor: pointer;
    font-weight: bold;
}

/* Footer */
footer {
    text-align: center;
    background-color: #fff;
    padding: 60px 0 30px;
}

.email-link {
    font-size: 2rem;
    font-family: 'Playfair Display';
    color: var(--text-color);
    display: block;
    margin: 20px 0;
}

.email-link:hover {
    color: var(--gold);
}

.socials {
    margin-bottom: 30px;
}

.socials a {
    margin: 0 15px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.copyright {
    font-size: 0.7rem;
    color: #999;
}

/* Responsive Mobile */
@media (max-width: 768px) {
    header {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: 100px;
        height: auto;
    }
    
    h1 { font-size: 2.5rem; }
    
    .hero-visual {
        margin-bottom: 40px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .newsletter {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-links {
        display: none; /* Pour simplifier, menu burger à ajouter si besoin */
    }
}