/* ================================
   BASE
================================ */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #fafafa;
    color: #222;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


/* ================================
   HEADER
================================ */
.header {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 16px 0;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
}

/* Site title */
.site-title {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    color: #000;
}


/* ================================
   NAVIGATION
================================ */
.nav-menu {
    display: flex;
}

.nav-menu a {
    margin-right: 40px; /* remplacement du gap */
    font-size: 15px;
    font-weight: 300;
    color: #666;
    text-decoration: none;
}

.nav-menu a:last-child {
    margin-right: 0;
}

.nav-menu a:hover {
    text-decoration: underline;
}


/* ================================
   CONTENT LAYOUT
================================ */
.content {
    max-width: 820px;
    margin: 50px auto;
    padding: 0 24px;
}


/* ================================
   INTRO TEXT
================================ */
.intro {
    font-size: 22px;
    line-height: 1.45;
    margin-bottom: 45px;
    font-weight: 400;
    color: #333;
    text-align: left;
}


/* ================================
   SECTION TITLES
================================ */
h2 {
    margin-top: 38px;
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 600;
    color: #222;
}


/* ================================
   LINK STYLING (GLOBAL)
================================ */
.content a {
    color: #336F4E;         /* organic green */
    text-decoration: underline;
    font-weight: 400;
    transition: color 0.2s ease;
}

.content a:hover {
    color: #1E4A33;
    text-decoration: underline;
}

/* visited links */
.content a:visited {
    color: #2C5E44;
}


/* ================================
   INVISIBLE LINKS IN TITLES
================================ */
.invisible-link-heading a {
    color: inherit;
    font-weight: inherit;
    text-decoration: none;
}

.invisible-link-heading a:hover {
    text-decoration: none;
}


/* ================================
   LISTS
================================ */
ul {
    margin: 0 0 18px 22px;
    padding: 0;
    line-height: 1.55;
}


/* ================================
   FORMS (optional)
================================ */
.email-form input,
.song-form input {
    width: 100%;
    max-width: 400px;
    padding: 12px;
    margin: 12px 0;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}

.email-form button,
.song-form button {
    padding: 10px 20px;
    background: #3a6f4e;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.email-form button:hover,
.song-form button:hover {
    background: #2f5a40;
}


/* ================================
   MOBILE FIXES
================================ */
@media (max-width: 640px) {

    .header-inner {
        flex-direction: column;
        height: auto;
    }

    .nav-menu a {
        margin-right: 20px;
    }

    .site-title {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        margin-bottom: 4px;
    }
}