/*
Theme Name: Full Circle Boys
Theme URI: https://fullcircleboys.co
Author: Full Circle Boys, LLC
Author URI: https://fullcircleboys.co
Description: Custom WordPress theme for Full Circle Boys music group — dark theme with orange/red accents, responsive design, and editable content via custom post types.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fullcircleboys
Tags: dark, music, band, custom-post-types, responsive
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
*/

/* CSS Variables */
:root {
    --bg-dark: #0A0A0A;
    --bg-card: #2A2A2A;
    --bg-card-light: #333333;
    --accent-orange: #FF6B35;
    --accent-red: #DC2626;
    --text-white: #FFFFFF;
    --text-light: #E5E5E5;
    --text-muted: #999999;
    --font-gotham: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* Gotham Font Family - Using Inter from Google Fonts (similar geometric style) */
/* Inter loads immediately from Google Fonts CDN - works on all devices */
/* If you have actual Gotham font files, uncomment the @font-face rules below */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-gotham);
    font-weight: 400;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Headings - Gotham */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-gotham);
    font-weight: 700;
}

h2, h3, h4, h5, h6 {
    font-weight: 600;
}

/* Heading-like elements - Gotham */
.hero-title,
.section-title,
.album-title,
.tour-venue,
.product-name,
.benefit-card h3,
.content-info h3,
.cta-copy h3,
.community-content-fanclub h2,
.fanclub-hero h1,
.events-hero h1,
.banner-content h2,
.video-title,
.merch-name,
.tour-date,
.tour-city,
.album-artist,
.footer-logo,
.logo,
.logo-text {
    font-family: var(--font-gotham);
}

/* Body text elements - Gotham */
p,
.hero-subtitle,
.hero-date,
.join-description,
.benefit-card p,
.content-info p,
.community-content-fanclub p,
.form-note,
.tour-location,
.tour-support,
.email-input,
.footer-text,
.copyright {
    font-family: var(--font-gotham);
    font-weight: 400;
}

/* Container Classes - Boxed Content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

/* Mobile container padding adjustment */
@media (max-width: 767px) {
    .container,
    .container-narrow,
    .container-wide {
        padding: 0 1rem;
    }
}

/* Header */
.header {
    position: sticky;
    top: 0;
    background-color: var(--bg-dark);
    z-index: 1000;
    height: 100px;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
    overflow: hidden;
}

.logo a {
    display: flex;
    align-items: center;
    height: 100%;
    text-decoration: none;
    transition: opacity 0.3s ease;
    overflow: hidden;
}

.logo a:hover {
    opacity: 0.8;
}

.logo-image {
    height: 200px;
    width: auto;
    max-width: 400px;
    object-fit: cover;
    object-position: center 50%;
    display: block;
    margin-top: -65px;
    margin-bottom: -65px;
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 1.25rem;
}

.desktop-nav .nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.desktop-nav .nav-link:hover {
    color: var(--accent-orange);
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 4px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text-white);
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.mobile-menu.active {
    display: flex;
}

.menu-link {
    padding: 1rem;
    color: var(--text-white);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.menu-link:last-child {
    border-bottom: none;
}

.menu-link:hover {
    color: var(--accent-orange);
    padding-left: 1.5rem;
}

/* Hero Section */
.hero {
    padding: 2rem 0;
    text-align: center;
    background: var(--bg-dark);
}

.hero-content {
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-date {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
}

.hero-image-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.hero-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-overlay:hover {
    background-color: rgba(0, 0, 0, 0.7);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-icon {
    width: 32px;
    height: 32px;
}

.carousel-indicator {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    color: var(--text-white);
}

/* Promotional Banner */
.promo-banner {
    background-color: var(--accent-orange);
    padding: 2rem 0;
    text-align: center;
    margin: 2rem 0;
}

.banner-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-white);
}

/* Band Photo Section */
.band-photo {
    padding: 2rem 0;
    background: var(--bg-dark);
}

.band-image {
    width: 100%;
    max-width: 600px;
    height: 400px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 8px;
}

/* Join Tribe Section */
.join-tribe {
    padding: 3rem 0;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.02);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.email-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.email-input {
    padding: 1rem;
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--text-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.email-input:focus {
    outline: none;
    border-color: var(--accent-orange);
    background-color: var(--bg-card-light);
}

.email-input::placeholder {
    color: var(--text-muted);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-primary {
    background-color: var(--accent-red);
    color: var(--text-white);
}

.btn-primary:hover {
    background-color: #B91C1C;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

.btn-secondary {
    background-color: var(--bg-card);
    color: var(--text-white);
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
}

.btn-secondary:hover {
    background-color: var(--bg-card-light);
    transform: translateY(-2px);
}

.btn-spotify {
    background-color: #1DB954;
    color: var(--text-white);
}

.btn-spotify:hover {
    background-color: #1aa34a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(29, 185, 84, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
    margin-top: 2rem;
}

.btn-outline:hover {
    background-color: var(--text-white);
    color: var(--bg-dark);
}

/* Tours Section */
.tours {
    padding: 3rem 0;
    background: var(--bg-dark);
}

.tour-dates {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.tour-card {
    background-color: var(--bg-card);
    padding: 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.tour-card:hover {
    background-color: var(--bg-card-light);
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.tour-date {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.tour-venue {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.tour-location {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.tour-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Music Play Section */
.music-play {
    padding: 3rem 0;
    text-align: center;
    background: var(--bg-dark);
}

.album-card {
    background-color: var(--bg-card);
    padding: 1.5rem;
    border-radius: 8px;
    max-width: 400px;
    margin: 0 auto 2rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.album-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
    flex-shrink: 0;
}

.album-info {
    flex: 1;
    text-align: left;
}

.album-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.album-artist {
    font-size: 0.875rem;
    color: var(--text-light);
}

.play-button {
    width: 48px;
    height: 48px;
    background-color: var(--accent-red);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.play-button:hover {
    background-color: #B91C1C;
    transform: scale(1.1);
}

.play-button svg {
    width: 24px;
    height: 24px;
}

/* Merchandise Section */
.merchandise {
    padding: 3rem 0;
    background: var(--bg-dark);
}

.merch-carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
}

.merch-carousel::-webkit-scrollbar {
    height: 8px;
}

.merch-carousel::-webkit-scrollbar-track {
    background: var(--bg-card);
    border-radius: 4px;
}

.merch-carousel::-webkit-scrollbar-thumb {
    background: var(--accent-orange);
    border-radius: 4px;
}

.merch-item {
    min-width: 280px;
    scroll-snap-align: start;
    background-color: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.merch-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.merch-image {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
}

.merch-image-1 {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
}

.merch-image-2 {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.merch-image-3 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.merch-info {
    padding: 1.5rem;
}

.merch-name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.merch-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

/* Videos Section */
.videos {
    padding: 3rem 0;
    background: var(--bg-dark);
}

.videos-section {
    padding: 3rem 0;
    background: var(--bg-dark);
}

.videos-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.videos-section-header .section-title {
    margin-bottom: 0;
}

.videos-section-header .view-all {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.videos-section-header .view-all:hover {
    color: var(--accent-orange);
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.video-item {
    background-color: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.video-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

a.video-item {
    text-decoration: none;
    color: inherit;
    display: block;
}

.video-thumbnail {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    position: relative;
    cursor: pointer;
}

.video-thumbnail-2 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.video-title {
    padding: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
    text-align: center;
}

/* Community Section */
.community {
    padding: 3rem 0;
    text-align: center;
    background: var(--bg-dark);
}

.community-image-container {
    position: relative;
    max-width: 400px;
    margin: 0 auto 2rem;
}

.community-image {
    width: 100%;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    margin: 0 auto;
}

.community-overlay-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.community-cards {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    position: relative;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.community-card {
    width: 200px;
    height: 200px;
    border-radius: 8px;
    position: relative;
}

.community-card-1 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    z-index: 1;
}

.community-card-2 {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #FF8C42 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -50px;
    z-index: 2;
}

.community-card-2 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-white);
}

/* Footer */
.footer {
    background-color: var(--bg-card);
    padding: 3rem 1rem 2rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo-image {
    height: 160px;
    width: auto;
    max-width: 350px;
    object-fit: cover;
    object-position: center 50%;
    display: block;
    margin-top: -50px;
    margin-bottom: -50px;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-orange);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: var(--bg-card-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--accent-orange);
    transform: translateY(-2px);
}

.social-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
    flex-shrink: 0;
}

.footer-text {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 0.875rem;
}

.footer-links {
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.footer-link {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-orange);
}

.separator {
    color: var(--text-muted);
    margin: 0 0.5rem;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.75rem;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 767px) {
    .header {
        height: 80px;
        padding: 0.75rem 1rem;
    }

    body {
        overflow-x: hidden;
    }
    
    .mobile-menu {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
    }
    
    .logo-image {
        height: 160px;
        max-width: 300px;
        margin-top: -50px;
        margin-bottom: -50px;
    }
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
    .desktop-nav {
        display: flex;
    }

    .menu-toggle {
        display: none;
    }

    .mobile-menu {
        display: none !important;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-image {
        height: 500px;
    }

    .banner-content h2 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .email-form {
        flex-direction: row;
        max-width: 500px;
    }

    .email-input {
        flex: 1;
    }

    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tour-dates {
        max-width: 800px;
        margin: 0 auto 2rem;
    }

    .footer-nav {
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 4rem 2rem;
    }

    .hero-title {
        font-size: 4.5rem;
    }

    .section-title {
        font-size: 3rem;
    }

    .tours,
    .merchandise,
    .videos,
    .community {
        padding: 4rem 2rem;
    }

    .merch-carousel {
        justify-content: center;
    }

    .merch-item {
        min-width: 320px;
    }
}

/* Merch Page Styles */
.merch-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.64) 100%),
                url('images/final-2.jpg') center/cover no-repeat;
    overflow: hidden;
}

.merch-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.merch-hero-content {
    position: relative;
    max-width: 640px;
    color: var(--text-white);
    text-align: center;
    margin: 0 auto;
}

.merch-hero .eyebrow {
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-bottom: 0.5rem;
}

.merch-hero h1 {
    font-size: clamp(1.75rem, 3vw, 2.6rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.merch-section {
    padding: 3rem 0;
    background: var(--bg-dark);
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.section-header h2 {
    font-size: 1.4rem;
    letter-spacing: 0.08em;
}

.section-header.with-arrows {
    align-items: center;
}

.view-all {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}
.view-all:hover {
    color: var(--accent-orange);
}

.carousel-arrows {
    display: flex;
    gap: 0.5rem;
}

.arrow-btn {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: var(--text-white);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.arrow-btn:hover {
    border-color: var(--accent-orange);
}

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

.product-card {
    background: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

a.product-card-link {
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

a.product-card-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.45);
}

.product-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    background: linear-gradient(135deg, #444, #222);
    background-size: cover;
    background-position: center;
}

.product-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-name {
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.2;
}

.product-price {
    color: var(--accent-orange);
    font-weight: 700;
}

.product-actions {
    margin-top: auto;
}

.poster-card .product-image {
    aspect-ratio: 3 / 4;
}

.carousel-track {
    display: grid;
    gap: 1rem;
    grid-auto-flow: column;
    grid-auto-columns: minmax(200px, 240px);
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scroll-snap-type: x mandatory;
}

.carousel-track > .product-card {
    scroll-snap-align: start;
}

.life-strip {
    background: var(--accent-orange);
    color: var(--text-white);
    padding: 2.5rem 0;
    text-align: center;
}

.life-strip h2 {
    margin-bottom: 1.5rem;
    letter-spacing: 0.08em;
}

.life-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.life-item {
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

.community-cta {
    position: relative;
    min-height: 360px;
    display: grid;
    align-items: center;
    padding: 3rem 0;
    overflow: hidden;
}

.community-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.75) 100%), url('images/community-hero.jpg') center/cover no-repeat;
    z-index: 0;
}

.community-copy {
    position: relative;
    z-index: 1;
    max-width: 640px;
    color: var(--text-white);
    display: grid;
    gap: 0.75rem;
}

.community-copy .eyebrow {
    font-weight: 700;
    letter-spacing: 0.12em;
}

.community-copy h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: 1.2;
}

.community-copy .subhead {
    color: var(--text-light);
}

/* Music Page - Release cards */
.release-meta {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.release-tracks {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    letter-spacing: 0.04em;
}

.release-card .product-image {
    position: relative;
    aspect-ratio: 1;
}

.release-card--featured {
    max-width: 720px;
    margin: 0 auto;
}

.release-featured-content {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
    padding: 1.5rem;
}

@media (min-width: 640px) {
    .release-featured-content {
        grid-template-columns: 280px 1fr;
        align-items: center;
    }
}

.release-artwork {
    aspect-ratio: 1;
    max-width: 280px;
    border-radius: 8px;
}

.streaming-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.streaming-links .btn-outline {
    margin-top: 0;
}

@media (min-width: 768px) {
    .merch-hero {
        min-height: 520px;
        padding: 4rem 0;
    }

    .merch-section {
        padding: 4rem 0;
    }

    .life-strip {
        padding: 3rem 0;
    }

    .community-cta {
        padding: 4rem 0;
    }
}

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }

    .carousel-track {
        grid-auto-columns: minmax(240px, 280px);
    }
}

/* Events Page Styles */

/* Events Hero */
.events-hero {
    position: relative;
    min-height: 480px;
    padding: 3.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    overflow: hidden;
}

/* Music page hero - band image background with dark overlay */
.music-hero {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.64) 100%),
                url('images/623A0497.jpg') no-repeat;
    background-size: cover;
    background-position: center 25%;
}

/* Events page hero - tour/performance image background */
.events-page-hero {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.64) 100%),
                url('images/623A0414.jpg') no-repeat;
    background-size: cover;
    background-position: center 25%;
}

/* Contact page hero - group photo background */
.contact-page-hero {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.64) 100%),
                url('images/contact-photo.jpg') no-repeat;
    background-size: cover;
    background-position: center 25%;
}

/* Legal pages (Privacy, Terms) - minimal hero, no image */
.legal-page-hero {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, var(--bg-dark) 100%);
}

.legal-section {
    padding: 2rem 0 4rem;
}

.legal-content {
    color: var(--text-light);
}

.legal-content h2 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--text-white);
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content p {
    margin-bottom: 1rem;
}

.legal-content p:last-child {
    margin-bottom: 0;
}

.legal-content a {
    color: var(--accent-orange);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.events-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.41) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.events-hero-content {
    position: relative;
    max-width: 800px;
    color: var(--text-white);
    z-index: 1;
    width: 100%;
    text-align: center;
    margin: 0 auto;
}

.events-hero .eyebrow {
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-bottom: 0.5rem;
    color: var(--accent-orange);
}

.events-hero h1 {
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    line-height: 1.2;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.events-hero .hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-light);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 0 auto;
}

.hero-cta {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}


/* Events Section */
.events-section {
    padding: 3rem 0;
    background: var(--bg-dark);
}

.events-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.events-section .section-header h2 {
    font-size: 1.4rem;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.sort-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.sort-btn {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: var(--text-white);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1.2rem;
}

.sort-btn:hover {
    border-color: var(--accent-orange);
    background-color: rgba(255, 107, 53, 0.1);
}

/* Ovation Event Cards */
.ovation-cards-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .ovation-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .ovation-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.ovation-card {
    position: relative;
    display: block;
    border-radius: 10px;
    overflow: hidden;
    min-height: 320px;
    text-decoration: none;
    color: var(--text-white);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
    transition: all 0.3s ease;
}

.ovation-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.45);
}

.ovation-card-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.ovation-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.75) 100%);
}

.ovation-card-logo {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    height: 48px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
}

.ovation-card-content {
    position: relative;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 320px;
    gap: 0.5rem;
}

.ovation-card-date {
    font-weight: 700;
    color: var(--accent-orange);
    font-size: 1rem;
    letter-spacing: 0.08em;
}

.ovation-card-city {
    font-weight: 600;
    font-size: 1.1rem;
}

.ovation-card-btn {
    align-self: flex-start;
    margin-top: 0.5rem;
    pointer-events: none;
}

.events-section .section-header .view-all {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.events-section .section-header .view-all:hover {
    color: var(--accent-orange);
}

/* Tour Cards for Events Page */
.tour-list {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tour-card-events {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    background: radial-gradient(120% 120% at 85% 40%, rgba(255, 107, 53, 0.12), rgba(0, 0, 0, 0.7));
    border-radius: 10px;
    padding: 1.25rem;
    position: relative;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
    transition: all 0.3s ease;
}

.tour-card-events:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}

.tour-left .tour-date {
    color: var(--accent-orange);
    font-weight: 700;
    margin-bottom: 0.25rem;
    letter-spacing: 0.05em;
    font-size: 0.95rem;
}

.tour-left .tour-venue {
    font-weight: 800;
    letter-spacing: 0.03em;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.tour-support {
    color: var(--text-light);
    font-size: 0.9rem;
}

.tour-mid {
    margin-top: 0.5rem;
}

.tour-mid .tour-city {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.tour-mid .tour-location {
    color: var(--text-light);
    font-size: 0.9rem;
}

.tour-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: flex-start;
    margin-top: 0.5rem;
}

.tour-thumb {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: linear-gradient(135deg, #444, #222);
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.thumb-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.thumb-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.thumb-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.thumb-4 {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.tour-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Load More */
.load-more {
    text-align: center;
    color: var(--text-light);
    display: grid;
    gap: 0.5rem;
    margin-top: 2rem;
}

.load-more p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

/* Mid-page CTA */
.events-cta {
    padding: 3rem 0;
    display: grid;
    justify-content: center;
    background: var(--bg-dark);
}

.cta-circle {
    position: relative;
    width: min(480px, 90vw);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    display: grid;
    place-items: center;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45);
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    filter: saturate(1.05);
}

.cta-copy {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--text-white);
    padding: 1.5rem;
    display: grid;
    gap: 1rem;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
}

.cta-copy h3 {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* Videos Section for Events */
.videos-block {
    padding: 0 0 4rem 0;
    background: var(--bg-dark);
}

.videos-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.videos-header .view-all {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.videos-header .view-all:hover {
    color: var(--accent-orange);
}

.videos-grid-events {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

.video-card {
    background: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}

.video-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #555, #222);
    background-size: cover;
    background-position: center;
}

.video-title {
    padding: 0.85rem 1rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.video-large {
    height: 100%;
}

.video-stack {
    display: grid;
    gap: 1rem;
}

.video-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.video-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.video-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

/* Active nav link */
.desktop-nav .nav-link.active {
    color: var(--accent-orange);
}

/* Responsive for Events Page */
@media (min-width: 768px) {
    .events-hero {
        min-height: 520px;
        padding: 4rem 0;
    }

    .tour-card-events {
        grid-template-columns: 1.2fr 1fr auto;
        align-items: center;
    }

    .tour-right {
        justify-content: flex-end;
    }

    .events-section {
        padding: 4rem 0;
    }

    .events-cta {
        padding: 4rem 0;
    }

    .videos-grid-events {
        grid-template-columns: 2fr 1.1fr;
    }
}

@media (min-width: 1024px) {
    .events-hero {
        padding: 5rem 0;
    }

    .desktop-nav {
        display: flex;
    }
}

/* Hero Page Styles */
.hero-page {
    overflow-x: hidden;
    position: relative;
}

/* Hero content area - full viewport height to push footer down */
.hero-content-area {
    position: relative;
    min-height: 100vh;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero page header - keep same background as other pages */
.hero-page .header {
    background-color: var(--bg-dark);
}

/* Logo */
.hero-logo {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 100;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.75rem 1rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.hero-logo a:hover {
    opacity: 0.8;
}

.hero-logo-image {
    height: 140px;
    width: auto;
    max-width: 300px;
    object-fit: cover;
    object-position: center 50%;
    display: block;
    margin-top: -45px;
    margin-bottom: -45px;
}

.logo-text {
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    line-height: 1.2;
    text-align: center;
}

/* Video Background */
.hero-video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    transition: opacity 0.3s ease;
    /* Background image fallback */
    background-image: url('images/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-video-container.hero-loading {
    opacity: 0;
}

/* Footer on hero page - appears below video content */
.hero-page .footer {
    position: relative;
    z-index: 10;
    background-color: var(--bg-dark);
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* Fallback image if video fails to load */
    background-image: url('images/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

/* Hero mobile nav - shown only on small screens (replaces circular menu) */
.hero-mobile-nav {
    display: none;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    max-width: 320px;
    z-index: 100;
    position: relative;
}

.hero-mobile-nav-link {
    display: inline-block;
    padding: 0.75rem 1.25rem;
    color: rgba(255, 255, 255, 0.98);
    font-family: var(--font-gotham);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 6px;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.hero-mobile-nav-link:hover,
.hero-mobile-nav-link:focus {
    color: var(--accent-orange);
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 107, 53, 0.5);
}

/* Circular Menu - SVG textPath (curved text along circle) */
@keyframes circular-menu-rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.circular-menu {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    max-width: min(800px, 90vw);
    max-height: min(800px, 90vh);
    z-index: 100;
    pointer-events: none;
    animation: circular-menu-rotate 90s linear infinite;
}

.circular-menu-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.circular-menu-link {
    pointer-events: all;
    cursor: pointer;
    text-decoration: none;
}

.circular-menu-link text {
    fill: rgba(255, 255, 255, 0.98);
    font-family: var(--font-gotham);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-anchor: middle;
    dominant-baseline: middle;
    transition: fill 0.3s ease, font-size 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4));
}

.circular-menu-link:hover text,
.circular-menu-link:focus text {
    fill: var(--accent-orange);
    font-size: 20px;
    filter: drop-shadow(0 0 8px rgba(255, 107, 53, 0.8)) drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

/* Mobile: hide circular menu, show static hero nav, adjust hero bg position */
@media (max-width: 768px) {
    .circular-menu {
        display: none !important;
    }
    .hero-mobile-nav {
        display: flex;
    }
    /* Shift hero bg/video so more of the band is in frame (avoid one-arm crop) */
    .hero-video-container {
        background-position: 60% center;
    }
    .hero-video {
        object-position: 60% center;
        background-position: 60% center;
    }
}

@media (max-width: 480px) {
    .hero-mobile-nav {
        gap: 0.5rem;
        padding: 0.75rem;
    }
    .hero-mobile-nav-link {
        padding: 0.65rem 1rem;
        font-size: 0.85rem;
    }
}

/* Fan Club Page Styles */

/* Fan Club Hero */
.fanclub-hero {
    position: relative;
    min-height: 500px;
    padding: 4rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.64) 100%),
                url('images/final-3.jpg') right 25%/cover no-repeat;
    overflow: hidden;
}

.fanclub-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.64) 100%);
}

.fanclub-hero-content {
    position: relative;
    max-width: 800px;
    text-align: center;
    color: var(--text-white);
    z-index: 1;
    margin: 0 auto;
}

.fanclub-hero .eyebrow {
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
    color: var(--accent-orange);
    font-size: 1rem;
}

.fanclub-hero h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.fanclub-hero .hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-light);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Fan Club Section */
.fanclub-section {
    padding: 3rem 0;
    background: var(--bg-dark);
}

.fanclub-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
    background: var(--bg-card-light);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-white);
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Join Section */
.fanclub-join {
    padding: 4rem 0;
    background-image: url('images/fanclub-contact-form-bg-image.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    text-align: center;
}

.fanclub-join::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 0;
}

.fanclub-join .container {
    position: relative;
    z-index: 1;
}

.join-container {
    max-width: 600px;
    margin: 0 auto;
}

.join-description {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.fanclub-form {
    max-width: 500px;
    margin: 0 auto 1rem;
}

.form-note {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.content-card {
    background: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.content-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}

a.content-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.content-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.content-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.content-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.content-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.content-info {
    padding: 1.5rem;
}

.content-badge {
    display: inline-block;
    background: var(--accent-orange);
    color: var(--text-white);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.content-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.content-info p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Community Section */
.fanclub-community {
    position: relative;
    min-height: 400px;
    padding: 4rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.community-bg-fanclub {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0.9;
}

.community-content-fanclub {
    position: relative;
    z-index: 1;
    max-width: 800px;
    text-align: center;
    color: var(--text-white);
}

.community-content-fanclub h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.community-content-fanclub p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--text-light);
}

/* Responsive for Fan Club */
@media (min-width: 768px) {
    .fanclub-hero {
        min-height: 600px;
        padding: 5rem 0;
    }

    .fanclub-section {
        padding: 4rem 0;
    }

    .fanclub-join {
        padding: 5rem 0;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .content-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fanclub-form {
        flex-direction: row;
    }

    .fanclub-form .email-input {
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .content-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .fanclub-hero {
        padding: 6rem 0;
    }
}

/* Contact Page Styles */
.contact-section {
    padding: 4rem 0;
    background: var(--bg-dark);
}

.contact-description {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: grid;
    gap: 0.5rem;
}

.form-label {
    color: var(--text-white);
    font-family: var(--font-gotham);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.form-input,
.form-textarea {
    padding: 1rem;
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--text-white);
    font-size: 1rem;
    font-family: var(--font-gotham);
    font-weight: 400;
    transition: all 0.3s ease;
    width: 100%;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
    background-color: var(--bg-card-light);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

@media (min-width: 768px) {
    .contact-section {
        padding: 5rem 0;
    }
}
