/* OCA Season 97 - Complete Website Styles */

:root {
    /* Colors - Piano Key Aesthetic */
    --primary-white: #ffffff;
    --primary-black: #000000;
    --soft-white: #fafafa;
    --warm-white: #f8f8f8;
    --charcoal: #1a1a1a;
    --light-gray: #f0f0f0;
    --medium-gray: #666666;
    --dark-gray: #333333;
    
    /* Accent Colors */
    --accent-gold: #d4af37;
    --gold-light: #f4e785;
    --gold-dark: #b8860b;
    --accent-blue: #2c5aa0;
    
    /* Typography */
    --font-elegant: 'Playfair Display', serif;
    --font-modern: 'Inter', sans-serif;
    
    /* Shadows & Effects */
    --shadow-elegant: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-dramatic: 0 20px 60px rgba(0, 0, 0, 0.25);
    --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.08);
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-elegant: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

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

body {
    font-family: var(--font-modern);
    line-height: 1.6;
    color: var(--primary-black);
    background: var(--primary-white);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-elegant);
    font-weight: 700;
    line-height: 1.2;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 0.8rem 0;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-subtle);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-brand .nav-logo {
    text-decoration: none;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.logo-oca {
    font-family: var(--font-elegant);
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-black);
    letter-spacing: -0.02em;
}

.logo-season {
    font-family: var(--font-modern);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--primary-black);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition-smooth);
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta .btn-small {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background: var(--primary-black);
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    z-index: 2;
    display: block;
}

.hero-video::-webkit-media-controls {
    display: none !important;
}

.hero-video::-webkit-media-controls-panel {
    display: none !important;
}

.hero-video:not([src]), .hero-video[src=""] {
    display: none;
}



.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 3;
}



.hero-content {
    position: relative;
    z-index: 100;
    text-align: center;
    color: var(--primary-white);
    max-width: 900px;
    padding: 0 2rem;
}

.hero-announcement {
    font-family: var(--font-modern);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hero-title {
    font-family: var(--font-elegant);
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 900;
    line-height: 0.85;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.75);
    color: var(--primary-black);
    padding: 2.5rem 3rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-dramatic);
    border: 3px solid var(--accent-gold);
    text-align: center;
    display: inline-block;
}

.title-main {
    display: block;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.title-main:nth-child(1) { animation-delay: 0.2s; }
.title-main:nth-child(2) { animation-delay: 0.4s; }
.title-main:nth-child(3) { animation-delay: 0.6s; }

.hero-tagline {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1rem;
    font-style: italic;
    opacity: 0.95;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    z-index: 110;
    position: relative;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    color: var(--primary-white);
    opacity: 0.7;
}

.scroll-text {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

.scroll-arrow i {
    font-size: 1.2rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-family: var(--font-modern);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-black);
    color: var(--primary-white);
    border: 2px solid var(--primary-black);
}

.btn-primary:hover {
    background: var(--primary-white);
    color: var(--primary-black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-elegant);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-black);
    border: 2px solid var(--primary-black);
}

.btn-secondary:hover {
    background: var(--primary-black);
    color: var(--primary-white);
    transform: translateY(-2px);
}

.btn-hero-primary {
    background: var(--primary-white);
    color: var(--primary-black);
    border: 2px solid var(--primary-white);
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
}

.btn-hero-primary:hover {
    background: transparent;
    color: var(--primary-white);
}

.btn-hero-secondary {
    background: transparent;
    color: var(--primary-white);
    border: 2px solid var(--primary-white);
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
}

.btn-hero-secondary:hover {
    background: var(--primary-white);
    color: var(--primary-black);
}

.btn-small {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    padding: 6rem 0 4rem;
    background: var(--warm-white);
}

.section-title {
    font-family: var(--font-elegant);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-black);
    position: relative;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Artist Showcases */
.season-section {
    padding: 0;
}

.artist-showcase {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.artist-light {
    background: var(--primary-white);
    color: var(--primary-black);
}

.artist-dark {
    background: var(--primary-black);
    color: var(--primary-white);
}

.artist-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.artist-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-light .artist-bg-image {
    opacity: 0.4;
    filter: grayscale(10%);
}

.artist-dark .artist-bg-image {
    opacity: 0.5;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.artist-light .image-overlay {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.35) 0%,
        rgba(255, 255, 255, 0.25) 100%
    );
}

.artist-dark .image-overlay {
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.55) 100%
    );
}

.artist-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 6rem 0;
}

.artist-info {
    max-width: 600px;
}

.artist-info-right {
    margin-left: auto;
    text-align: right;
}

.artist-date {
    font-family: var(--font-modern);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.artist-name {
    font-family: var(--font-elegant);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 1rem;
}

.artist-genre {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: var(--accent-gold);
}

.artist-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 100%;
    opacity: 0.95;
}

.artist-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.artist-dark .artist-actions .btn-artist-primary.btn-light {
    background: var(--primary-white);
    color: var(--primary-black);
    border-color: var(--primary-white);
}

.artist-dark .artist-actions .btn-artist-secondary.btn-light {
    background: transparent;
    color: var(--primary-white);
    border-color: var(--primary-white);
}

.artist-light .artist-actions .btn-artist-primary.btn-light {
    background: var(--primary-black);
    color: var(--primary-white);
    border-color: var(--primary-black);
}

.artist-light .artist-actions .btn-artist-secondary.btn-light {
    background: transparent;
    color: var(--primary-black);
    border-color: var(--primary-black);
}

.artist-light .artist-actions .btn-artist-primary.btn-light:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

.artist-light .artist-actions .btn-artist-secondary.btn-light:hover {
    background: var(--primary-black);
    color: var(--primary-white);
    transform: translateY(-2px);
}

.btn-artist-primary, .btn-artist-secondary {
    padding: 1rem 2rem;
}

/* Artist Layout - Side by Side */
.artist-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.artist-layout-reverse {
    grid-template-columns: 1fr 1fr;
}

.artist-layout-reverse .artist-video {
    order: 1;
}

.artist-layout-reverse .artist-info {
    order: 2;
}

/* Artist Video Sections */
.artist-video {
    display: flex;
    flex-direction: column;
    justify-content: center;
}



.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-elegant);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

/* Artist Members Styling */
.artist-members {
    margin-bottom: 1.5rem;
}

.artist-members p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--medium-gray);
    font-weight: 500;
}

/* Coming Soon Styling */
.coming-soon-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--warm-white) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.coming-soon-bg::before {
    content: "COMING SOON";
    position: absolute;
    font-family: var(--font-elegant);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.1);
    transform: rotate(-15deg);
    letter-spacing: 0.2em;
}

.coming-soon-notice {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--accent-gold);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.coming-soon-notice h4 {
    font-family: var(--font-elegant);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.coming-soon-notice p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--dark-gray);
}

/* Tickets Section */
.tickets-section {
    position: relative;
    background: var(--primary-black);
    color: var(--primary-white);
    padding: 8rem 0;
}

.tickets-bg {
    position: relative;
    z-index: 2;
}

.section-header-center {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title-white {
    font-family: var(--font-elegant);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-white);
}

.section-subtitle-white {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.tickets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 100%;
    overflow: hidden;
}

.ticket-card {
    background: var(--primary-white);
    color: var(--primary-black);
    border-radius: 15px;
    padding: 2.5rem;
    position: relative;
    box-shadow: var(--shadow-elegant);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.ticket-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-dramatic);
}



.ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.ticket-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
}



.ticket-price {
    text-align: center;
    margin-bottom: 2rem;
}

.price-amount {
    display: block;
    font-family: var(--font-elegant);
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-gold);
}

.price-detail {
    font-size: 1rem;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ticket-benefits {
    flex-grow: 1;
}

.ticket-benefits ul {
    list-style: none;
    margin-bottom: 2rem;
}

.ticket-benefits li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.ticket-benefits i {
    color: var(--accent-gold);
    font-size: 0.9rem;
}

.btn-ticket-primary,
.btn-ticket-secondary {
    width: 100%;
    background: var(--primary-black);
    color: var(--primary-white);
    border: 2px solid var(--primary-black);
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-ticket-primary:hover,
.btn-ticket-secondary:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--primary-white);
}

.payment-info {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
}

.payment-info h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-white);
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.payment-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: var(--transition-smooth);
}

.payment-method:hover {
    background: rgba(255, 255, 255, 0.1);
}

.payment-method i {
    font-size: 1.5rem;
    color: var(--accent-gold);
}

.payment-note {
    opacity: 0.8;
    line-height: 1.6;
}

/* Young Artists Section */
.young-artists-section {
    padding: 8rem 0;
    background: var(--warm-white);
}

.ya-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.ya-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: var(--dark-gray);
}

.ya-details {
    margin-bottom: 3rem;
}

.ya-detail {
    margin-bottom: 2rem;
}

.ya-detail h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--accent-gold);
}

.ya-detail p {
    color: var(--medium-gray);
    line-height: 1.6;
}

.ya-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.ya-visual {
    position: relative;
}

.ya-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-elegant);
}

.ya-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.ya-quote {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.ya-quote blockquote {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-black);
}

.ya-quote cite {
    font-size: 0.9rem;
    color: var(--medium-gray);
    font-style: normal;
}

/* About Section */
.about-section {
    padding: 8rem 0;
    background: var(--primary-black);
    color: var(--primary-white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    margin-bottom: 4rem;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.heritage-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 3rem;
    max-width: 600px;
    margin: 0 auto;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-elegant);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent-gold);
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.8;
    margin-top: 0.5rem;
}

/* Support Section */
.support-section {
    padding: 8rem 0;
    background: var(--warm-white);
}

.section-title-center {
    text-align: center;
    font-family: var(--font-elegant);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: var(--primary-black);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 6rem;
}

.support-option {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--primary-white);
    border-radius: 20px;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-smooth);
}

.support-option:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-elegant);
}

.support-icon {
    margin-bottom: 1.5rem;
}

.support-icon i {
    font-size: 3rem;
    color: var(--accent-gold);
}

.support-option h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.support-option p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--medium-gray);
    margin-bottom: 2rem;
}

.sponsors-section {
    text-align: center;
}

.sponsors-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary-black);
}

.sponsors-note {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.sponsors-note p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--medium-gray);
}

.sponsor-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.sponsor-logo {
    background: var(--primary-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--primary-black);
    transition: var(--transition-smooth);
}

.sponsor-logo:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-elegant);
}

/* Contact Section */
.contact-section {
    padding: 8rem 0;
    background: var(--primary-black);
    color: var(--primary-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-family: var(--font-elegant);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--primary-white);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.3rem;
    color: var(--accent-gold);
    margin-top: 0.2rem;
}

.contact-item div {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.contact-item strong {
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-item span {
    opacity: 0.9;
    line-height: 1.4;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--accent-gold);
    color: var(--primary-white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.venues-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary-white);
}

.venue-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.venue {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--accent-gold);
}

.venue strong {
    font-weight: 600;
    font-size: 1.1rem;
}

.venue span {
    opacity: 0.8;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: var(--charcoal);
    color: var(--primary-white);
    padding: 4rem 0 2rem;
}

.footer-content {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 3rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand p {
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-column h5 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.footer-column a {
    display: block;
    color: var(--primary-white);
    text-decoration: none;
    opacity: 0.8;
    margin-bottom: 0.5rem;
    transition: var(--transition-smooth);
}

.footer-column a:hover {
    opacity: 1;
    color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--primary-white);
    margin: 2% auto;
    padding: 3rem;
    border-radius: 20px;
    width: 95%;
    max-width: 650px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-dramatic);
}

.close {
    position: absolute;
    right: 2rem;
    top: 2rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: var(--medium-gray);
    transition: var(--transition-smooth);
}

.close:hover {
    color: var(--primary-black);
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Desktop Large Screens */
@media (min-width: 1400px) {
    .tickets-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1200px;
        margin: 0 auto 4rem auto;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: clamp(2.5rem, 6vw, 4rem);
        padding: 1.5rem 2rem;
    }
    
    .artist-content {
        padding: 6rem 0;
    }
    
    .artist-info {
        max-width: 90%;
        padding: 2rem;
    }
    
    /* Tablet layout adjustments */
    .artist-layout {
        gap: 3rem;
        max-width: 100%;
    }
    
    .ya-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary-white);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: var(--shadow-elegant);
        transform: translateY(0);
        transition: var(--transition-smooth);
        opacity: 0;
        visibility: hidden;
    }
    
    .nav-menu.active {
        transform: translateY(-100%);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .artist-info,
    .artist-info-right {
        text-align: center !important;
        margin: 0 auto !important;
        max-width: 95%;
        padding: 1.5rem;
    }
    

    
    .artist-name {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .tickets-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Mobile layout - stack vertically */
    .artist-layout,
    .artist-layout-reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .artist-layout-reverse .artist-video,
    .artist-layout-reverse .artist-info {
        order: unset;
    }
    
    /* Mobile video styling */
    .video-container {
        max-width: 100%;
        margin: 0 auto;
    }
    

    
    .artist-members p {
        text-align: center;
        font-size: 0.9rem;
    }
    
    .coming-soon-bg::before {
        font-size: 2.5rem;
    }
    
    .payment-methods {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .support-grid {
        grid-template-columns: 1fr;
    }
    
    .sponsor-logos {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .artist-content {
        padding: 3rem 0;
    }
    
    .artist-description {
        max-width: 100%;
    }
    
    .modal-content {
        padding: 2rem;
        margin: 10% auto;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Concert Schedule Styles */
.season-schedule {
    margin: 2rem 0 3rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

@media (max-width: 1200px) {
    .schedule-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .schedule-item:nth-child(4) {
        grid-column: 1;
    }
    
    .schedule-item:nth-child(5) {
        grid-column: 2;
    }
}

.schedule-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition-smooth);
    border-left: 4px solid var(--accent-gold);
    min-width: 0;
    overflow: hidden;
}

.schedule-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-elegant);
}

.schedule-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 60px;
    flex-shrink: 0;
}

.schedule-date .month {
    font-family: var(--font-elegant);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.schedule-date .day {
    font-family: var(--font-elegant);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-black);
    line-height: 1;
}

.schedule-date .time {
    font-size: 0.8rem;
    color: var(--medium-gray);
    font-weight: 500;
    margin-top: 0.25rem;
}

.schedule-details h4 {
    font-family: var(--font-elegant);
    font-size: 1rem;
    color: var(--primary-black);
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.schedule-details .venue {
    font-size: 0.9rem;
    color: var(--medium-gray);
    font-style: italic;
    margin: 0;
}

@media (max-width: 900px) {
    .schedule-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .schedule-item:nth-child(5) {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .season-schedule {
        padding: 1.5rem;
        margin: 1.5rem 0 2rem 0;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .schedule-item {
        padding: 1rem;
    }
    
    .schedule-item:nth-child(5) {
        grid-column: unset;
        max-width: unset;
        margin: unset;
    }
    
    .schedule-date .day {
        font-size: 1.5rem;
    }
    
    .schedule-details h4 {
        font-size: 1rem;
    }
}

/* Donation Options Styles */
.donation-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.donation-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.donation-option:hover {
    border-color: var(--accent-gold);
    background-color: rgba(212, 175, 55, 0.1);
}

.donation-option input[type="radio"] {
    margin: 0;
}

.donation-option.custom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.donation-option.custom input[type="number"] {
    width: 80px;
    padding: 0.25rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-top: 0.25rem;
}

.donation-option.custom input[type="number"]:disabled {
    background-color: #f5f5f5;
    color: #999;
}

.family-description {
    color: var(--medium-gray);
    font-style: italic;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Form Grid for Modal */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.form-section h5 {
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--primary-black);
}

.concert-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.concert-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.concert-list li:last-child {
    border-bottom: none;
}

.concert-list i {
    color: var(--accent-gold);
}

.payment-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.payment-option:hover {
    border-color: var(--accent-gold);
    background-color: rgba(212, 175, 55, 0.1);
}

.payment-option input[type="radio"] {
    margin: 0;
}

.form-total {
    text-align: center;
    padding: 1rem;
    background-color: var(--light-gray);
    border-radius: 8px;
    margin: 1.5rem 0;
    font-size: 1.2rem;
}

.btn-purchase {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.form-note {
    text-align: center;
    color: var(--medium-gray);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Payment Process Styles */
.payment-process {
    text-align: center;
}

.payment-header {
    margin-bottom: 2rem;
}

.payment-header i {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    display: block;
}

.payment-summary {
    background-color: var(--light-gray);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.payment-summary h5 {
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #ddd;
}

.summary-item:last-of-type {
    border-bottom: none;
    margin-bottom: 1rem;
}

.summary-total {
    padding: 1rem 0;
    border-top: 2px solid var(--accent-gold);
    font-size: 1.2rem;
}

.payment-methods-final {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.payment-methods-final .btn {
    padding: 1rem;
    font-size: 1.1rem;
}

/* Instruction Styles */
.mail-instructions,
.door-instructions,
.phone-instructions {
    max-width: 500px;
    margin: 0 auto;
}

.instruction-header {
    text-align: center;
    margin-bottom: 2rem;
}

.instruction-header i {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    display: block;
}

.instruction-content h5 {
    margin: 1.5rem 0 0.75rem 0;
    color: var(--primary-black);
    font-weight: 600;
}

.instruction-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.instruction-content li {
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.address-block {
    background-color: var(--light-gray);
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0 1.5rem 0;
    border-left: 4px solid var(--accent-gold);
}

.total-reminder {
    background-color: var(--accent-gold);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.total-reminder h5 {
    margin: 0;
    font-size: 1.2rem;
}

.venue-reminder {
    background-color: #e8f4f8;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #2c5aa0;
    margin-top: 1.5rem;
}

.venue-reminder h5 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.venue-reminder p {
    margin: 0;
    color: #555;
}

.phone-link {
    display: inline-block;
    font-size: 1.5rem;
    color: var(--accent-gold);
    text-decoration: none;
    margin: 1rem 0;
    padding: 1rem;
    border: 2px solid var(--accent-gold);
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.phone-link:hover {
    background-color: var(--accent-gold);
    color: white;
}

.action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .donation-options {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        grid-template-columns: 1fr;
    }
    
    .payment-methods-final {
        grid-template-columns: 1fr;
    }
}