/*
 Theme Name: GeneratePress Child
 Template: generatepress
*/

/* -----------------------------------------------------------
   SONG PAGE STYLES
----------------------------------------------------------- */

.song-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

.song-header {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 40px;
}

.song-cover {
    width: 350px;
    border-radius: 10px;
}

.song-info {
    flex: 1;
}

.song-title {
    font-size: 42px;
    margin-bottom: 10px;
}

.song-release {
    font-size: 18px;
    margin-bottom: 20px;
}

.stream-buttons a {
    display: inline-block;
    margin-right: 10px;
    padding: 10px 18px;
    background: #cc0000;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

.stream-buttons a:hover {
    background: #990000;
}

.song-audio {
    margin-top: 20px;
    width: 100%;
}

.song-section {
    margin-top: 40px;
}

.song-section h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.song-lyrics,
.song-credits {
    font-size: 18px;
    line-height: 1.6;
}

.songs-archive {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

.songs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 30px;
}

.song-card {
    text-decoration: none;
    color: inherit;
}

.song-card-cover img {
    width: 100%;
    border-radius: 10px;
}

.song-card-title {
    margin-top: 10px;
    font-size: 20px;
    font-weight: 600;
}

/* -----------------------------------------------------------
   HOMEPAGE WRAPPER
----------------------------------------------------------- */

.home-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Hero Logo Watermark */
.home-hero {
    position: relative;
    overflow: hidden;
}


/* -----------------------------------------------------------
   HERO SECTION
----------------------------------------------------------- */

.home-hero {
    background: #cc0000;
    padding: 80px 20px;
    text-align: center;
    color: #fff;
    border-radius: 10px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
}


/* -----------------------------------------------------------
   ABOUT SECTION
----------------------------------------------------------- */

.home-about {
    padding: 60px 20px;
    max-width: 900px;
    margin: 60px auto 0 auto;
    background: #111;
    border-radius: 10px;
    color: white;
}

.about-title {
    font-size: 1.8rem;
    border-bottom: 2px solid #444;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.about-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.about-btn {
    background: #c62828;
    padding: 12px 22px;
    border-radius: 6px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}

.about-btn:hover {
    background: #a32020;
}

/* -----------------------------------------------------------
   FOOTER
----------------------------------------------------------- */

.home-footer {
    text-align: center;
    padding: 40px 20px;
    color: #888;
    font-size: 0.9rem;
}

/* -----------------------------------------------------------
   OPTIONAL: LATEST RELEASE + ALL SONGS (if you add later)
----------------------------------------------------------- */

.home-latest {
    margin-top: 60px;
}

.section-title {
    font-size: 32px;
    margin-bottom: 20px;
}

.latest-card {
    display: flex;
    gap: 30px;
    align-items: center;
}

.latest-cover {
    width: 260px;
    border-radius: 10px;
}

.latest-title {
    font-size: 26px;
    margin-bottom: 10px;
}

.latest-button {
    background: #cc0000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

.latest-button:hover {
    background: #990000;
}

.home-all-songs {
    margin-top: 60px;
    text-align: center;
}

.all-songs-button {
    background: #cc0000;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

.all-songs-button:hover {
    background: #990000;
}

/* Full Homepage Watermark (correct container) */
.inside-article {
    position: relative;
    overflow: hidden;
}

.inside-article::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 900px;
    height: 900px;
    background-image: url('https://pineandpistolmusic.com/wp-content/uploads/2026/06/Pine-and-Pistol-Music-Logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.10;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

/* Ensure homepage content sits above watermark */
.inside-article > * {
    position: relative;
    z-index: 2;
}


