/* Reset and Base Styles */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #000000;
    color: #191814; 
    font-family: 'Oswald', sans-serif;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: #191814;
    color: #DCDEDD;
}

/* ── NAVBAR ── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
    pointer-events: none;
}

.logo, .nav-links a {
    pointer-events: auto;
    text-decoration: none;
    color: #FFFFFF;
    text-shadow: 0px 1px 3px rgba(0,0,0,0.5);
    transition: opacity 0.3s;
}

.logo:hover, .nav-links a:hover {
    opacity: 0.7;
}

.logo {
    display: flex;
    align-items: center;
    line-height: 1;
    text-decoration: none;
    font-family: 'Teko', sans-serif;
    font-weight: 700;
    font-size: 26px;
    letter-spacing: 3px;
    color: #ffffff;
    text-transform: uppercase;
    /* Subtle gradient behind just the logo text for legibility over the photo */
    text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-size: 16px;
    letter-spacing: 2px;
}

/* ── PAGE WRAPPER & EDGE GLOW ── */
.page-glow-wrapper {
    background-color: #DCDEDD;
    min-height: 100vh;
    box-shadow: 
        inset 15vw 0 30vw -15vw rgba(0, 255, 255, 0.15),
        inset -15vw 0 30vw -15vw rgba(0, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
}

/* ── HERO SECTION ── */
#hero-section {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    width: 100%;
    height: 100%;
    background-image: url('hero.jpg');
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
}

/* ── MUSIC SECTION ── */
#music-section {
    padding: 100px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 2-column grid on desktop, 1-column on mobile */
.music-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    width: 100%;
    max-width: 1000px;
}

.music-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.music-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    margin-bottom: 28px;
    display: block;
    transition: transform 0.3s ease;
}

.album-link {
    display: block;
    width: 100%;
    text-decoration: none;
}

.album-link:hover img {
    transform: scale(1.02);
}

.music-item h2 {
    font-size: 28px;
    margin: 0 0 24px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-listen {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 240px;
    height: 68px;
    border-radius: 34px;
    background-color: #191814;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-listen:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(25, 24, 20, 0.3);
}

/* ── SECTION TITLES ── */
.section-title {
    font-family: 'Teko', sans-serif;
    font-size: min(20vw, 250px);
    font-weight: 700;
    line-height: 0.8;
    margin: 0 0 30px 0; /* Reduced to bring content closer */
    text-align: center;
    color: #191814;
    text-transform: uppercase;
    letter-spacing: -4px; /* Tighter for impact */
}

/* ── TOUR SECTION ── */
#tour-section {
    padding: 80px 20px 120px; /* Reduced top padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #DCDEDD; /* Light gray background */
}

.tour-container {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.tour-row {
    display: grid;
    grid-template-columns: 120px 1fr 180px;
    align-items: center;
    padding: 30px 20px; /* Added horizontal padding for hover effect */
    border-bottom: 1px solid rgba(25, 24, 20, 0.1);
    color: #191814;
    transition: background-color 0.2s, transform 0.2s;
    border-radius: 8px; /* Smooth corners for hover */
}

.tour-row:hover {
    background-color: rgba(25, 24, 20, 0.03);
}

.tour-row:last-child {
    border-bottom: none;
}

.tour-date {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    line-height: 1.1;
}

.tour-date .month {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 2px;
}

.tour-date .day {
    font-size: 36px; /* Larger date */
    font-weight: 700;
}

.tour-info {
    text-align: left;
    padding: 0 20px;
}

.tour-venue {
    font-size: 24px; /* More prominent name */
    font-weight: 700;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.tour-lineup {
    font-size: 16px; /* Easier to read */
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 2px;
    color: #191814;
    letter-spacing: 0.5px; /* Subtle premium tracking */
}

.tour-location {
    font-size: 21px; /* Increased by ~15% */
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 2px; /* Increased tracking */
}

.tour-link {
    display: flex;
    justify-content: flex-end;
}

.btn-tickets {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 150px;
    height: 48px;
    border: 2px solid #191814;
    border-radius: 24px;
    color: #191814;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    transition: background-color 0.2s, color 0.2s;
}

.btn-tickets:hover {
    background-color: #191814;
    color: #FFFFFF;
}

.follow-section {
    margin-top: 60px; /* Tighter spacing */
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    border-top: 1px solid rgba(25, 24, 20, 0.05);
}

.follow-section h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 26px; /* Larger header */
    font-weight: 400;
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #191814;
    max-width: 400px;
    line-height: 1.4;
}

.btn-follow {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 240px;
    height: 58px;
    background-color: #191814;
    color: #FFFFFF;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 3px;
    border-radius: 4px;
    transition: transform 0.2s, background-color 0.2s;
}

.btn-follow:hover {
    background-color: #333333;
    transform: translateY(-2px);
}

/* Responsive Tour Rows */
@media (max-width: 700px) {
    .tour-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 12px; /* Tighter gaps */
        padding: 30px 0; /* Less vertical bloat */
    }
    .tour-date {
        align-items: center;
    }
    .tour-info {
        padding: 0;
        text-align: center;
    }
    .tour-venue {
        font-size: 22px;
    }
    .tour-lineup {
        font-size: 15px;
    }
    .tour-location {
        font-size: 18px; /* Increased by ~15% */
    }
    .tour-link {
        justify-content: center;
    }
    .btn-tickets {
        min-width: 240px;
        height: 54px;
    }
    .follow-section {
        margin-top: 30px;
        padding: 30px 20px;
    }
    .follow-section h3 {
        font-size: 22px;
        max-width: 280px;
    }
}


/* ── FOOTER ── */
#footer {
    padding: 70px 20px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    border-top: 1px solid rgba(25, 24, 20, 0.1);
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-circle {
    width: 54px;
    height: 54px;
    background-color: #191814;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
    text-decoration: none;
    flex-shrink: 0;
}

.social-circle:hover {
    transform: scale(1.1);
    background-color: #3a3a3a;
}

.copyright {
    font-size: 12px;
    opacity: 0.6;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ── CUSTOM SONGS SECTION ── */
#custom-songs-section {
    padding: 80px 40px; /* Reduced top padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #191814;
    color: #DCDEDD;
}

#custom-songs-section .section-title {
    color: #DCDEDD;
}

.custom-songs-container {
    width: 100%;
    max-width: 900px;
}

.custom-songs-intro {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    font-size: 22px;
    line-height: 1.7;
    color: #DCDEDD;
    margin-bottom: 60px;
    text-align: center;
}

.custom-songs-pricing-label {
    font-family: 'Teko', sans-serif;
    font-size: 22px;
    letter-spacing: 4px;
    text-align: center;
    color: #DCDEDD;
    opacity: 0.6;
    margin: 0 0 40px 0;
    text-transform: uppercase;
}

.custom-songs-tiers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 0 auto 80px;
    max-width: 700px;
}

.custom-song-tier {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(220,222,221,0.2);
    border-radius: 8px;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    transition: background 0.2s;
}

.custom-song-tier:hover {
    background: rgba(255,255,255,0.12);
}

.tier-price {
    font-family: 'Teko', sans-serif;
    font-size: 52px; /* Reduced by ~20% */
    font-weight: 700;
    color: #DCDEDD;
    line-height: 1;
}

.tier-desc {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    font-size: 17px;
    color: rgba(220,222,221,0.8);
    line-height: 1.5;
    flex: 1;
}

.btn-book {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 160px;
    height: 50px;
    border-radius: 25px;
    border: 2px solid #DCDEDD;
    color: #DCDEDD;
    background: transparent;
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    transition: background 0.2s, color 0.2s;
}

.btn-book:hover {
    background: #DCDEDD;
    color: #191814;
}

.custom-songs-testimonials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.custom-songs-testimonials blockquote {
    margin: 0;
    padding: 28px;
    background: rgba(255,255,255,0.05);
    border-left: 3px solid rgba(220,222,221,0.4);
    border-radius: 0 6px 6px 0;
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(220,222,221,0.85);
    font-style: italic;
}

.custom-songs-testimonials cite {
    display: block;
    margin-top: 12px;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    color: rgba(220,222,221,0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ── CONTACT SECTION ── */
#contact-section {
    padding: 100px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #111110;
    color: #DCDEDD;
}

#contact-section .section-title {
    color: #DCDEDD;
}

.contact-container {
    width: 100%;
    max-width: 700px;
    text-align: center;
}

.contact-intro {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    font-size: 22px;
    line-height: 1.7;
    color: rgba(220,222,221,0.75);
    margin-bottom: 40px;
}

.contact-email {
    display: inline-block;
    font-family: 'Teko', sans-serif;
    font-weight: 700;
    font-size: clamp(28px, 4vw, 52px);
    color: #DCDEDD;
    text-decoration: none;
    letter-spacing: 2px;
    border-bottom: 3px solid rgba(220,222,221,0.4);
    padding-bottom: 6px;
    transition: border-color 0.2s, color 0.2s;
}

.contact-email:hover {
    color: #ffffff;
    border-color: #ffffff;
}

/* ── HOUSE SHOWS SECTION ── */
#house-shows-section {
    padding: 60px 40px; /* Reduced top padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #DCDEDD;
}

.house-shows-container {
    width: 100%;
    max-width: 820px;
}

.house-shows-intro {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    font-size: 24px;
    line-height: 1.7;
    color: #191814;
    margin-bottom: 24px;
}

.house-shows-cta {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.7;
    color: #191814;
    margin-bottom: 40px;
}

.house-shows-cta a {
    color: #d94f00;
    text-decoration: none;
    font-weight: 700;
    transition: opacity 0.2s;
}

.house-shows-cta a:hover {
    opacity: 0.75;
}

/* ── RESPONSIVE ── */

/* Mid-range: collapse pricing to 1 col before it overflows */
@media (max-width: 860px) {
    .custom-songs-tiers {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .custom-songs-testimonials {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    /* Navbar: stack to two rows on small screens */
    .navbar {
        flex-direction: column;
        align-items: center;
        gap: 14px;
        padding: 16px 15px;
        background: linear-gradient(to bottom, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 100%);
    }

    .logo {
        font-size: 24px;
        letter-spacing: 2px;
        width: auto;
        justify-content: center;
        text-align: center;
        white-space: nowrap;
        margin-bottom: 2px;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px 16px;
    }

    .nav-links a {
        font-size: 12px;
        letter-spacing: 1px;
        white-space: nowrap;
    }

    /* Extra tight for very small phones */
    @media (max-width: 480px) {
        .nav-links {
            gap: 6px 14px;
        }
        .nav-links a {
            font-size: 12px;
            letter-spacing: 0.5px;
        }
    }

    .music-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        justify-items: center;
    }

    .music-item img {
        max-width: 400px;
    }

    #house-shows-section {
        padding: 40px 24px;
    }
    
    .section-title {
        margin: 0 0 15px 0; /* Tighter on mobile */
    }

    .house-shows-intro, .house-shows-cta {
        font-size: 18px;
    }

    .contact-intro {
        font-size: 18px;
        max-width: 260px;
        margin: 0 auto 40px auto;
        line-height: 1.6;
    }

    /* Fix Zoom/Grain issue on iOS - disable fixed bg on mobile */
    /* Comparing focal points: current is right eye centered at 65% */
    .hero-bg {
        background-attachment: scroll;
        background-position: 65% top;
    }
}
