/* ----------------------------------------------------------
   Global Reset
---------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: url('images/vinyl-texture.jpg');
    background-size: cover;
    background-attachment: fixed;
    color: #111;
    line-height: 1.6;
}

/* ----------------------------------------------------------
   Navigation
---------------------------------------------------------- */
.site-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(0,0,0,0.7);
    color: #fff;
}

.site-nav__mark {
    font-size: 1.6rem;
    font-weight: bold;
}

.site-nav__links a {
    margin-left: 1rem;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.site-nav__links a:hover {
    opacity: 0.7;
}

/* ----------------------------------------------------------
   Hero Section
---------------------------------------------------------- */
.hero-modern {
    padding: 2rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

/* Posters (Option 2: contain, no cropping) */
.hero-poster-img {
    width: 100%;
    height: 340px;
    object-fit: contain;
    background: #000;
    border-radius: 24px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* Hero Info Block */
.hero-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;

    background: rgba(255, 255, 255, 0.75);
    padding: 2rem;
    border-radius: 16px;
    backdrop-filter: blur(4px);
}

.hero-title {
    font-size: 2.4rem;
    font-weight: 700;
}

.hero-tagline {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.hero-date {
    margin: 1rem 0;
}

.hero-date-label {
    font-weight: 600;
    opacity: 0.7;
}

.hero-date-value {
    font-size: 1.4rem;
    font-weight: bold;
}

.add-to-calendar-btn {
    padding: 0.5rem 1rem;
    background: transparent;
    color: #000;
    border: 1.5px solid #000;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.add-to-calendar-btn:hover {
    background: #000;
    color: #fff;
}

.calendar-buttons {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-top: 0.6rem;
}

.add-to-calendar-btn--google {
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.hero-cta {
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: #000;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}

.hero-cta:hover {
    background: #333;
}

/* ----------------------------------------------------------
   Vinyl Logo
---------------------------------------------------------- */
.vinyl-logo {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.vinyl-record {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: #000;
    position: relative;
}

.vinyl-grooves {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: repeating-radial-gradient(circle, #111, #111 2px, #000 3px);
}

.vinyl-label {
    position: absolute;
    inset: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

/* ----------------------------------------------------------
   Main Content
---------------------------------------------------------- */
.poster-main {
    padding: 2rem;
}

.poster-intro {
    background: rgba(255, 255, 255, 0.75);
    padding: 2rem;
    border-radius: 16px;
    backdrop-filter: blur(4px);
    margin-bottom: 2rem;
}

.poster-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.poster-link-card {
    flex: 1;
    min-width: 140px;
    padding: 1rem;
    background: #000;
    color: #fff;
    text-align: center;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
}

.poster-link-card:hover {
    background: #333;
}

/* ----------------------------------------------------------
   Map Section
---------------------------------------------------------- */
.map-subscribe-row {
    margin: 2rem auto;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    align-items: stretch;
    flex-wrap: wrap;
    max-width: 900px;
}

.map-wrapper {
    position: relative;
    flex: 1 1 320px;
    max-width: 420px;
}

.hero-map-frame {
    width: 100%;
    height: 260px;
    border: none;
    border-radius: 16px;
}

.map-pin {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #000;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 50%;
    font-weight: bold;
}

.subscribe-box {
    flex: 1 1 260px;
    max-width: 380px;
    background: #000;
    color: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.subscribe-heading {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.subscribe-text {
    opacity: 0.8;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.subscribe-btn {
    display: inline-block;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    padding: 0.7rem 1.5rem;
    border-radius: 10px;
    align-self: center;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.subscribe-btn:hover {
    box-shadow: 0 0 20px rgba(255, 0, 120, 0.4);
}

/* ----------------------------------------------------------
   Footer
---------------------------------------------------------- */
.sleeve__footer {
    text-align: center;
    padding: 2rem;
    background: rgba(0,0,0,0.7);
    color: #fff;
    margin-top: 2rem;
}

/* ----------------------------------------------------------
   Sleeve Layout (A–Z, Gallery, History, Contact)
---------------------------------------------------------- */
.side {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: url('images/vinyl-texture.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.side--sleeve {
    padding: 2rem 1.5rem;
}

.sleeve__content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.75);
    padding: 2rem;
    border-radius: 16px;
    backdrop-filter: blur(4px);
}

/* Typography */
.eyebrow {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.subhead {
    font-size: 1.2rem;
    opacity: 0.75;
    margin-bottom: 2rem;
}

/* Tracklist Rows */
.tracklist__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000;
    color: #fff;
    padding: 1rem 1.25rem;
    border-radius: 10px;
    margin-top: 1rem;
    text-decoration: none;
    transition: background 0.2s ease;
}

.tracklist__row:hover {
    background: #333;
}

.tracklist__num {
    font-weight: 700;
    font-size: 1.2rem;
}

.tracklist__name {
    font-weight: 600;
    font-size: 1.1rem;
}

.tracklist__arrow {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* ----------------------------------------------------------
   Gallery Grid
---------------------------------------------------------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.gallery-caption {
    display: none;
}

.gallery-loading {
    grid-column: 1 / -1;
    text-align: center;
    opacity: 0.7;
    font-family: var(--font-mono, monospace);
    font-size: 0.9rem;
    padding: 2rem 0;
}

/* ----------------------------------------------------------
   Gallery Slideshow
---------------------------------------------------------- */
.slideshow {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.92);

    display: flex;
    align-items: center;
    justify-content: center;
}

.slideshow[hidden] {
    display: none;
}

.slideshow__figure {
    max-width: 90vw;
    max-height: 88vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.slideshow__figure img {
    max-width: 90vw;
    max-height: 78vh;
    border-radius: 8px;
    box-shadow: 0 0 40px rgba(255, 0, 120, 0.35);
}

.slideshow__caption {
    display: none;
}

.slideshow__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: #eee;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.slideshow__close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.slideshow__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #eee;
    font-size: 2.2rem;
    line-height: 1;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.slideshow__nav:hover {
    background: rgba(255, 0, 120, 0.25);
    box-shadow: 0 0 20px rgba(255, 0, 120, 0.4);
}

.slideshow__nav--prev {
    left: 1.5rem;
}

.slideshow__nav--next {
    right: 1.5rem;
}

@media (max-width: 640px) {
    .slideshow__nav {
        width: 44px;
        height: 44px;
        font-size: 1.7rem;
    }
    .slideshow__nav--prev { left: 0.5rem; }
    .slideshow__nav--next { right: 0.5rem; }
    .slideshow__close { top: 0.75rem; right: 0.75rem; }
}

/* ----------------------------------------------------
   LETTER PAGE PREV/NEXT NAV
---------------------------------------------------- */

.letter-nav {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.letter-nav .tracklist__row {
    flex: 1;
    margin-top: 0;
}

.letter-nav .tracklist__row--next {
    justify-content: flex-end;
}

/* ----------------------------------------------------
   SHARE THIS PLAYLIST
---------------------------------------------------- */

.share-playlist {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.share-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 0.7rem 1.2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.share-btn:hover {
    background: #222;
    box-shadow: 0 0 20px rgba(255, 0, 120, 0.35);
}

.share-confirm {
    font-size: 0.85rem;
    opacity: 0.7;
}
