/* =========================================
   Duo Wisteria - Modern Website Styles
   Simplified color palette with award-winning design
   ========================================= */

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

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #FFFFFF;
    background-color: #000000;
    overflow-x: hidden;
    font-feature-settings: "kern" 1, "liga" 1;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Import Google Fonts for stylish typography */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Crimson+Text:ital,wght@0,400;0,600;1,400&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* Simplified Color Palette Variables */
:root {
    /* Primary Colors */
    --color-black: #000000;
    --color-gold: #D4AF37;
    --color-white: #FFFFFF;
    --color-silver: #C0C0C0;
    --color-gray: #808080;
    
    /* New Accent Color - Luminescent Purple */
    --color-purple: #8A2BE2;
    --color-purple-light: #DA70D6;
    --color-purple-neon: #C71585;
    
    /* Text Colors */
    --color-primary-text: #FFFFFF;
    --color-secondary-text: #C0C0C0;
    --color-accent-text: #D4AF37;
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    --gradient-purple: linear-gradient(135deg, #8A2BE2 0%, #DA70D6 100%);
    --gradient-purple-neon: linear-gradient(135deg, #C71585 0%, #8A2BE2 50%, #DA70D6 100%);
    --gradient-gold-purple: linear-gradient(135deg, #D4AF37 0%, #8A2BE2 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%);
    
    /* Spacing System */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 3rem;
    --space-xl: 4rem;
    --space-xxl: 6rem;
    
    /* Typography Scale */
    --font-xs: 0.75rem;
    --font-sm: 0.875rem;
    --font-base: 1rem;
    --font-lg: 1.125rem;
    --font-xl: 1.25rem;
    --font-2xl: 1.5rem;
    --font-3xl: 2rem;
    --font-4xl: 2.5rem;
    --font-5xl: 3rem;
    --font-6xl: 4rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.6);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
    --shadow-purple: 0 4px 20px rgba(138, 43, 226, 0.4);
    --shadow-purple-neon: 0 8px 32px rgba(199, 21, 133, 0.5);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

.section-padding {
    padding: var(--space-xxl) 0;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-delay {
    animation-delay: 0.3s;
}

.fade-in-delay-2 {
    animation-delay: 0.6s;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--transition-slow);
}

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

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all var(--transition-slow);
}

.fade-in-left.in-view {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all var(--transition-slow);
}

.fade-in-right.in-view {
    opacity: 1;
    transform: translateX(0);
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--color-gold);
    color: var(--color-black);
    padding: 8px;
    text-decoration: none;
    border-radius: var(--radius-sm);
    z-index: 10000;
    font-weight: 600;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: 6px;
}

/* ===============
   NAVIGATION
   =============== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 1000;
    transition: all var(--transition-base);
}

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

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

.nav-logo .logo-text {
    font-size: var(--font-xl);
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Language Switcher - moved to right */
.language-switcher {
    display: flex;
    gap: var(--space-xs);
    background: rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-full);
    padding: 4px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.lang-btn {
    background: none;
    border: none;
    color: var(--color-silver);
    font-size: var(--font-xs);
    font-weight: 600;
    padding: 4px 8px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    min-width: 28px;
}

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

.lang-btn:hover:not(.active) {
    color: var(--color-gold);
}

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

.hamburger {
    width: 25px;
    height: 3px;
    background: var(--gradient-gold-purple);
    margin: 3px 0;
    transition: var(--transition-base);
    border-radius: var(--radius-full);
}

/* Hamburger animation */
.nav-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: var(--gradient-purple-neon);
}

.nav-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: var(--gradient-purple-neon);
}

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

.nav-menu a {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: var(--space-xs) 0;
    transition: color var(--transition-base);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold-purple);
    transition: width var(--transition-base);
}

.nav-menu a:hover,
.nav-menu a:focus,
.nav-menu a.active {
    color: var(--color-purple-light);
}

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

/* ===============
   HERO SECTION
   =============== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    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;
}

.watercolor-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../duowisteria4.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.6) contrast(1.1);
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   /* background: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, 0.3) 30%,
        rgba(0, 0, 0, 0.7) 90%
    );*/
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at center,
        transparent 30%,
        rgba(0, 0, 0, 0.2) 70%
    );
}

.hero-credits {
    position: absolute;
    bottom: var(--space-xl);
    left: 0;
    right: 0;
    z-index: 2;
    pointer-events: none;
}

.artist-label {
    position: absolute;
    bottom: 0;
    font-size: var(--font-sm);
    font-weight: 600;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 6px rgba(0,0,0,0.8);
    color: var(--color-silver);
}

.artist-label.left { left: var(--space-lg); }
.artist-label.right { right: var(--space-lg); }

.artist-name {
    color: var(--color-gold);
}

.artist-role { color: var(--color-silver); }

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

.hero-title {
    margin-bottom: var(--space-md);
}

.title-main {
    display: block;
    font-size: clamp(var(--font-4xl), 5vw, var(--font-6xl));
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-xs);
    letter-spacing: -0.02em;
}

.title-sub {
    display: block;
    font-size: clamp(var(--font-xl), 3vw, var(--font-3xl));
    font-weight: 300;
    color: var(--color-silver);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-tagline {
    font-size: clamp(var(--font-lg), 2vw, var(--font-2xl));
    color: var(--color-secondary-text);
    margin-bottom: var(--space-xl);
    font-style: italic;
    font-weight: 300;
}

.scroll-indicator {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid var(--color-gold);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

/* ===============
   BUTTONS & CTAs
   =============== */
.cta-button,
.primary-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-md) var(--space-xl);
    background: var(--gradient-gold-purple);
    color: var(--color-white);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-lg);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-purple-neon);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button::before,
.primary-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before,
.primary-cta:hover::before {
    left: 100%;
}

.cta-button:hover,
.primary-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-xl), var(--shadow-purple-neon);
    background: var(--gradient-purple-neon);
}

.cta-button:focus,
.primary-cta:focus {
    outline: 2px solid var(--color-purple-light);
    outline-offset: 2px;
}

.cta-icon {
    font-size: var(--font-xl);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
}

/* ===============
   SECTIONS
   =============== */
.section-title {
    font-size: clamp(var(--font-3xl), 4vw, var(--font-4xl));
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--space-xl);
    color: var(--color-gold);
    position: relative;
    z-index: 20;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gradient-purple-neon);
    margin: var(--space-md) auto 0;
    border-radius: var(--radius-full);
}

/* ===============
   ABOUT SECTION - REDESIGNED
   =============== */
.about-section {
    background: var(--gradient-dark);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* ===============
   BIO SECTION - TWO COLUMNS
   =============== */
.bio-section {
    background: var(--gradient-dark);
    position: relative;
}

.bio-content {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 3;
}

.bio-text-container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-xl);
    align-items: start;
}

.bio-section .bio-text {
    margin: 0;
}

.bio-section .concert-formats {
    grid-column: 1 / -1; /* span full width under two columns */
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 100%;
    background-image: url('../bg.png');
    background-size: contain;
    background-position: center right;
    background-repeat: no-repeat;
    opacity: 0.25;
    z-index: 1;
}

.about-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-black) 0%, transparent 10%);
    z-index: 2;
}

.about-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.about-text-container {
    width: 60%;
    max-width: 700px;
}

.bio-text {
    font-family: 'Crimson Text', serif;
    font-size: clamp(var(--font-lg), 2vw, var(--font-2xl));
    line-height: 1.6;
    color: var(--color-primary-text);
    font-weight: 400;
    text-align: left;
    letter-spacing: 0.01em;
    position: relative;
}

.bio-text::first-letter {
    font-family: 'Playfair Display', serif;
    font-size: 3.5em;
    float: left;
    line-height: 0.8;
    margin: 0.05em 0.08em 0 0;
    color: var(--color-gold);
    font-weight: 600;
}

.bio-text .highlight {
    color: var(--color-gold);
    font-style: italic;
    font-weight: 600;
}

.bio-text .emphasis {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--color-silver);
    font-size: 1.05em;
    letter-spacing: 0.02em;
}

/* Concert Formats */
.concert-formats { 
    margin-top: var(--space-xl);
}

.formats-title {
    font-size: var(--font-2xl);
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: var(--space-sm);
}

.formats-list {
    list-style: none;
    padding-left: 0;
}

.formats-list li {
    margin-bottom: var(--space-xs);
    color: var(--color-secondary-text);
    position: relative;
    padding-left: 1.4rem;
}

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

/* Remove photo carousel entirely */
.photo-carousel,
.about-gallery {
    display: none;
}

/* ===============
   REPERTOIRE SECTION
   =============== */
.repertoire-section {
    background: var(--color-black);
    position: relative;
}

.repertoire-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    justify-items: center;
}

.genre-card {
    background: var(--gradient-dark);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-base);
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    width: 100%;
    max-width: 350px;
    overflow: hidden;
}

.genre-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold-purple);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 1;
}

.genre-card:hover::before {
    opacity: 0.15;
}

.genre-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl), var(--shadow-purple);
    border-color: var(--color-purple-light);
}

.genre-card > * {
    position: relative;
    z-index: 2;
}

.genre-icon {
    font-size: var(--font-4xl);
    margin-bottom: var(--space-md);
    display: block;
}

.genre-title {
    font-size: var(--font-xl);
    font-weight: 600;
    background: var(--gradient-gold-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-md);
}

.repertoire-list {
    list-style: none;
}

.repertoire-list li {
    color: var(--color-secondary-text);
    margin-bottom: var(--space-xs);
    position: relative;
    padding-left: var(--space-md);
}

.repertoire-list li::before {
    content: '♪';
    position: absolute;
    left: 0;
    color: var(--color-silver);
    font-weight: bold;
}

/* ===============
   VIDEO SECTION - MODERN 2025 DESIGN
   =============== */
.video-section {
    background: var(--gradient-dark);
    position: relative;
}

.video-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.video-item {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    background: var(--gradient-dark);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.video-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-gold);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 250px;
    background: var(--color-black);
}

.video-thumbnail iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        transparent 0%, 
        rgba(0, 0, 0, 0.8) 50%, 
        rgba(0, 0, 0, 0.95) 100%
    );
    padding: var(--space-lg);
    transform: translateY(100%);
    transition: transform var(--transition-base);
}

.video-item:hover .video-overlay {
    transform: translateY(0);
}

.video-title {
    font-size: var(--font-lg);
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: var(--space-xs);
    line-height: 1.3;
}

.video-subtitle {
    font-size: var(--font-sm);
    color: var(--color-silver);
    line-height: 1.4;
}

/* Bento Grid Layout for Videos (Modern 2025 Trend) */
@media (min-width: 768px) {
    .video-grid {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: repeat(3, 250px);
        gap: var(--space-md);
    }
    
    .video-item:nth-child(1) {
        grid-column: 1 / 4;
        grid-row: 1 / 3;
    }
    
    .video-item:nth-child(1) .video-thumbnail {
        height: 100%;
    }
    
    .video-item:nth-child(2) {
        grid-column: 4 / 7;
        grid-row: 1 / 2;
    }
    
    .video-item:nth-child(3) {
        grid-column: 4 / 7;
        grid-row: 2 / 3;
    }
    
    .video-item:nth-child(4) {
        grid-column: 1 / 3;
        grid-row: 3 / 4;
    }
    
    .video-item:nth-child(5) {
        grid-column: 3 / 7;
        grid-row: 3 / 4;
    }
}

/* ===============
   CONTACT SECTION - MENU-STYLE DESIGN
   =============== */
.contact-section {
    background: var(--gradient-dark);
}

.contact-content-simple {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-info-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
    text-align: center;
    max-width: 600px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    align-items: center;
    width: 100%;
    max-width: 400px;
}

.contact-item-simple {
    display: flex;
    align-items: center;
    gap: var(--space-sm) var(--space-md);
    transition: all var(--transition-base);
    border-radius: var(--radius-md);
    width: 100%;
    justify-content: flex-start;
}

.contact-icon-simple {
    font-size: 30px;
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 28px;
    text-align: center;
    font-weight: bold;
}

.contact-link-simple {
    color: var(--color-white);
    text-decoration: none;
    font-size: var(--font-base);
    font-weight: 500;
    transition: all var(--transition-base);
    position: relative;
    padding: var(--space-xs) 0;
}

.contact-link-simple::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold-purple);
    transition: width var(--transition-base);
}

.contact-link-simple:hover {
    color: var(--color-purple-light);
}

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

/* Remove all old contact styles */
.contact-links-grid,
.contact-link-card,
.contact-card-icon,
.contact-card-text,
.contact-content,
.contact-info,
.contact-item,
.contact-icon,
.contact-link,
.social-links,
.social-links-simple,
.social-link,
.social-icon,
.download-btn,
.download-icon {
    display: none;
}

/* ===============
   FOOTER - IMPROVED & SIMPLIFIED
   =============== */
.footer {
    background: var(--color-black);
    padding: var(--space-lg) 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: var(--space-md);
}

.footer-left {
    justify-self: start;
}

.footer-center {
    justify-self: center;
}

.footer-right {
    justify-self: end;
}

.footer-text {
    color: var(--color-secondary-text);
    font-size: var(--font-sm);
}

.footer-location {
    color: var(--color-gold);
    font-size: var(--font-base);
    font-weight: 500;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.footer-link {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--color-silver);
    text-decoration: none;
    font-size: var(--font-sm);
    font-weight: 500;
    transition: all var(--transition-base);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-md);
    background: rgba(192, 192, 192, 0.1);
}

.footer-link:hover {
    color: var(--color-gold);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-1px);
}

.footer-icon {
    font-size: var(--font-base);
}

/* ===============
   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) rotate(45deg);
    }
    40% {
        transform: translateX(-50%) translateY(-10px) rotate(45deg);
    }
    60% {
        transform: translateX(-50%) translateY(-5px) rotate(45deg);
    }
}

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

/* ===============
   RESPONSIVE DESIGN
   =============== */
@media (max-width: 900px) {
    .nav-container {
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-toggle {
        display: flex;
        order: 3;
    }
    
    .language-switcher {
        order: 2;
        margin-left: auto;
        margin-right: var(--space-sm);
    }
    
    .nav-logo {
        order: 1;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 350px;
        height: 100vh;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(26, 26, 26, 0.98) 100%);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: var(--space-xl);
        transition: right 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        border-left: 1px solid rgba(212, 175, 55, 0.2);
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    
}

/* Специальные стили для планшетов */
@media (max-width: 820px) and (min-width: 700px) {
    .watercolor-bg {
        background-position: center 30%;
        background-size: cover;
        filter: brightness(0.6) contrast(1.1);
        transform: scale(1.02);
    }

    
    .gradient-overlay {
        background: radial-gradient(
            ellipse at center,
            transparent 30%,
            rgba(0, 0, 0, 0.15) 65%,
            rgba(0, 0, 0, 0.3) 100%
        );
    }
}

@media (max-width: 768px) {
    .nav-menu {
        width: 100%;
        right: -100%;
    }
    
    /* Адаптация фонового изображения для мобильных */
    .hero-section {
        position: relative;
        height: 100vh;
        min-height: 600px;
    }
    
    .watercolor-bg {
        background-image: url('../duowisteria3.jpg');
        background-position: center center;
        background-size: cover;
        filter: brightness(0.5) contrast(1.1);
        transform: scale(1.05);
    }

    
    .gradient-overlay {
        background: radial-gradient(
            ellipse at center,
            transparent 25%,
            rgba(0, 0, 0, 0.2) 60%,
            rgba(0, 0, 0, 0.4) 100%
        );
    }

    .hero-title {
        margin-bottom: var(--space-lg);
    }
    
    .about-section {
        min-height: auto;
        padding: var(--space-xl) 0;
    }

    .hero-credits { bottom: var(--space-lg); }
    .artist-label { font-size: var(--font-xs); }
    
    .about-section::before {
        width: 100%;
        opacity: 0.15;
        background-position: center;
        background-size: cover;
    }
    
    .about-section::after {
        background: linear-gradient(180deg, var(--color-black) 0%, transparent 30%, transparent 70%, var(--color-black) 100%);
    }
    
    .about-content {
        justify-content: center;
        text-align: center;
    }
    
    .about-text-container {
        width: 100%;
        max-width: none;
    }
    
    .bio-text {
        text-align: center;
        font-size: clamp(var(--font-base), 4vw, var(--font-lg));
    }

    /* Bio section becomes single column on mobile */
    .bio-text-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .bio-text::first-letter {
        font-size: 3em;
        margin: 0.05em 0.05em 0 0;
    }
    
    .video-grid {
        grid-template-columns: 1fr !important;
        grid-template-rows: none !important;
    }
    
    .video-item {
        grid-column: auto !important;
        grid-row: auto !important;
    }
    
    .contact-list {
        gap: var(--space-md);
    }
    

    .contact-link-simple {
        font-size: var(--font-base);
    }
    
    .repertoire-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-sm);
    }
    
    .footer-left,
    .footer-center,
    .footer-right {
        justify-self: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .container {
        padding: 0 var(--space-md);
    }
    
    .section-padding {
        padding: var(--space-xl) 0;
    }
}

@media (max-width: 640px) {
    /* Дополнительная адаптация фона для очень маленьких экранов */
    .watercolor-bg {
        background-image: url('../duowisteria3.jpg');
        background-position: center 20%;
        background-size: 120% auto;
        filter: brightness(0.4) contrast(1.2);
    }


    .hero-content {
        padding: 0 var(--space-sm);
    }
    
    .cta-button,
    .primary-cta {
        padding: var(--space-md) var(--space-lg);
        font-size: var(--font-base);
    }
    
    .genre-card {
        padding: var(--space-lg);
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .video-item {
        min-width: auto;
    }
    
    .video-modal-content {
        width: 95%;
        margin: 0 var(--space-sm);
    }
    
    .video-modal-close {
        top: -40px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: var(--font-lg);
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --color-white: #ffffff;
        --color-black: #000000;
        --color-gold: #ffff00;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Print styles */
@media print {
    .navbar,
    .scroll-indicator,
    .carousel-controls,
    .carousel-indicators,
    .booking-form {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero-section {
        height: auto;
        min-height: auto;
    }
}

/* ===============
   BOOKING FORM - REMOVED
   =============== */
/* Booking form styles removed as form is no longer used */

/* ===============
   VIDEO MODAL
   =============== */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    aspect-ratio: 16/9;
    background: var(--color-black);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.video-modal iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: var(--color-gold);
    color: var(--color-black);
    border: none;
    border-radius: var(--radius-full);
    width: 40px;
    height: 40px;
    font-size: var(--font-xl);
    font-weight: bold;
    cursor: pointer;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-close:hover {
    background: var(--color-white);
    transform: scale(1.1);
} 