:root {
    --rr-orange: #FF5A00;
    --rr-teal: #49B8BE;
    --rr-bg: #000;
    --rr-text: #fff;
    --rr-muted: #bbb;
}

/* Layout */
.reverb-page {
    margin: 0;
    min-height: 100vh;
    background: var(--rr-bg);
    color: var(--rr-text);
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
    overflow-x: hidden;
}

.reverb-page-wrap {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.home-button-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Headings */
/* Headings */
.reverb-page-title {
    color: white;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    letter-spacing: 6px;
    margin: 0 auto 40px;
    text-align: center;
    width: 100%;
}

.reverb-title,
.reverb-card-title {
    color: var(--rr-orange);
    font-weight: bold;
    letter-spacing: 3px;
}

.reverb-title {
    font-size: 1rem;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.reverb-card-title {
    font-size: 1.1rem;
    margin-bottom: 14px;
}

.reverb-item-title {
    color: white;
    font-size: 1.4rem;
    margin: 0 0 14px;
}

.rr-orange {
    color: var(--rr-orange);
}

/* Reverberations content */
.reverb-panel {
    margin-top: 28px;
    text-align: center;
}

.reverb-feed {
    margin-bottom: 40px;
}

.reverb-card {
    background: #111;
    border: 1px solid #222;
    border-radius: 24px;
    padding: 28px;
    margin-bottom: 30px;
}

.reverb-content {
    color: var(--rr-muted);
    font-size: 0.95rem;
    max-width: 320px;
    line-height: 1.5;
    margin: 0 auto 18px;
}

.reverb-card-body {
    color: var(--rr-muted);
    line-height: 1.7;
}

/* Buttons and links */
.reverb-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 260px;
    background: var(--rr-orange);
    color: white;
    text-decoration: none;
    padding: 16px 34px;
    border-radius: 999px;
    font-weight: bold;
    letter-spacing: 2px;
    text-align: center;
    box-sizing: border-box;
    transition: transform 0.2s ease, opacity 0.2s ease;
    margin: 40px auto 0;
}

    .reverb-btn:hover {
        transform: scale(1.05);
        opacity: 0.9;
    }

.reverb-link {
    display: inline-block;
    margin-top: 18px;
    color: var(--rr-orange);
    text-decoration: none;
    font-weight: bold;
}

    .reverb-link:hover {
        opacity: 0.8;
    }

/* Forms */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.rr-input {
    background: #181818;
    border: 1px solid #333;
    border-radius: 14px;
    padding: 14px 16px;
    color: white;
    font-size: 1rem;
    font-family: inherit;
    box-sizing: border-box;
    width: 100%;
}

    .rr-input:focus {
        outline: none;
        border-color: var(--rr-orange);
    }

/* Gigs */
.gig-event {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 18px;
    align-items: start;
}

.gig-date-block {
    width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 18px;
}

.gig-day {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: -2px;
    line-height: 1;
}

.gig-number {
    font-size: 72px;
    font-weight: 800;
    color: var(--rr-orange);
    line-height: 0.9;
    margin-bottom: -4px;
}

.gig-month {
    font-size: 18px;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-top: 8px;
}

.gig-details {
    padding-top: 12px;
    padding-left: 28px;
    text-align: left;
}

.gig-venue-title {
    color: var(--rr-orange);
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    border-bottom: 3px solid var(--rr-orange);
    padding-bottom: 10px;
    margin-bottom: 12px;
}

.gig-time-text {
    color: white;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 4px;
}

.gig-link a {
    color: var(--rr-teal);
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
}

    .gig-link a:hover {
        opacity: 0.8;
    }
.reverb-section-card {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 24px;
    align-items: center;
    background: #111;
    border: 1px solid #222;
    border-radius: 28px;
    padding: 28px;
    margin-bottom: 28px;
    text-align: left;
}

.reverb-section-icon {
    width: 72px;
    height: 72px;
    border: 3px solid var(--rr-orange);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.reverb-section-label {
    color: var(--rr-orange);
    font-weight: bold;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.reverb-action-btn {
    display: inline-block;
    margin-top: 16px;
    background: var(--rr-orange);
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 999px;
    padding: 14px 28px;
    font-weight: bold;
    letter-spacing: 2px;
    cursor: pointer;
}

.photo-album {
    margin-top: 20px;
    display: flex;
    gap: 14px;
    overflow-x: auto;
}

    .photo-album img {
        height: 180px;
        border-radius: 18px;
    }


.feature-row {
    display: grid;
    grid-template-columns: 220px 500px;
    gap: 24px;
    justify-content: center;
    margin-bottom: 40px;
}



.feature-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--rr-teal);
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid rgba(73,184,190,0.4);
    border-radius: 12px;
    padding: 20px;
}

    .feature-link:hover {
        border-color: var(--rr-teal);
    }

.feature-preview {
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    height: 180px;
    background: #000;
}

.feature-preview-link {
    display: block;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.feature-preview-link:hover,
.feature-preview-link:focus-visible {
    border-color: var(--rr-orange);
}

    .feature-preview img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        animation: albumFade 2s infinite;
    }

.feature-preview .feature-photo {
    object-fit: contain;
}

.feature-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 10px;
    background: #000;
}

.feature-video-error {
    padding: 24px;
    color: white;
    text-align: center;
}

.feature-video-error a,
.music-player-error a {
    color: var(--rr-teal);
}

@media (max-width: 800px) {

    .feature-row {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .feature-link {
        margin-bottom: 12px;
    }

    .feature-preview {
        height: auto;
        min-height: 140px;
    }

    .feature-video {
        width: 100%;
    }
    .reverb-page-title {
        font-size: 2.2rem;
        letter-spacing: 3px;
    }
}

@keyframes albumFade {
    0% {
        opacity: 0.85;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        opacity: 0.85;
    }
}
.music-file-row {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #333;
}

.music-file-title {
    color: white;
    font-weight: bold;
    margin-bottom: 10px;
}

.music-player {
    width: 100%;
    max-width: 700px;
    max-height: 400px;
    display: block;
    margin: 20px auto;
    border-radius: 12px;
}
.music-video-wrap {
    text-align: center;
}

.music-player-error {
    margin: 0 auto 20px;
    color: white;
    text-align: center;
}
.music-track-list {
    margin-top: 22px;
}

.music-track {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    text-decoration: none;
    color: var(--rr-teal);
}

    .music-track:hover {
        background: #202020;
        transform: translateY(-1px);
    }

.music-track-icon {
    width: 42px;
    font-size: 1.8rem;
    text-align: center;
    flex-shrink: 0;
}

.music-track-name {
    font-size: 1.05rem;
    font-weight: 700;
    text-align: left;
    color: inherit;
}
.music-track-list {
    margin-top: 20px;
}

.music-track-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
}
.music-track:visited {
    color: var(--rr-teal);
}

.music-track:hover {
    color: var(--rr-teal);
}
.photo-album-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 16px 18px;
    color: var(--rr-teal);
    cursor: pointer;
    text-align: left;
}

.photo-album-icon {
    font-size: 1.7rem;
    color: var(--rr-orange);
    flex-shrink: 0;
}

.photo-album-title {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.photo-album-count {
    color: var(--rr-muted);
    font-size: 0.9rem;
}

.photo-reel {
    margin-top: 18px;
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 6px 2px 12px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
}

.photo-reel-item {
    flex: 0 0 auto;
    display: block;
    padding: 0;
    background: none;
    border: 0;
    cursor: zoom-in;
    scroll-snap-align: start;
}

    .photo-reel-item img {
        height: 220px;
        width: auto;
        max-width: 320px;
        object-fit: cover;
        border-radius: 14px;
        border: 1px solid rgba(255,255,255,0.12);
    }

.photo-swipe-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--rr-orange);
    font-weight: 800;
    line-height: 1;
    text-align: center;
}

.photo-swipe-arrow {
    font-size: 2rem;
}

.photo-swipe-label {
    margin-top: 3px;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.photo-modal[hidden] {
    display: none;
}

.photo-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: 24px;
}

.photo-modal-backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    background: rgba(0,0,0,0.88);
    border: 0;
    cursor: zoom-out;
}

.photo-modal-content {
    position: relative;
    z-index: 1;
    max-width: min(1100px, 94vw);
    max-height: 92vh;
}

.photo-modal-content img {
    display: block;
    max-width: 100%;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 14px;
    box-shadow: 0 16px 50px rgba(0,0,0,0.65);
}

.photo-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    width: 44px;
    height: 44px;
    padding: 0;
    color: white;
    background: var(--rr-orange);
    border: 0;
    border-radius: 50%;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

body.modal-open {
    overflow: hidden;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
