/* RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #111111;
    color: #ffffff;
    line-height: 1.6;
}

h1, h2, h3, .logo {
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
}

/* NAVIGATION */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background-color: rgba(17, 17, 17, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.logo {
    color: #d4af37;
    font-size: 1.5rem;
    font-weight: 700;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 20px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

nav a:hover {
    color: #d4af37;
}

.btn-nav {
    border: 1px solid #d4af37;
    padding: 8px 16px;
    border-radius: 2px;
    transition: all 0.3s;
}

.btn-nav:hover {
    background-color: #d4af37;
    color: #111111 !important;
}

/* HERO SECTION */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(17, 17, 17, 1)), url('hero-bg.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px auto;
    color: #cccccc;
    font-weight: 300;
}

.btn-gold {
    display: inline-block;
    background-color: #d4af37;
    color: #111111;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border-radius: 2px;
    transition: background 0.3s, transform 0.3s;
}

.btn-gold:hover {
    background-color: #f3cf65;
    transform: translateY(-2px);
}

/* SECTION GENERAL STYLES */
section {
    padding: 100px 8% 60px 8%;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    position: relative;
    text-transform: uppercase;
}

section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: #d4af37;
    margin: 15px auto 0 auto;
}

/* ABOUT SECTION */
.about-container {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 40px;
}

.about-box {
    background-color: #1a1a1a;
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 40px;
    flex: 1;
    max-width: 500px;
    border-radius: 4px;
    text-align: center;
}

.about-box h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.gold-subtitle {
    color: #d4af37;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-box p {
    color: #bbbbbb;
    font-size: 0.95rem;
}

/* REPERTOIRE SECTION */
.section-intro {
    text-align: center;
    color: #aaaaaa;
    margin-bottom: 40px;
}

.rep-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.rep-card {
    background-color: #1a1a1a;
    padding: 30px;
    border-left: 3px solid #d4af37;
    border-radius: 0 4px 4px 0;
}

.rep-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.rep-card p {
    color: #aaaaaa;
    font-size: 0.9rem;
}

/* CONTACT SECTION */
.contact-section {
    background-color: #161616;
    text-align: center;
}

.contact-section p {
    color: #aaaaaa;
    margin-bottom: 30px;
}

form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

input, textarea {
    width: 100%;
    padding: 15px;
    background-color: #222222;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    border-radius: 2px;
    transition: border 0.3s;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #d4af37;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 40px;
    background-color: #111111;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    color: #666666;
}

/* EXTRA DUO STYLING */
.duo-dynamic {
    max-width: 800px;
    margin: 50px auto 0 auto;
    text-align: center;
    background: linear-gradient(rgba(212, 175, 55, 0.05), rgba(212, 175, 55, 0.02));
    border: 1px dashed rgba(212, 175, 55, 0.3);
    padding: 30px;
    border-radius: 4px;
}
.duo-dynamic h3 {
    color: #d4af37;
    margin-bottom: 15px;
    font-size: 1.5rem;
}
.duo-dynamic p {
    color: #dddddd;
    font-size: 1.05rem;
}

/* PHOTO STYLING - UPDATED TO BIND TO IMAGE INNER BOUNDS */
.bio-photo {
    width: 150px;
    height: 150px;
    object-fit: cover; /* Forces browser to zoom past built-in borders */
    object-position: center;
    border-radius: 50%;
    border: 2px solid #d4af37;
    margin-bottom: 15px;
    transform: scale(1.15); /* Slightly scales up to shave off the white border completely */
}

.dynamic-photo {
    max-width: 100%;
    max-height: 450px;
    height: auto;
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.5);
    margin: 20px 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    nav a {
        margin: 0 10px;
    }
    .hero-content h1 {
        font-size: 2.3rem;
    }
    .about-container {
        flex-direction: column;
    }
}