/* ============================================
   SCOTT McLEMORE — WEBSITE STYLES
   ============================================

   HOW THIS FILE IS ORGANIZED:
   1. Design Tokens (colors, fonts, sizes)
   2. Reset & Base Styles
   3. Navigation
   4. Parallax & Background System
   5. Section Layout (shared)
   6. Hero Section
   7. Music Section
   8. Live Section
   9. About Section
   10. Explore / Hub Section
   11. Footer
   12. Newsletter Landing Page
   13. Animations
   14. Mobile Styles

   ============================================ */


/* ============================================
   1. DESIGN TOKENS
   Change these to tweak the whole site at once
   ============================================ */

:root {
    /* --- COLORS --- */
    --color-black:       #0a0a0a;
    --color-dark:        #1a1a1a;
    --color-mid:         #333333;
    --color-gray:        #888888;
    --color-light:       #cccccc;
    --color-off-white:   #e8e8e8;
    --color-white:       #f5f5f5;

    /* --- WHICH COLORS GO WHERE --- */
    --bg-primary:        var(--color-black);
    --bg-section:        var(--color-dark);
    --text-primary:      var(--color-white);
    --text-secondary:    var(--color-light);
    --text-muted:        var(--color-gray);
    --accent:            var(--color-white);

    /* --- FONTS --- */
    --font-main:         'Figtree', sans-serif;

    /* --- FONT SIZES --- */
    --size-hero:         clamp(3rem, 9vw, 8rem);    /* The big name */
    --size-section:      clamp(2.5rem, 6vw, 5rem);    /* Section headings */
    --size-card-title:   1.2rem;
    --size-body:         1.1rem;
    --size-small:        0.9rem;

    /* --- SPACING --- */
    --section-padding:   8rem 2rem;
    --content-width:     1200px;
    --card-gap:          2rem;

    /* --- EFFECTS --- */
    --transition-speed:  0.3s;
}


/* ============================================
   2. RESET & BASE STYLES
   ============================================ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    font-weight: 400;
    color: var(--text-primary);
    background-color: var(--color-black);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--text-primary);
    text-decoration: none;
    transition: opacity var(--transition-speed);
}

a:hover {
    opacity: 0.7;
}


/* ============================================
   3. NAVIGATION
   ============================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 2rem;
    transition: background var(--transition-speed), 
                padding var(--transition-speed);
}

/* Nav becomes solid when you scroll down */
.nav.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
}

.nav-inner {
    max-width: var(--content-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    font-size: var(--size-small);
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* Hamburger button (hidden on desktop) */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    margin: 5px 0;
    transition: var(--transition-speed);
}


/* ============================================
   4. PARALLAX & BACKGROUND SYSTEM

   Each section has a background layer that
   scrolls slower than the content (parallax).

   Replace the CSS gradients below with your
   custom images by changing:
      background: ...gradient...
   to:
      background: url('images/gradient-1.jpg') center/cover no-repeat fixed;
   ============================================ */

.parallax-section {
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: -20%;
    left: 0;
    right: 0;
    bottom: -20%;
    z-index: 0;
    will-change: transform;
}

/* --- PLACEHOLDER GRADIENTS --- */
/* Replace these with your actual images */

.hero-bg {
    position: absolute;
    top: -20%;
    left: 0;
    right: 0;
    bottom: -20%;
    z-index: 0;
    will-change: transform;
    background:url('images/smWebBkgd1.jpg') center no-repeat;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: 50% center; /* adjust horizontally */
}

.music-bg {
    background: linear-gradient(
        200deg,
        #181818 0%,
        #252525 40%,
        #1c1c1c 70%,
        #202020 100%
    );
}

.live-bg {
    background:url('images/smWebBkgd2.jpg') center no-repeat;
}

.about-bg {
    background: linear-gradient(
        180deg,
        #121212 0%,
        #1e1e1e 50%,
        #161616 100%
    );
}

.explore-bg {
    background:url('images/smWebBkgd3.jpg') center no-repeat;
}

.newsletter-bg {
    background: linear-gradient(
        165deg,
        #141414 0%,
        #222222 40%,
        #1a1a1a 70%,
        #1e1e1e 100%
    );
}


/* ============================================
   5. SECTION LAYOUT (shared)
   ============================================ */

.section-content {
    position: relative;
    z-index: 1;
    max-width: var(--content-width);
    margin: 0 auto;
    padding: var(--section-padding);
}

.section-title {
    font-size: var(--size-section);
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 3rem;
}


/* ============================================
   6. HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: left;
    max-width: var(--content-width);
    margin: 0 auto;

    /* REMOVE or override any padding from before */
    padding: 0;

    /* Pull the hero content left relative to the global padding */
    transform: translateX(-12rem);
}


.hero-title {
    font-size: var(--size-hero);
    font-weight: 300;
    line-height: 0.95;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-tagline {
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 400;
    color: var(--color-white);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding-left: 1rem;
}
.hero-text {
    text-align: left;
    margin-bottom: 0rem;  /* Adjust this value */
}

/* ============================================
   7. MUSIC SECTION
   ============================================ */

.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--card-gap);
    margin-bottom: 3rem;
}

.album-card {
    text-align: center;
}

.album-art {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    margin-bottom: 1rem;
    background: var(--color-mid);
}

.album-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.album-card:hover .album-art img {
    transform: scale(1.05);
}

.album-title {
    font-size: var(--size-card-title);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.album-year {
    font-size: var(--size-small);
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.album-link {
    font-size: var(--size-small);
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid var(--text-primary);
    font-size: var(--size-small);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: background var(--transition-speed), 
                color var(--transition-speed);
}

.cta-button:hover {
    background: var(--text-primary);
    color: var(--color-black);
    opacity: 1;
}


/* ============================================
   8. LIVE SECTION
   ============================================ */

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--card-gap);
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    background: var(--color-mid);
    margin-bottom: 1rem;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-title {
    font-size: var(--size-card-title);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.video-info {
    font-size: var(--size-small);
    color: var(--text-muted);
    font-style: italic;
}
.bandsintown {
	padding-top: 2rem;
}


/* ============================================
   9. ABOUT SECTION
   ============================================ */

.about-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}
.about-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.photo-placeholder {
    width: 100%;
    aspect-ratio: 4 / 5;
    background: var(--color-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: var(--size-small);
    text-align: center;
    border: 1px dashed var(--color-gray);
}

.about-lead {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 300;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.about-text p {
    font-size: var(--size-body);
    color: var(--text-secondary);
    margin-bottom: 1rem;
}


/* ============================================
   10. EXPLORE / HUB SECTION
   ============================================ */

.hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--card-gap);
}

.hub-card {
    display: block;
    padding: 2.5rem 2rem;
    /*border: 1px solid var(--color-mid); */

    /* Dark transparent background */
    background: rgba(0, 0, 0, 0.35);

    transition: border-color var(--transition-speed),
                background var(--transition-speed);
}


.hub-card:hover {
    border-color: var(--text-primary);
    background: rgba(0, 0, 0, 0.30);
    opacity: 1;
}


.hub-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.hub-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hub-card-desc {
    font-size: var(--size-small);
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.hub-card-link {
    font-size: var(--size-small);
    font-weight: 500;
    color: var(--text-secondary);
}


/* ============================================
   11. FOOTER
   ============================================ */

.footer {
    background: var(--color-black);
    border-top: 1px solid var(--color-mid);
}

.footer .section-content {
    text-align: center;
    padding: 5rem 2rem;
}

.footer-text {
    font-size: var(--size-body);
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: var(--size-small);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--text-muted);
}


/* ============================================
   12. NEWSLETTER LANDING PAGE
   ============================================ */

.newsletter-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.newsletter-bg {
    background: url('images/smWebBkgd2.jpg')
               center/cover no-repeat fixed;
}
.newsletter-logo {
    max-width: 600px;   /* adjust as needed */
    height: auto;
    margin-bottom: 1.5rem;
}


.newsletter-content {
    position: relative;
    z-index: 1;
    max-width: 650px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}

.newsletter-back {
    display: inline-block;
    font-size: var(--size-small);
    color: var(--text-muted);
    letter-spacing: 0.1em;
    margin-bottom: 3rem;
}

.newsletter-title {
    font-size: clamp(3.5rem, 10vw, 8rem);
    font-weight: 300;
    line-height: 0.95;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.newsletter-tagline {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-primary);
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    font-weight: 600;
}
.newsletter-signup-card {
    background: rgba(0, 0, 0, 0.35);   /* same feel as other cards */
    border: 0px solid var(--color-mid);
    padding: 2rem 2.5rem;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}


.newsletter-pitch {
    margin-bottom: 2.5rem;
}

.newsletter-pitch p {
    font-size: var(--size-body);
    color: var(--text-primary);
    line-height: 1.7;
}

.newsletter-form {
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    gap: 0;
    max-width: 450px;
    margin: 0 auto;
}

.form-input {
    flex: 1;
    padding: 1rem 1.2rem;
    font-family: var(--font-main);
    font-size: 1rem;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--color-mid);
    border-right: none;
    outline: none;
    transition: border-color var(--transition-speed);
}

.form-input::placeholder {
    color: var(--text-primary);
}

.form-input:focus {
    border-color: var(--text-primary);
}

.form-button {
    padding: 1rem 2rem;
    font-family: var(--font-main);
    font-size: var(--size-small);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-black);
    background: var(--text-primary);
    border: 1px solid var(--text-primary);
    cursor: pointer;
    transition: background var(--transition-speed), 
                color var(--transition-speed);
}

.form-button:hover {
    background: transparent;
    color: var(--text-primary);
}

.newsletter-note {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.newsletter-archive {
    margin-top: 4rem;
    text-align: left;
}

.newsletter-archive-title {
    font-size: 0.9rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.newsletter-archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

/* Card with dark transparent background */
.newsletter-issue {
    background: rgba(0, 0, 0, 0.35);  /* adjust opacity to taste */
    padding: 1.5rem;
    border: 0px solid var(--color-mid);
}

/* Portrait header image */
.newsletter-issue-image {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
    display: block;
}

.newsletter-issue-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.newsletter-issue-excerpt {
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.newsletter-issue-link {
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-secondary);
}


/* ============================================
   13. ANIMATIONS
   Fade-in on scroll + parallax
   ============================================ */

/* Elements start invisible, JS adds .visible */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ============================================
   14. MOBILE STYLES
   ============================================ */
@media (max-width: 1024px) {
    :root {
        --section-padding: 6rem 2rem;
    }

    .hero-title {
        font-size: clamp(3rem, 8vw, 4.5rem);
    }

    .about-layout {
        grid-template-columns: 1.2fr 1.8fr;
    }
}

/* Tablet and below */
@media (max-width: 768px) {
	.hero-bg {
        background-position: 60% center !important; /* or whatever you want */
    }
    :root {
        --section-padding: 5rem 1.5rem;
    }

    /* Show hamburger, hide links */
    .nav-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        padding: 2rem;
        gap: 1.5rem;
        text-align: center;
    }

    .nav-links.open {
        display: flex;
    }
    .hero-content {
        max-width: var(--content-width);
        margin: 0 auto;
        padding: 4rem 1.5rem;    /* comfortable side padding */
        transform: translateX(-6rem); /* reset the left shift on tablets/phones */


    /* Smaller hero text */
    .hero-title {
        font-size: clamp(3rem, 15vw, 5rem);
    }

    /* Stack albums in 2 columns */
    .albums-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Stack videos */
    .videos-grid {
        grid-template-columns: 1fr;
    }

    /* Stack about layout */
    .about-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-photo {
        max-width: 300px;
    }

    /* Stack hub cards in 2 columns */
    .hub-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Newsletter form stacks */
    .form-group {
        flex-direction: column;
    }

    .form-input {
        border-right: 1px solid var(--color-mid);
        border-bottom: none;
    }
}

/* Small phones */
@media (max-width: 480px) {
	.hero-bg {
        background-position: 60% center !important; /* or whatever you want */
    }
    .about-layout {
        grid-template-columns: 1fr; /* one column */
        gap: 1.5rem;               /* a bit tighter spacing if you like */
    }

    .about-photo {
        max-width: 100%;           /* let the photo use full width */
        margin: 0 auto;            /* center it */
    }
    .hero-content {
        max-width: var(--content-width);
        margin: 0 auto;
        padding: 4rem 1.5rem;    /* comfortable side padding */
        transform: translateX(-0.5rem); /* reset the left shift on tablets/phones */


    /* Smaller hero text */
    .hero-title {
        font-size: clamp(2rem, 12vw, 4rem);
    }
    .albums-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .hub-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}
