/* =====================================================
   LUKE COLLINS SOUND HEALING
   Color Palette (from flyer):
   - Deep Space: #0a1628
   - Nebula Purple: #6b4984
   - Cosmic Teal: #1a3a4a
   - Golden Bronze: #c4a35a
   - Warm Gold: #d4b86a
   - Cream: #f5f0e6
   - Star White: #ffffff
===================================================== */

:root {
    --color-space: #0a1628;
    --color-space-light: #0f2035;
    --color-nebula: #6b4984;
    --color-nebula-light: #8b69a4;
    --color-teal: #1a3a4a;
    --color-gold: #c4a35a;
    --color-gold-light: #d4b86a;
    --color-cream: #f5f0e6;
    --color-white: #ffffff;
    
    --font-display: 'Cinzel', 'Times New Roman', serif;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

/* Stars Canvas - Galaxy Background */
#stars-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Milky Way Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: 
        radial-gradient(ellipse 80% 50% at 50% 40%, rgba(139, 90, 160, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 55% 35%, rgba(180, 130, 200, 0.2) 0%, transparent 40%),
        radial-gradient(ellipse 50% 30% at 45% 45%, rgba(200, 150, 220, 0.15) 0%, transparent 35%),
        radial-gradient(ellipse 40% 35% at 30% 30%, rgba(107, 73, 132, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 35% 40% at 70% 50%, rgba(107, 73, 132, 0.25) 0%, transparent 45%),
        radial-gradient(ellipse 45% 30% at 60% 25%, rgba(139, 105, 164, 0.2) 0%, transparent 40%),
        radial-gradient(ellipse 25% 20% at 40% 35%, rgba(200, 100, 150, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 30% 25% at 55% 40%, rgba(180, 120, 160, 0.12) 0%, transparent 45%),
        radial-gradient(ellipse 60% 50% at 20% 70%, rgba(26, 58, 74, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse 50% 60% at 80% 80%, rgba(26, 58, 74, 0.35) 0%, transparent 50%),
        linear-gradient(to bottom, #050d18 0%, #0a1628 30%, #0f1d30 60%, #0a1628 100%);
    pointer-events: none;
}

/* Additional nebula glow layer */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background:
        radial-gradient(circle at 50% 35%, rgba(160, 100, 180, 0.08) 0%, transparent 30%),
        radial-gradient(circle at 35% 45%, rgba(140, 80, 160, 0.06) 0%, transparent 25%),
        radial-gradient(circle at 65% 30%, rgba(180, 120, 200, 0.05) 0%, transparent 20%);
    pointer-events: none;
    mix-blend-mode: screen;
}

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

h1 { 
    font-size: clamp(2.5rem, 8vw, 5rem); 
}

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

p {
    margin-bottom: 1rem;
}

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

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

.lead {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-gold);
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    color: #ffffff !important;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(196, 163, 90, 0.3);
    color: #ffffff;
}

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

.btn-secondary:hover {
    background: var(--color-gold);
    color: var(--color-space);
}

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

.btn-outline:hover {
    background: var(--color-cream);
    color: var(--color-space);
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: linear-gradient(to bottom, rgba(10, 22, 40, 0.95), rgba(10, 22, 40, 0));
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(10px);
    padding: 0.75rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--color-cream);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

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

.nav-menu a {
    color: var(--color-cream);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

.nav-menu a:hover {
    opacity: 1;
    color: var(--color-gold);
}

.btn-nav {
    background: var(--color-gold);
    color: var(--color-space) !important;
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    opacity: 1 !important;
}

.btn-nav:hover {
    background: var(--color-gold-light);
    color: var(--color-space) !important;
}

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

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-cream);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6rem 1rem 2rem;
    position: relative;
    overflow: hidden;
}

/* Hero gradient removed - using body milky way background instead */

.hero-banner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60vh;
    z-index: 0;
    overflow: hidden;
}

.banner-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.banner-slide.active {
    opacity: 1;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
    opacity: 0.7;
}

.banner-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--color-space-light), var(--color-teal));
    border: 2px dashed var(--color-gold);
    opacity: 0.5;
}

.banner-placeholder p {
    font-size: 1.5rem;
    color: var(--color-gold);
}

.banner-placeholder span {
    font-size: 0.875rem;
    opacity: 0.7;
}

.banner-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.banner-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--color-gold);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.banner-dots .dot:hover,
.banner-dots .dot.active {
    background: var(--color-gold);
}

.banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    color: var(--color-cream);
    border: none;
    padding: 1rem 0.75rem;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    opacity: 0.7;
}

.banner-arrow:hover {
    background: rgba(0, 0, 0, 0.5);
    opacity: 1;
}

.banner-prev {
    left: 20px;
    border-radius: 0 8px 8px 0;
}

.banner-next {
    right: 20px;
    border-radius: 8px 0 0 8px;
}

@media (max-width: 768px) {
    .banner-arrow {
        padding: 0.75rem 0.5rem;
        font-size: 1.25rem;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    margin-top: 41vh;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 400;
    margin-bottom: 0.5rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-shadow: 0 0 60px rgba(107, 73, 132, 0.5);
}

.hero-title .title-line {
    display: block;
    line-height: 1.2;
}

.hero-title .title-line:first-child {
    font-size: 0.6em;
    letter-spacing: 0.25em;
    margin-bottom: 0.25rem;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-style: italic;
    color: var(--color-gold);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-instruments {
    position: relative;
    z-index: 1;
    margin-top: 3rem;
}

.instruments-img {
    max-width: 400px;
    width: 80%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

/* Hero swipeable gallery */
.hero-gallery-wrapper {
    width: 600px;
    max-width: 90%;
    margin: 5rem auto 0;
    overflow: hidden;
}

.hero-gallery-swipe {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.hero-gallery-swipe::-webkit-scrollbar {
    display: none;
}

.hero-gallery-swipe img {
    flex: 0 0 auto;
    width: 240px;
    height: 240px;
    object-fit: cover;
    border-radius: 0;
    scroll-snap-align: center;
}

@media (max-width: 768px) {
    .hero-gallery-wrapper {
        width: 480px;
    }
    .hero-gallery-swipe img {
        width: 192px;
        height: 192px;
    }
}

/* Sections */
.section {
    padding: 6rem 0;
    position: relative;
}

.section-title {
    font-family: var(--font-heading);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '✦';
    display: block;
    margin-top: 0.5rem;
    color: var(--color-gold);
    font-size: 1rem;
}

/* About Section */
.about {
    background: linear-gradient(180deg, transparent, rgba(107, 73, 132, 0.1), transparent);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img,
.image-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: 60% center;
    border-radius: 200px 200px 20px 20px;
    border: 2px solid var(--color-gold);
}

.image-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--color-space-light);
    color: var(--color-gold);
    opacity: 0.5;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.about-location {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-gold);
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(196, 163, 90, 0.3);
}

.about-location svg {
    flex-shrink: 0;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: linear-gradient(135deg, rgba(15, 32, 53, 0.8), rgba(26, 58, 74, 0.5));
    border: 1px solid rgba(196, 163, 90, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--color-gold);
}

.service-price {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(196, 163, 90, 0.2);
}

.price {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-gold);
}

.price-note {
    font-size: 0.875rem;
    opacity: 0.7;
}

/* Events Section */
.events {
    background: linear-gradient(180deg, transparent, rgba(26, 58, 74, 0.2), transparent);
}

.events-list {
    max-width: 800px;
    margin: 0 auto;
}

.event-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(15, 32, 53, 0.6);
    border: 1px solid rgba(196, 163, 90, 0.2);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

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

.event-date {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    border-radius: 12px;
    color: var(--color-space);
}

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

.event-date .month {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.event-details {
    flex: 1;
}

.event-details h3 {
    color: var(--color-cream);
    margin-bottom: 0.5rem;
}

.event-details p {
    margin-bottom: 0.75rem;
    opacity: 0.8;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.875rem;
    opacity: 0.7;
}

.events-more {
    text-align: center;
    padding: 2rem;
    opacity: 0.7;
}

.social-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--color-gold);
}

/* Tickets Section */
.tickets {
    background: linear-gradient(180deg, transparent, rgba(107, 73, 132, 0.15), transparent);
}

.tickets-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    opacity: 0.8;
}

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

.ticket-card {
    background: linear-gradient(135deg, rgba(15, 32, 53, 0.9), rgba(26, 58, 74, 0.6));
    border: 1px solid rgba(196, 163, 90, 0.3);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    position: relative;
    transition: var(--transition);
}

.ticket-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.ticket-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--color-gold);
    color: var(--color-space);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ticket-date {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    color: var(--color-space);
    padding: 1.5rem;
    text-align: center;
}

.ticket-date .day {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 600;
    line-height: 1;
}

.ticket-date .month {
    display: block;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
}

.ticket-date .year {
    display: block;
    font-size: 0.875rem;
    opacity: 0.7;
}

.ticket-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.ticket-info {
    padding: 1.5rem;
}

.ticket-info h3 {
    color: var(--color-cream);
    margin-bottom: 0.75rem;
}

.ticket-info p {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.ticket-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    opacity: 0.7;
}

.ticket-pricing {
    padding: 0 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ticket-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.option-details {
    display: flex;
    flex-direction: column;
}

.option-name {
    font-size: 0.875rem;
    opacity: 0.8;
}

.option-price {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-gold);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

.ticket-spots {
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

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

/* Private Sessions Card */
.private-booking {
    max-width: 700px;
    margin: 0 auto;
}

.private-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(107, 73, 132, 0.15);
    border: 1px solid rgba(196, 163, 90, 0.2);
    border-radius: 16px;
    padding: 2rem;
}

.private-icon {
    font-size: 2.5rem;
}

.private-info {
    flex: 1;
}

.private-info h3 {
    margin-bottom: 0.5rem;
    color: var(--color-gold);
}

.private-info p {
    margin: 0;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .tickets-grid {
        grid-template-columns: 1fr;
    }
    
    .private-card {
        flex-direction: column;
        text-align: center;
    }
}

/* Booking Section */
.booking {
    background: linear-gradient(180deg, transparent, rgba(26, 58, 74, 0.15), transparent);
}

.booking-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    opacity: 0.8;
}

.booking-calendar {
    max-width: 900px;
    margin: 0 auto;
    min-height: 500px;
}

.calendar-placeholder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    height: 500px;
    background: rgba(15, 32, 53, 0.5);
    border: 2px dashed var(--color-gold);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.calendar-placeholder p {
    font-size: 1.5rem;
    color: var(--color-gold);
}

.calendar-placeholder code {
    display: block;
    background: var(--color-space);
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.75rem;
    text-align: left;
    max-width: 100%;
    overflow-x: auto;
    opacity: 0.6;
}

.booking-contact {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(196, 163, 90, 0.2);
}

.booking-contact p {
    margin-bottom: 1rem;
    opacity: 0.7;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial {
    background: rgba(107, 73, 132, 0.1);
    border-left: 3px solid var(--color-gold);
    padding: 2rem;
    border-radius: 0 16px 16px 0;
}

.testimonial p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.testimonial cite {
    color: var(--color-gold);
    font-style: normal;
}

/* Contact Section */
.contact {
    background: linear-gradient(180deg, transparent, rgba(10, 22, 40, 0.5));
}

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

.contact-info h2 {
    margin-bottom: 2rem;
}

.contact-details p {
    margin-bottom: 1.5rem;
}

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

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    color: var(--color-gold);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--color-gold);
    color: var(--color-space);
}

/* Page Header (for sub-pages) */
.page-header {
    padding: 10rem 0 4rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(107, 73, 132, 0.2), transparent);
}

.page-brand {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-cream);
    margin-bottom: 0.25rem;
}

.page-header h1 {
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--color-gold);
    font-style: italic;
    opacity: 0.9;
}

/* Active nav link */
.nav-menu a.active {
    color: var(--color-gold);
}

/* Home Intro Grid */
.intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.intro-card {
    background: rgba(15, 32, 53, 0.6);
    border: 1px solid rgba(196, 163, 90, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

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

.intro-card-featured {
    background: linear-gradient(135deg, rgba(196, 163, 90, 0.15), rgba(15, 32, 53, 0.8));
    border: 2px solid var(--color-gold);
    position: relative;
}

.intro-card-featured::before {
    content: "★";
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--color-gold);
    color: var(--color-dark);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.intro-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.intro-card h3 {
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

/* Home Event Preview */
.home-event {
    background: linear-gradient(180deg, transparent, rgba(107, 73, 132, 0.1), transparent);
}

.event-preview {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(15, 32, 53, 0.6);
    border: 1px solid rgba(196, 163, 90, 0.3);
    border-radius: 20px;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.event-date-large {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    border-radius: 16px;
    color: var(--color-space);
}

.event-date-large .day {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1;
}

.event-date-large .month {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.event-info {
    flex: 1;
}

.event-info h3 {
    margin-bottom: 0.5rem;
}

.event-info p {
    opacity: 0.8;
    margin-bottom: 0.75rem;
}

/* Services Detail Grid */
.services-detail-grid {
    display: grid;
    gap: 2rem;
}

.service-detail-card {
    background: rgba(15, 32, 53, 0.6);
    border: 1px solid rgba(196, 163, 90, 0.2);
    border-radius: 20px;
    overflow: hidden;
}

.service-detail-card.featured {
    border-color: var(--color-gold);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(107, 73, 132, 0.1);
}

.service-icon-large {
    font-size: 3rem;
}

.service-title h2 {
    margin-bottom: 0.25rem;
}

.service-price-tag {
    color: var(--color-gold);
    font-family: var(--font-heading);
    font-size: 1.5rem;
}

.service-body {
    padding: 2rem;
}

.service-body h4 {
    color: var(--color-gold);
    margin: 1.5rem 0 0.75rem;
    font-size: 1rem;
}

.service-body h4:first-child {
    margin-top: 0;
}

.service-body ul {
    list-style: none;
    padding: 0;
}

.service-body li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-body li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-size: 0.75rem;
}

.pricing-options {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.pricing-row .price {
    color: var(--color-gold);
    font-family: var(--font-heading);
    font-size: 1.25rem;
}

.service-body .btn {
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

/* What to Bring */
.what-to-bring {
    background: rgba(107, 73, 132, 0.1);
}

.bring-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.bring-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(15, 32, 53, 0.5);
    border-radius: 12px;
}

.bring-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.bring-note {
    text-align: center;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Instruments Grid */
.instruments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.instrument-card {
    text-align: center;
    padding: 2rem;
}

.instrument-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.instrument-card h3 {
    color: var(--color-gold);
    margin-bottom: 1rem;
}

/* Events Page */
.events-page-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.event-full-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    background: rgba(15, 32, 53, 0.6);
    border: 1px solid rgba(196, 163, 90, 0.2);
    border-radius: 20px;
    overflow: hidden;
}

.event-image {
    background: rgba(107, 73, 132, 0.2);
}

.event-image img,
.event-image .image-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-gold);
    opacity: 0.5;
    min-height: 250px;
}

.event-content {
    padding: 2rem;
    position: relative;
}

.event-date-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--color-gold);
    color: var(--color-space);
    padding: 0.75rem;
    border-radius: 12px;
    text-align: center;
    line-height: 1.2;
}

.event-date-badge .day {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
}

.event-date-badge .month {
    display: block;
    font-size: 0.875rem;
    text-transform: uppercase;
}

.event-date-badge .year {
    display: block;
    font-size: 0.75rem;
    opacity: 0.7;
}

.event-content h2 {
    margin-bottom: 0.75rem;
    padding-right: 100px;
}

.event-description {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

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

.event-details-grid .detail {
    background: rgba(0, 0, 0, 0.2);
    padding: 0.75rem;
    border-radius: 8px;
}

.event-details-grid .label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.6;
    margin-bottom: 0.25rem;
}

.event-details-grid .value {
    color: var(--color-cream);
}

.event-details-grid .coming-soon {
    color: var(--color-gold);
}

/* Newsletter Box */
.newsletter-box {
    text-align: center;
    padding: 3rem;
    background: rgba(107, 73, 132, 0.15);
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-box h2 {
    margin-bottom: 1rem;
}

.newsletter-box p {
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

/* Tickets Info Grid */
.tickets-info {
    background: rgba(26, 58, 74, 0.1);
}

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

.info-card {
    padding: 1.5rem;
    background: rgba(15, 32, 53, 0.5);
    border-radius: 16px;
}

.info-card h3 {
    margin-bottom: 1rem;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card li {
    padding: 0.25rem 0;
}

.info-note {
    font-size: 0.875rem;
    opacity: 0.7;
    margin-top: 0.5rem;
}

/* Booking Layout */
.booking-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
    align-items: start;
}

.session-card {
    background: rgba(15, 32, 53, 0.8);
    border: 1px solid var(--color-gold);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: sticky;
    top: 100px;
}

.session-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.session-card h2 {
    margin-bottom: 0.5rem;
}

.session-price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-gold);
}

.session-duration {
    opacity: 0.7;
    margin-bottom: 1.5rem;
}

.session-details {
    text-align: left;
    border-top: 1px solid rgba(196, 163, 90, 0.2);
    padding-top: 1.5rem;
}

.session-details h4 {
    color: var(--color-gold);
    margin: 1.5rem 0 0.5rem;
    font-size: 0.9rem;
}

.session-details h4:first-child {
    margin-top: 0;
}

.session-details ul {
    list-style: none;
    padding: 0;
}

.session-details li {
    padding: 0.25rem 0;
    font-size: 0.9rem;
}

.policy-text {
    font-size: 0.85rem;
    opacity: 0.7;
}

.booking-calendar-container h3 {
    margin-bottom: 1.5rem;
}

.booking-alternative {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(196, 163, 90, 0.2);
}

.booking-alternative p {
    margin-bottom: 1rem;
    opacity: 0.7;
}

.placeholder-instructions {
    font-size: 0.85rem;
    opacity: 0.6;
    margin-top: 1rem;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.faq-item {
    padding: 1.5rem;
    background: rgba(15, 32, 53, 0.5);
    border-radius: 12px;
}

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

.faq-item p {
    margin: 0;
    opacity: 0.8;
    font-size: 0.95rem;
}

/* Contact Layout */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info-card {
    background: rgba(15, 32, 53, 0.6);
    border: 1px solid rgba(196, 163, 90, 0.2);
    border-radius: 20px;
    padding: 2rem;
}

.contact-info-card h2 {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-text h4 {
    color: var(--color-gold);
    margin-bottom: 0.25rem;
}

.contact-text p {
    margin-bottom: 0.25rem;
}

.contact-note {
    font-size: 0.85rem;
    opacity: 0.6;
}

.social-link-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.quick-links {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(196, 163, 90, 0.2);
}

.quick-links h4 {
    margin-bottom: 1rem;
    color: var(--color-cream);
}

.quick-links .btn {
    display: block;
    text-align: center;
    margin-bottom: 0.75rem;
}

.contact-map-container h3 {
    margin-bottom: 1rem;
}

/* Contact Form */
.contact-form-container {
    background: rgba(15, 32, 53, 0.6);
    border: 1px solid rgba(196, 163, 90, 0.2);
    border-radius: 20px;
    padding: 2rem;
}

.contact-form-container h3 {
    margin-bottom: 1.5rem;
    color: var(--color-gold);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    color: var(--color-cream);
    opacity: 0.9;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(10, 22, 40, 0.8);
    border: 1px solid rgba(196, 163, 90, 0.3);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-cream);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 2px rgba(196, 163, 90, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-cream);
    opacity: 0.4;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--color-space);
    color: var(--color-cream);
}

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

.contact-form .btn {
    align-self: flex-start;
    margin-top: 0.5rem;
}

/* Map Section */
.map-section {
    padding-top: 0;
}

.map-wrapper {
    border-radius: 16px;
    overflow: hidden;
}

.directions-note {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(15, 32, 53, 0.5);
    border-radius: 12px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Enquiry Grid */
.enquiry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.enquiry-card {
    display: block;
    padding: 2rem;
    background: rgba(15, 32, 53, 0.5);
    border: 1px solid rgba(196, 163, 90, 0.2);
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    color: var(--color-cream);
}

.enquiry-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
    color: var(--color-cream);
}

.enquiry-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.enquiry-card h3 {
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.enquiry-card p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* CTA Section */
.cta-box {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(107, 73, 132, 0.2), rgba(26, 58, 74, 0.2));
    border: 1px solid rgba(196, 163, 90, 0.3);
    border-radius: 24px;
}

.cta-box h2 {
    margin-bottom: 0.5rem;
}

.cta-box p {
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

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

/* Coming Soon Badge */
.coming-soon-badge {
    background: var(--color-nebula) !important;
    color: var(--color-cream) !important;
}

/* Footer (updated) */
.footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(196, 163, 90, 0.2);
    background: rgba(10, 22, 40, 0.5);
}

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

.footer-logo {
    width: 60px;
    margin-bottom: 1rem;
}

.footer-brand p {
    opacity: 0.7;
    font-style: italic;
}

.footer h4 {
    color: var(--color-gold);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--color-cream);
    opacity: 0.7;
    font-size: 0.9rem;
}

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

.footer-contact p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

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

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.5;
    margin: 0;
}

/* Blog Styles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: rgba(15, 32, 53, 0.6);
    border: 1px solid rgba(196, 163, 90, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

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

.blog-card-featured {
    border: 2px solid var(--color-gold);
    background: linear-gradient(135deg, rgba(196, 163, 90, 0.1), rgba(15, 32, 53, 0.8));
}

.blog-card-featured .blog-category {
    background: var(--color-gold) !important;
    color: #ffffff !important;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
}

.blog-image {
    height: 200px;
    background: rgba(107, 73, 132, 0.2);
}

.blog-image img,
.blog-image .image-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-gold);
    opacity: 0.5;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.blog-date {
    opacity: 0.6;
}

.blog-category {
    color: var(--color-gold);
}

.blog-card h2,
.blog-card h3 {
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.blog-card h2 a,
.blog-card h3 a {
    color: var(--color-cream);
}

.blog-card h2 a:hover,
.blog-card h3 a:hover {
    color: var(--color-gold);
}

.blog-card p {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.read-more {
    font-size: 0.9rem;
    color: var(--color-gold);
    font-weight: 500;
}

.read-more:hover {
    color: var(--color-gold-light);
}

/* Blog Article */
.blog-article {
    padding-bottom: 4rem;
}

.article-header {
    padding: 10rem 0 3rem;
    background: linear-gradient(180deg, rgba(107, 73, 132, 0.2), transparent);
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.article-meta a {
    color: var(--color-cream);
    opacity: 0.7;
}

.article-meta a:hover {
    opacity: 1;
    color: var(--color-gold);
}

.article-date {
    opacity: 0.6;
}

.article-header h1 {
    font-family: var(--font-heading);
    text-transform: none;
    letter-spacing: normal;
    margin-bottom: 1rem;
}

.article-subtitle {
    font-size: 1.25rem;
    color: var(--color-gold);
    font-style: italic;
    opacity: 0.9;
}

.article-content {
    max-width: 750px;
    margin: 0 auto;
    padding: 3rem 0;
}

.article-content .lead {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.article-content h2 {
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--color-gold);
}

.article-content h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.article-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.article-content ul,
.article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.article-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.article-content blockquote {
    border-left: 3px solid var(--color-gold);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--color-gold);
    font-size: 1.1rem;
}

.article-content a {
    color: var(--color-gold);
    text-decoration: underline;
}

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

.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.article-content th,
.article-content td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid rgba(196, 163, 90, 0.2);
}

.article-content th {
    color: var(--color-gold);
    font-weight: 500;
}

.article-cta {
    background: linear-gradient(135deg, rgba(107, 73, 132, 0.2), rgba(26, 58, 74, 0.2));
    border: 1px solid rgba(196, 163, 90, 0.3);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.article-cta h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.article-cta p {
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.article-cta .btn {
    margin: 0.25rem;
}

.related-posts {
    background: rgba(107, 73, 132, 0.1);
}

.related-posts .blog-card {
    background: rgba(15, 32, 53, 0.8);
}

/* Responsive for new pages */
@media (max-width: 768px) {
    .event-preview {
        flex-direction: column;
        text-align: center;
    }
    
    .event-full-card {
        grid-template-columns: 1fr;
    }
    
    .event-date-badge {
        position: static;
        display: inline-block;
        margin-bottom: 1rem;
    }
    
    .event-content h2 {
        padding-right: 0;
    }
    
    .event-details-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-layout {
        grid-template-columns: 1fr;
    }
    
    .session-card {
        position: static;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        background: var(--color-space);
        transition: var(--transition);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .event-card {
        flex-direction: column;
        text-align: center;
    }
    
    .event-meta {
        justify-content: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.instruments-img {
    animation: float 6s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Smooth scroll offset for fixed nav */
section[id] {
    scroll-margin-top: 80px;
}

/* FAQ Section */
.faq-section {
    background: var(--color-space-light);
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item h3 {
    color: var(--color-gold);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}
