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

:root {
    --primary-dark: #1a1a1a;
    --primary-light: #ffffff;
    --accent-gold: #d4a574;
    --accent-warm: #8b6f47;
    --text-light: #666666;
    --text-dark: #333333;
    --bg-light: #fafafa;
    --bg-section: #f5f5f5;
    --shadow: rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    font-weight: 300;
}

/* Typography */
h1, h2 {
    font-family: 'parlare', Georgia, serif;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

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

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary-dark);
}

h3 {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    color: var(--text-dark);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

h4 {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: var(--text-dark);
    font-weight: 400;
    letter-spacing: 0.08em;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.7;
}

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

/* Navigation */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
    padding: 1.5rem 0;
}

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

.nav-logo {
    font-family: 'parlare', Georgia, serif;
    font-size: 2.5rem;
    color: var(--primary-light);
    transition: var(--transition);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 400;
}


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

.nav-link {
    color: var(--primary-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}


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

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

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    margin: 3px 0;
    background: var(--primary-light);
    transition: var(--transition);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}


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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    text-align: center;
    color: var(--primary-light);
    z-index: 1;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-family: 'parlare', Georgia, serif;
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.hero-tagline {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    color: var(--primary-light);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    display: block;
    width: 30px;
    height: 30px;
    border-right: 2px solid var(--primary-light);
    border-bottom: 2px solid var(--primary-light);
    transform: rotate(45deg);
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--primary-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px var(--shadow);
}

.about-content h2 {
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-family: 'parlare', Georgia, serif;
    font-weight: 400;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Services Tabbed Layout */
.services-tabbed {
    margin-top: 60px;
}

/* Tab Navigation */
.services-tabs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
    margin-bottom: 60px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.services-tabs::-webkit-scrollbar {
    display: none;
}

.service-tab {
    background: none;
    border: none;
    padding: 15px 20px;
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: rgba(102, 102, 102, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.service-tab:hover {
    color: var(--accent-warm);
}

.service-tab.active {
    color: var(--accent-warm);
}

.service-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-gold);
}

/* Services Content Area */
.services-content {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 80px;
    align-items: start;
}

/* Static Left Side */
.services-static h3 {
    font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    font-weight: 100;
    color: var(--text-dark);
    margin-bottom: 3rem;
    line-height: 1.2;
    letter-spacing: 0.08em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.services-static .performance-formats {
    margin-top: 2rem;
}

.services-static .formats-title {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.services-static .formats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.services-static .format-badge {
    background: var(--primary-light);
    padding: 8px 20px;
    border-radius: 20px;
    box-shadow: 0 2px 8px var(--shadow);
    font-weight: 300;
    color: var(--accent-warm);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: var(--transition);
}

.services-static .format-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow);
    background: var(--accent-gold);
    color: var(--primary-light);
}

/* Dynamic Right Side */
.services-dynamic {
    position: relative;
    min-height: 200px;
    padding-bottom: 20px;
}

.service-content {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: all 0.4s ease;
    transform: translateY(10px);
}

.service-content.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.service-content h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.service-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.service-learn-more {
    color: var(--accent-warm);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
    display: inline-block;
}

.service-learn-more:hover {
    color: var(--accent-gold);
    border-bottom-color: var(--accent-gold);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--bg-section);
}

.section-title {
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.1em;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 60px;
}





.video-section {
    text-align: center;
    margin: 60px 0;
}

.video-section h3 {
    margin-bottom: 2.5rem;
    font-family: 'parlare', Georgia, serif;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
    font-size: 2rem;
}

.video-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px var(--shadow);
}

.demo-video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
}

/* YouTube iframe specific styles */
.video-container iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-button {
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.play-button svg {
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.play-button svg circle {
    fill: rgba(255, 255, 255, 0.9);
}

.play-button svg path {
    fill: var(--accent-warm);
}

/* Testimonials */
.testimonials {
    margin: 60px 0;
    text-align: center;
}

.testimonials h3 {
    margin-bottom: 2.5rem;
    font-family: 'parlare', Georgia, serif;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
    font-size: 2rem;
}

.testimonial-carousel {
    position: relative;
    min-height: 200px;
    margin-bottom: 2rem;
}

.testimonial {
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial.active {
    opacity: 1;
}

.testimonial p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: var(--accent-gold);
}

/* Events Section */
.events {
    padding: 100px 0;
    background: var(--primary-light);
}

.events .section-title {
    color: #1a1a1a;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.event-type {
    padding: 40px;
    background: var(--bg-light);
    border-radius: 10px;
    box-shadow: 0 10px 30px var(--shadow);
}

.event-type h3 {
    color: var(--accent-warm);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.event-type ul {
    list-style: none;
    margin-top: 1rem;
}

.event-type li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.event-type li::before {
    content: '♪';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
}

.cta-section {
    text-align: center;
    margin-top: 60px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 12px 45px;
    background: var(--accent-warm);
    color: var(--primary-light);
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    font-size: 0.95rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.cta-button:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--bg-section);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-form {
    background: var(--primary-light);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.submit-button {
    width: 100%;
    padding: 15px;
    background: var(--accent-warm);
    color: var(--primary-light);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.submit-button:hover {
    background: var(--accent-gold);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

.contact-info h3 {
    margin-bottom: 2rem;
    color: var(--accent-warm);
    font-family: 'parlare', Georgia, serif;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
    font-size: 1.8rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-item a {
    color: var(--accent-warm);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--accent-gold);
}

.repertoire-preview {
    margin-top: 3rem;
    padding: 30px;
    background: var(--primary-light);
    border-radius: 10px;
    box-shadow: 0 10px 30px var(--shadow);
}

.repertoire-preview h4 {
    margin-bottom: 1rem;
    color: var(--accent-warm);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.repertoire-preview ul {
    list-style: none;
    margin-bottom: 1rem;
}

.repertoire-preview li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

.repertoire-link {
    color: var(--accent-warm);
    text-decoration: none;
    font-weight: 500;
}

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

/* Contact CTA Section */
.contact-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #2b2b2b 0%, #1f1f1f 100%);
    color: var(--primary-light);
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

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

.cta-main .section-title {
    color: var(--accent-gold);
    margin-bottom: 2rem;
    font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    font-weight: 100;
    text-align: center;
    font-size: clamp(2.4rem, 4.5vw, 3.2rem);
    letter-spacing: 0.08em;
    line-height: 1.2;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.7;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: var(--transition);
    min-width: 280px;
    text-align: center;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--accent-warm), var(--accent-gold));
    color: var(--primary-light);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(212, 165, 116, 0.4);
}

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

.cta-button.secondary:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.cta-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-section h3 {
    color: var(--accent-gold);
    font-size: 1.3rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.info-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-weight: 300;
}

.song-list {
    list-style: none;
    margin: 1.5rem 0;
}

.song-list li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding-left: 1.5rem;
    font-weight: 300;
}

.song-list li::before {
    content: '♪';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
}

.song-note {
    font-size: 0.95rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: var(--primary-light);
    text-align: center;
    padding: 30px 0;
}

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

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

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-light);
    z-index: 9999;
    animation: pageLoad 1s ease-out forwards;
    pointer-events: none;
}

@keyframes pageLoad {
    to {
        opacity: 0;
        visibility: hidden;
    }
}