/* ================================
   SONGBOOK PAGE STYLES
   Page-specific CSS for songbook.html
   Loaded AFTER styles.css
   ================================ */

/* --- Intro Text --- */
.songbook-intro {
    text-align: center;
    color: #444;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* --- Dividers --- */
.songbook-divider {
    border: none;
    border-top: 1px solid #ccc;
    max-width: 800px;
    margin: 30px auto;
}

/* --- Features Section --- */
.songbook-features {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 750px;
    margin: 30px auto;
}

.songbook-features-image img {
    width: 300px;
    height: auto;
    flex-shrink: 0;
}

.songbook-features-list {
    color: #444;
    font-size: 16px;
    line-height: 1.5;
}

.songbook-features-list p {
    color: #444;
    font-size: 16px;
    margin-bottom: 10px;
    padding-left: 20px;
}

.songbook-features-list p:first-child {
    padding-left: 0;
}

.songbook-features-heading {
    font-weight: 700;
}

.songbook-features-list a {
    color: rgb(58, 100, 147);
}

/* --- Buy Cards (Print & PDF side by side) --- */
.songbook-buy-cards {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 35px auto;
    max-width: 700px;
}

.songbook-buy-card {
    text-align: center;
    flex: 0 1 260px;
}

.songbook-cover-image {
    width: 260px;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.content-section .songbook-format-label {
    font-family: 'IM Fell DW Pica', serif;
    font-size: 18px;
    font-weight: 400;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
    margin-bottom: 0;
    line-height: 1.2;
    text-align: center;
}

.content-section .songbook-price {
    font-family: 'Rosario', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #3A6493;
    text-align: center;
    margin-top: 2px;
    margin-bottom: 0;
    line-height: 1.2;
}

/* --- Individual Chapters Section --- */
.songbook-chapters {
    text-align: center;
    margin: 35px auto;
    max-width: 750px;
}

.content-section .songbook-chapters-heading {
    font-family: 'IM Fell DW Pica', serif;
    font-size: 18px;
    font-weight: 400;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-align: center;
}

.songbook-chapters-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    max-width: 700px;
    margin: 0 auto 20px;
}

.songbook-chapter-cover img {
    width: 100%;
    height: auto;
    display: block;
}

.content-section .songbook-chapters .songbook-price {
    margin-top: 10px;
    margin-bottom: 0;
}

/* --- Buy Now Buttons ---
   Defined here to guarantee rendering; 
   also defined site-wide in styles.css for reuse on other pages */
.content-section a.button-buy {
    background: white;
    color: rgb(58, 100, 147);
    border: 1px solid rgba(58, 100, 147, 0.6);
    border-radius: 1px;
    width: 130px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 8px auto 0;
    font-family: 'Roboto Condensed', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.content-section a.button-buy:hover {
    opacity: 0.7;
}

/* --- Sample Pages Section --- */
.songbook-samples {
    max-width: 600px;
    margin: 30px auto;
    text-align: center;
}

.songbook-samples-heading {
    color: #444;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: center;
}

.songbook-samples-list {
    display: inline-block;
    text-align: left;
    padding-left: 20px;
}

.songbook-samples-list p {
    color: #444;
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1.6;
}

.songbook-samples-list a {
    color: rgb(58, 100, 147);
}

/* ================================
   RESPONSIVE - MOBILE
   ================================ */
@media (max-width: 768px) {

    /* Responsive line breaks: hide decorative <br> tags on mobile */
    .desktop-break {
        display: none;
    }

    /* Features: stack vertically */
    .songbook-features {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .songbook-features-image img {
        width: 240px;
    }

    .songbook-features-list {
        text-align: left;
        padding: 0 10px;
    }

    /* Buy cards: stack vertically */
    .songbook-buy-cards {
        flex-direction: column;
        align-items: center;
        gap: 35px;
    }

    .songbook-cover-image {
        width: 260px;
        max-width: 100%;
        height: auto;
    }

    /* Chapters grid: 3 columns on mobile instead of 5 */
    .songbook-chapters-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    /* Samples: already centered via inline-block */

    .songbook-divider {
        margin: 20px auto;
    }
}

/* Very small screens */
@media (max-width: 400px) {
    .songbook-chapters-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .songbook-cover-image {
        width: 260px;
        max-width: 100%;
        height: auto;
    }
}
