/* =========================================
   3rd Coast Vocals - Main Stylesheet
   A bold, dramatic jazz vocal ensemble site
   ========================================= */

/* CSS Variables */
:root {
    /* Colors */
    --color-black: #0a0a0a;
    --color-dark: #141414;
    --color-darker: #1a1a1a;
    --color-gray-dark: #2a2a2a;
    --color-gray: #4a4a4a;
    --color-gray-light: #8a8a8a;
    --color-white: #ffffff;
    --color-cream: #f5f5f0;

    /* Accent Colors - Gold/Amber jazz palette */
    --color-gold: #c9a227;
    --color-gold-light: #e6c65c;
    --color-gold-dark: #9a7b1c;
    --color-burgundy: #722f37;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-xxl: 10rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.8s ease;
    --transition-slower: 1.2s ease;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
}

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

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

body {
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-white);
    background-color: var(--color-black);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

h1 { font-size: clamp(3rem, 8vw, 7rem); }
h2 { font-size: clamp(2rem, 5vw, 4rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1em;
    color: var(--color-gray-light);
}

a {
    color: var(--color-gold);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-gold-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity var(--transition-slow), visibility var(--transition-slow);
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-text {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-gold);
    display: block;
    margin-bottom: var(--space-md);
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: var(--color-gray-dark);
    position: relative;
    overflow: hidden;
}

.preloader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--color-gold);
    animation: loadBar 1.5s ease forwards;
}

@keyframes loadBar {
    to { width: 100%; }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: all var(--transition-medium);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--space-sm) 0;
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-gold);
    font-weight: 700;
}

.logo-sub {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--color-white);
    font-weight: 400;
    font-style: italic;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 30px;
    height: 2px;
    background: var(--color-white);
    position: relative;
    transition: var(--transition-fast);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    transition: var(--transition-fast);
}

.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-md);
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: var(--space-xs) 0;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width var(--transition-medium);
}

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

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

.nav-social {
    display: flex;
    gap: var(--space-sm);
}

.nav-social a {
    color: var(--color-white);
    font-size: 1rem;
    transition: color var(--transition-fast), transform var(--transition-fast);
}

.nav-social a:hover {
    color: var(--color-gold);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: var(--color-dark);
    transform: scale(1.1);
    animation: heroZoom 20s ease infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1.1); }
    to { transform: scale(1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.5) 0%,
        rgba(10, 10, 10, 0.6) 50%,
        rgba(10, 10, 10, 0.95) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--space-md);
}

.hero-text {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.5s forwards;
}

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

.hero-tagline {
    display: block;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--color-gold-light);
    margin-bottom: var(--space-md);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 0, 0, 0.5);
}

.hero-title {
    margin-bottom: var(--space-md);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 0, 0, 0.5);
}

.title-line {
    display: block;
}

.title-accent {
    color: var(--color-gold-light);
    font-style: italic;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--color-white);
    max-width: 600px;
    margin: 0 auto var(--space-lg);
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    opacity: 0;
    animation: fadeIn 1s ease 1.5s forwards;
}

.scroll-indicator span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-gray-light);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
    animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.8); }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    cursor: pointer;
    transition: all var(--transition-medium);
    text-decoration: none;
}

.btn-primary {
    background: var(--color-gold);
    color: var(--color-black);
}

.btn-primary:hover {
    background: var(--color-gold-light);
    color: var(--color-black);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-white);
}

.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-black);
}

.btn-outline.dark {
    border-color: var(--color-dark);
    color: var(--color-dark);
}

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

.btn-outline.light {
    border-color: var(--color-white);
    color: var(--color-white);
}

.btn-outline.light:hover {
    background: var(--color-white);
    color: var(--color-black);
}

.btn-text {
    padding: 0;
    color: var(--color-gold);
    background: none;
    text-transform: none;
    letter-spacing: normal;
}

.btn-text:hover {
    color: var(--color-gold-light);
}

.btn-text i {
    transition: transform var(--transition-fast);
}

.btn-text:hover i {
    transform: translateX(5px);
}

/* Section Styles */
section {
    padding: var(--space-xxl) 0;
}

.section-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--color-gold);
    margin-bottom: var(--space-sm);
}

.section-label.light {
    color: var(--color-gold-light);
}

.section-title {
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.section-title.light {
    color: var(--color-white);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray-light);
    margin-bottom: var(--space-lg);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-xl);
}

/* Quote Section */
.quote-section {
    background: var(--color-dark);
    padding: var(--space-xxl) 0;
}

.featured-quote {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.quote-mark {
    font-family: var(--font-display);
    font-size: 8rem;
    color: var(--color-gold);
    opacity: 0.3;
    position: absolute;
    top: -3rem;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
}

.featured-quote p {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-style: italic;
    color: var(--color-white);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.featured-quote cite {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-gold);
}

/* About Preview */
.about-preview {
    background: var(--color-black);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    overflow: hidden;
}

.image-frame::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--color-gold);
    z-index: -1;
}

.placeholder-image {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.about-content {
    padding: var(--space-lg) 0;
}

.about-content p {
    font-size: 1.0625rem;
    margin-bottom: var(--space-md);
}

/* Music Preview */
.music-preview {
    position: relative;
    background: var(--color-darker);
    text-align: center;
    overflow: hidden;
}

.music-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(201, 162, 39, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(201, 162, 39, 0.05) 0%, transparent 50%);
}

.music-content {
    position: relative;
    z-index: 1;
}

.music-platforms {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}

.platform-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    color: var(--color-white);
    transition: all var(--transition-medium);
}

.platform-link i {
    font-size: 2.5rem;
    color: var(--color-gold);
    transition: transform var(--transition-medium);
}

.platform-link span {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

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

.platform-link:hover i {
    transform: scale(1.2);
}

/* Events Preview */
.events-preview {
    background: var(--color-cream);
    color: var(--color-dark);
}

.events-preview .section-label {
    color: var(--color-gold-dark);
}

.events-preview .section-title {
    color: var(--color-dark);
}

.events-grid {
    display: grid;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.event-card {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--color-white);
    border-left: 4px solid var(--color-gold);
    transition: all var(--transition-medium);
}

.event-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
    padding: var(--space-sm);
    background: var(--color-dark);
    color: var(--color-white);
}

.event-date .month {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
}

.event-date .day {
    font-family: var(--font-display);
    font-size: 2rem;
    line-height: 1;
}

.event-details {
    flex: 1;
}

.event-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--color-dark);
    margin-bottom: var(--space-xs);
}

.event-venue,
.event-time {
    font-size: 0.875rem;
    color: var(--color-gray);
    margin: 0;
}

.event-link {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold-dark);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    white-space: nowrap;
}

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

.event-link i {
    transition: transform var(--transition-fast);
}

.event-link:hover i {
    transform: translateX(5px);
}

.events-cta {
    text-align: center;
}

/* Video Preview */
.video-preview {
    background: var(--color-black);
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-xl);
    align-items: center;
}

.video-content p {
    font-size: 1.0625rem;
}

.video-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    background: var(--color-dark);
    overflow: hidden;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-darker) 100%);
    cursor: pointer;
    transition: all var(--transition-medium);
}

.video-placeholder:hover {
    background: linear-gradient(135deg, var(--color-darker) 0%, var(--color-dark) 100%);
}

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-medium);
}

.play-button i {
    font-size: 1.5rem;
    color: var(--color-black);
    margin-left: 5px;
}

.video-placeholder:hover .play-button {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(201, 162, 39, 0.5);
}

.video-placeholder span {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-gray-light);
}

/* Newsletter */
.newsletter {
    background: var(--color-gold);
    padding: var(--space-xl) 0;
}

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

.newsletter h2 {
    color: var(--color-black);
    margin-bottom: var(--space-sm);
}

.newsletter p {
    color: var(--color-dark);
    margin-bottom: var(--space-md);
}

.newsletter-form {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border: none;
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--color-white);
    color: var(--color-dark);
}

.newsletter-form input::placeholder {
    color: var(--color-gray);
}

.newsletter-form .btn-primary {
    background: var(--color-black);
    color: var(--color-white);
}

.newsletter-form .btn-primary:hover {
    background: var(--color-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: var(--color-black);
    padding: var(--space-xl) 0 var(--space-md);
    border-top: 1px solid var(--color-gray-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer-logo {
    display: inline-flex;
    flex-direction: column;
    margin-bottom: var(--space-md);
}

.footer-brand p {
    font-size: 0.9375rem;
    margin-bottom: var(--space-md);
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-gray-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-black);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: var(--color-gray-light);
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-gold);
}

.footer-contact p {
    font-size: 0.9375rem;
    margin-bottom: var(--space-md);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-gray-dark);
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--color-gray);
    margin: 0;
}

/* Animations */
[data-aos] {
    opacity: 0;
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

[data-aos="fade-up"] {
    transform: translateY(40px);
}

[data-aos="fade-right"] {
    transform: translateX(-40px);
}

[data-aos="fade-left"] {
    transform: translateX(40px);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg);
    }
}

@media (max-width: 992px) {
    .about-grid,
    .video-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .about-image {
        order: -1;
    }

    .video-content {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--color-black);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--space-md);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-medium);
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        font-size: 1.25rem;
    }

    .nav-social {
        display: none;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

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

    .footer-social {
        justify-content: center;
    }

    .music-platforms {
        flex-direction: column;
        align-items: center;
    }

    .event-card {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        width: 100%;
    }
}

@media (max-width: 480px) {
    :root {
        --space-md: 1.5rem;
        --space-lg: 3rem;
        --space-xl: 4rem;
        --space-xxl: 6rem;
    }

    .btn {
        padding: 0.875rem 2rem;
        width: 100%;
        justify-content: center;
    }
}

/* Page-specific overrides - will be used by other pages */
.page-header {
    padding-top: 120px;
    padding-bottom: var(--space-xl);
    background: var(--color-dark);
    text-align: center;
}

.page-header .container {
    max-width: 800px;
}

.page-title {
    margin-bottom: var(--space-sm);
}

.page-description {
    font-size: 1.125rem;
    color: var(--color-gray-light);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-gold { color: var(--color-gold); }
.bg-dark { background-color: var(--color-dark); }
.bg-darker { background-color: var(--color-darker); }
.bg-cream { background-color: var(--color-cream); }
