/* ========================================
   THURSTON KELLAR - PREMIUM MAGICIAN WEBSITE
   Las Vegas Quality Professional Design
   ======================================== */

/* ========== CSS VARIABLES ========== */
:root {
    --gold: #D4AF37;
    --light-gold: #F4E5C3;
    --dark-gold: #B8941E;
    --deep-purple: #2D1B4E;
    --royal-purple: #4A2C7A;
    --dark-bg: #0a0a0a;
    --card-bg: rgba(20, 20, 20, 0.9);
    --text-primary: #f5f5f5;
    --text-secondary: #c0c0c0;
    --accent-blue: #1a1a2e;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Cormorant Garamond', serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.7;
    position: relative;
    padding-top: 120px;
}

/* ========== DISCLAIMER BANNER ========== */
.disclaimer-banner {
    background: linear-gradient(90deg, var(--dark-gold), var(--gold), var(--dark-gold));
    color: var(--dark-bg);
    text-align: center;
    padding: 0.75rem 1rem;
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    line-height: 1.2;
}

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

p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
}

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

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

/* ========== ANIMATED BACKGROUND ========== */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(88, 60, 150, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(120, 80, 170, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(60, 40, 120, 0.2) 0%, transparent 70%),
        linear-gradient(to bottom, #0a0514 0%, #1a0f2e 25%, #0d0819 50%, #050208 100%);
    z-index: -2;
}

/* Milky Way Clouds/Nebula Effects */
.milky-way-cloud {
    position: fixed;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    z-index: -1;
    pointer-events: none;
}

.milky-way-cloud-1 {
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(150, 100, 200, 0.4), transparent);
    top: 10%;
    left: -10%;
    animation: milkyWayFlow 120s infinite linear;
}

.milky-way-cloud-2 {
    width: 600px;
    height: 350px;
    background: radial-gradient(ellipse, rgba(100, 120, 200, 0.3), transparent);
    top: 40%;
    right: -5%;
    animation: milkyWayFlow 100s infinite linear reverse;
}

.milky-way-cloud-3 {
    width: 700px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(180, 140, 220, 0.35), transparent);
    bottom: 20%;
    left: 20%;
    animation: nebulaFloat 90s infinite ease-in-out;
}

.milky-way-stream {
    position: fixed;
    width: 120%;
    height: 100%;
    top: -10%;
    left: -10%;
    background:
        linear-gradient(135deg,
            transparent 0%,
            rgba(150, 120, 200, 0.15) 20%,
            rgba(120, 100, 180, 0.2) 40%,
            rgba(100, 80, 160, 0.15) 60%,
            transparent 80%
        );
    transform: rotate(-30deg);
    animation: milkyWayFlow 180s infinite linear;
    z-index: -1;
    pointer-events: none;
    filter: blur(40px);
}

.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.8);
}

/* ========== NAVIGATION ========== */
nav {
    position: fixed;
    top: 45px;
    width: 100%;
    padding: 1.5rem 5%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition-smooth);
}

nav.scrolled {
    padding: 1rem 5%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition-smooth);
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.05em;
}

.logo:hover {
    color: var(--light-gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

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

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

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gold);
    transition: var(--transition-smooth);
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    font-family: 'Cormorant Garamond', serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--dark-bg);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

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

.btn-secondary:hover {
    background: var(--gold);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 5% 4rem;
    position: relative;
}

.page-hero {
    position: relative;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: -1;
}

.hero-bg-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.9));
}

.hero-content {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    z-index: 10;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    position: relative;
    color: var(--gold);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.hero-description {
    font-size: clamp(1.2rem, 2vw, 1.4rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    line-height: 1.8;
}

/* Profile Image Container */
.profile-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.profile-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(212, 175, 55, 0.2);
    position: relative;
    z-index: 101;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

/* ========== SECTIONS ========== */
section {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--gold);
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 1.5rem auto;
}

.section-subtitle {
    text-align: center;
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Content Grid Layouts */
.content-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

/* ========== CARDS ========== */
.card {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
    opacity: 0;
    transition: var(--transition-smooth);
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.card:hover::before {
    opacity: 1;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.card h3 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ========== FEATURED PERFORMANCE SECTION ========== */
.featured-performance {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 4rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.performance-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.showcase-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.showcase-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.showcase-image-container:hover .showcase-image {
    transform: scale(1.05);
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
}

.showcase-label {
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 600;
}

/* ========== IMAGE GALLERY ========== */
.image-gallery {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 4rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    font-weight: 600;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
    background: linear-gradient(135deg, rgba(45, 27, 78, 0.3), rgba(74, 44, 122, 0.2));
    padding: 6rem 5%;
    border-radius: 20px;
    margin: 4rem auto;
    max-width: 1400px;
}

.testimonial-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.15);
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-weight: 600;
}

/* ========== CTA SECTION ========== */
.cta-section {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

.cta-image {
    position: relative;
    min-height: 400px;
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-text {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-text h2 {
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.cta-text p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

/* ========== QUOTE SECTION ========== */
.quote-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(184, 148, 30, 0.05));
    border-radius: 20px;
    padding: 5rem;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.featured-quote {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.quote-author {
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
}

/* ========== VENUES GALLERY ========== */
.venues-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.venue-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
}

.venue-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.venue-item:hover img {
    transform: scale(1.1);
}

.venue-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
}

.venue-overlay span {
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    font-weight: 600;
}

/* ========== HIGHLIGHT STATS ========== */
.highlight-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.stat-number {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* ========== COURSE CARDS ========== */
.course-card {
    padding: 0;
    overflow: hidden;
}

.course-image {
    height: 200px;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.course-card:hover .course-image img {
    transform: scale(1.1);
}

.course-content {
    padding: 2rem;
}

/* ========== AWARDS GRID ========== */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.award-item {
    padding: 2.5rem;
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition-smooth);
}

.award-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.award-icon-large {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.award-item h4 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.award-item p {
    color: var(--text-secondary);
}

/* ========== NEWSLETTER/CTA ========== */
.newsletter {
    background: linear-gradient(135deg, var(--deep-purple), var(--royal-purple));
    padding: 5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.newsletter-content h2 {
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.newsletter-content p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ========== RESPONSIVE IMAGE ========== */
.responsive-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
}

.responsive-image:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.performance-image {
    border: 2px solid rgba(212, 175, 55, 0.2);
}

/* ========== FOOTER ========== */
footer {
    background: linear-gradient(to bottom, var(--dark-bg), #050505);
    padding: 5rem 5% 2rem;
    margin-top: 5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    z-index: 10;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.footer-logo-section {
    display: flex;
    align-items: flex-start;
}

.footer-logo {
    max-width: 150px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.footer-section h4 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-section p,
.footer-section a {
    color: var(--text-secondary);
    display: block;
    margin-bottom: 0.75rem;
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 4rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    text-align: center;
    color: var(--text-secondary);
}

/* ========== UTILITY CLASSES ========== */
.mb-3 { margin-bottom: 3rem; }
.mt-3 { margin-top: 3rem; }

/* ========== ANIMATIONS ========== */
@keyframes milkyWayFlow {
    0% { transform: translateX(0) rotate(-30deg); }
    100% { transform: translateX(100px) rotate(-30deg); }
}

@keyframes nebulaFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(30px); }
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 200px);
    }
    
    .gallery-item-large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 992px) {
    .hero-content,
    .content-grid-2,
    .performance-showcase,
    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        order: 1;
    }
    
    .profile-container {
        order: 0;
        margin-bottom: 2rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .venues-gallery,
    .awards-grid,
    .highlight-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 100px;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .gallery-item-large {
        grid-column: span 1;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo-section {
        justify-content: center;
    }
    
    .featured-performance,
    .image-gallery,
    .quote-section,
    .newsletter {
        padding: 2rem;
    }
    
    .cta-text {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    section {
        padding: 4rem 4%;
    }
    
    .btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
