/* =========================================================
   Lawrence F. Davidson Music
   Main Stylesheet
   ========================================================= */


/* ---------- Basic Page Setup ---------- */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #f5f0e6;
    color: #262626;
    font-family: Cambria, Georgia, "Times New Roman", serif;
    font-size: 18px;
    line-height: 1.65;
}

a {
    color: #173f67;
}

img {
    max-width: 100%;
    height: auto;
}


/* ---------- Header ---------- */

.site-header {
    background: #173f67;
    color: #ffffff;
    text-align: center;
    padding: 22px 20px 0;
}

.site-title a {
    color: #ffffff;
    text-decoration: none;
}

.artist-name {
    display: block;
    font-size: 2.25rem;
    font-weight: bold;
    letter-spacing: 0.04em;
}

.artist-description {
    display: block;
    margin-top: 3px;
    color: #d8b56a;
    font-size: 1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}


/* ---------- Navigation ---------- */

.main-navigation {
    margin-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.25);
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.main-navigation a {
    display: block;
    padding: 13px 24px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: bold;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.main-navigation a:hover,
.main-navigation a:focus {
    background: rgba(255,255,255,0.12);
}


/* ---------- Main Content ---------- */

.site-content {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px 50px;
}


/* ---------- Homepage Introduction ---------- */

.hero {
    text-align: center;
    padding: 42px 20px 36px;
}

.hero h1 {
    margin: 0;
    color: #173f67;
    font-size: 2rem;
    font-weight: bold;
}

.hero-subtitle {
    max-width: 760px;
    margin: 14px auto 0;
    font-size: 1.2rem;
    font-style: italic;
}


/* ---------- Featured Album ---------- */

.featured-album {
    display: grid;
    grid-template-columns: minmax(260px, 310px) 1fr;
    gap: 55px;
    align-items: center;
    padding: 42px 0;
    border-top: 1px solid #c9b991;
}

.album-cover {
    max-width: 310px;
}

.album-cover img {
    display: block;
    width: 100%;
    box-shadow: 0 8px 22px rgba(0,0,0,0.20);
}

.section-label {
    margin-bottom: 5px;
    color: #9b742b;
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.featured-album h2,
.album-card h2,
.song-collection h2 {
    color: #173f67;
}

.featured-album h2 {
    margin: 0;
    font-size: 2.1rem;
}

.album-subtitle {
    color: #6d5834;
    font-style: italic;
}


/* ---------- General Sections ---------- */

.home-section,
.song-collection,
.about-content,
.contact-content {
    padding: 38px 0;
    border-top: 1px solid #c9b991;
}

.home-section h2,
.page-header h1,
.about-content h2,
.contact-content h2 {
    color: #173f67;
}

.page-header {
    text-align: center;
    padding: 45px 20px 34px;
}

.page-header h1 {
    margin-bottom: 12px;
    font-size: 2.5rem;
}


/* ---------- Album Listing ---------- */

.album-listing {
    padding-bottom: 30px;
}

.album-card {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    align-items: center;
    padding: 40px 0;
    border-top: 1px solid #c9b991;
}

.album-card img {
    width: 100%;
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}


/* ---------- Buttons ---------- */

.button {
    display: inline-block;
    margin-top: 10px;
    padding: 11px 22px;
    background: #173f67;
    color: #ffffff;
    text-decoration: none;
    border-radius: 3px;
    font-weight: bold;
}

.button:hover,
.button:focus {
    background: #0f2d4b;
}

.text-link {
    font-weight: bold;
}


/* ---------- Footer ---------- */

.site-footer {
    background: #173f67;
    color: #ffffff;
    text-align: center;
    padding: 28px 20px;
    font-size: 0.9rem;
}

.site-footer p {
    margin: 5px 0;
}

.site-footer a {
    color: #d8b56a;
    text-decoration: none;
}


/* ---------- Mobile ---------- */

@media (max-width: 760px) {

    .artist-name {
        font-size: 1.75rem;
    }

    .artist-description {
        font-size: 0.85rem;
    }

    .main-navigation a {
        padding: 12px 11px;
        font-size: 0.82rem;
    }

    .hero {
        padding: 32px 10px 30px;
    }

    .hero h1 {
        font-size: 1.65rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .featured-album,
    .album-card {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .album-cover {
        max-width: 300px;
        margin: 0 auto;
    }

    .featured-album h2 {
        font-size: 1.8rem;
    }

}