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

:root {
    /* Sunset/Sunrise Color Palette - Sharp & Playful */
    --primary-color: #ff6b35; /* Vibrant orange */
    --primary-dark: #e55a2b;
    --secondary-color: #ff8c42; /* Warm orange */
    --accent-color: #ffb347; /* Golden yellow */
    --coral: #ff7f7f; /* Coral pink */
    --sunset-pink: #ff6b9d; /* Sunset pink */
    --peach: #ffcc99; /* Soft peach */
    
    /* New Color Palette from Images - Dark Theme Variants */
    --light-pink: #8b5a6b; /* Darker pink for press/features section */
    --deep-purple: #4a2d55; /* Darker purple/plum for shows section */
    --bright-yellow: #cc9900; /* Darker golden yellow from about section */
    --light-lavender: #7a5a8b; /* Darker lavender/purple from about section */
    --purple-accent: #6b4c7a; /* Purple accent for highlights */
    --press-bg: #5a3d6b; /* Richer purple/plum for press section - better contrast */
    
    /* Dark Theme Base Colors */
    --bg-dark: #1a1a1a; /* Main dark background */
    --bg-darker: #0f0f0f; /* Darker background */
    --bg-card: #2a2a2a; /* Card/container background */
    --bg-card-light: #333333; /* Lighter card background */
    
    --text-dark: #e0e0e0; /* Light text for dark backgrounds */
    --text-light: #b0b0b0; /* Lighter text for secondary content */
    --text-muted: #888888; /* Muted text */
    --bg-light: #2a2a2a; /* Dark theme light background */
    --bg-white: #2a2a2a; /* Dark theme white replacement */
    --border-color: rgba(255, 255, 255, 0.2);
    --shadow-sm: 0 2px 4px 0 rgba(255, 107, 53, 0.1);
    --shadow-md: 0 4px 8px 0 rgba(255, 107, 53, 0.15);
    --shadow-lg: 0 8px 16px 0 rgba(255, 107, 53, 0.2);
    --shadow-xl: 0 12px 24px 0 rgba(255, 107, 53, 0.25);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    background: var(--bg-dark);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 500;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 900;
    letter-spacing: -1px;
    text-transform: uppercase;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: none;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.navbar.scrolled .nav-brand {
    color: var(--primary-color);
    text-shadow: none;
}

.navbar.scrolled .nav-link {
    color: var(--text-dark);
    text-shadow: none;
}

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

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1rem;
    background: transparent;
    border-radius: 4px;
}

.navbar.scrolled .nav-link {
    color: var(--text-dark);
    text-shadow: none;
}

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

.navbar.scrolled .nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    display: none;
}

.nav-social-item {
    display: flex;
    align-items: center;
}

.nav-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: transparent;
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.navbar.scrolled .nav-social-link {
    background: transparent;
    color: var(--text-dark);
    text-shadow: none;
}

.nav-social-link:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    transform: rotate(5deg) scale(1.1);
    border-color: transparent;
}

.navbar.scrolled .nav-social-link:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.nav-cta {
    background: var(--primary-color);
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    text-shadow: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.navbar.scrolled .nav-cta {
    box-shadow: var(--shadow-md);
    border: 2px solid var(--primary-color);
}

.nav-cta::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled .hamburger span {
    background: var(--text-dark);
    box-shadow: none;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: 80px;
    overflow: hidden;
    background: var(--peach);
    transform: none !important;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--peach);
    z-index: 0;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 1;
    filter: brightness(0.95) saturate(1.1);
    transform: none !important;
    will-change: auto;
}

.hero-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 40%, transparent 70%);
    pointer-events: none;
    z-index: 2;
}

.hero-image-container::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
    pointer-events: none;
    z-index: 3;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    z-index: 10;
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    border-radius: 0;
    box-shadow: none;
    border: none;
    animation: none;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: white;
    letter-spacing: -1px;
    text-transform: uppercase;
    text-align: center;
    text-shadow: 
        3px 3px 0 var(--primary-color),
        6px 6px 0 rgba(0, 0, 0, 0.3),
        0 0 20px rgba(0, 0, 0, 0.5);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

.hero-bio {
    color: white;
    font-weight: 500;
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    margin-bottom: 2rem;
    text-shadow: 
        2px 2px 8px rgba(0, 0, 0, 0.9),
        0 0 15px rgba(0, 0, 0, 0.7),
        1px 1px 2px rgba(0, 0, 0, 1);
    line-height: 1.7;
    max-width: 90%;
    letter-spacing: 0.3px;
    text-align: center;
}

.hero-bio a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    text-shadow: 
        2px 2px 8px rgba(0, 0, 0, 0.9),
        0 0 15px rgba(0, 0, 0, 0.7);
}

.hero-bio a:hover {
    color: var(--coral);
    text-decoration: underline;
}

.hero-bio em {
    font-style: italic;
    font-weight: 600;
    color: var(--accent-color);
    text-shadow: 
        2px 2px 8px rgba(0, 0, 0, 0.9),
        0 0 20px var(--accent-color),
        1px 1px 2px rgba(0, 0, 0, 1);
}


.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn {
    padding: 0.875rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), 0 0 0 3px rgba(255, 255, 255, 0.3);
    font-weight: 700;
    border: 3px solid white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-xl);
    background: var(--primary-dark);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    border: 3px solid white;
    font-weight: 700;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    text-shadow: none;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-lg);
}

.btn-tertiary {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.5rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: auto;
    width: 100%;
    flex-shrink: 0;
    height: 42px;
    min-height: 42px;
    margin-bottom: 0;
}

.btn-tertiary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 3px solid var(--primary-color);
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 700;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-md);
}

.btn-block {
    width: 100%;
}

.social-links-hero {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.social-link.instagram:hover {
    background: var(--sunset-pink);
    color: white;
    transform: translateY(-3px) scale(1.05);
}

.social-link.tiktok:hover {
    background: var(--text-dark);
    color: white;
    transform: translateY(-3px) scale(1.05);
}

.social-link.youtube:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px) scale(1.05);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 10;
    animation: bounce 2s infinite;
}

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

.scroll-arrow {
    width: 3px;
    height: 30px;
    background: white;
    position: relative;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 3px solid white;
    border-bottom: 3px solid white;
    transform: rotate(45deg);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}

/* Trust Bar (As Seen On) */
.trust-bar {
    background: var(--bg-darker);
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 5;
}

.trust-label {
    text-align: center;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.trust-bar .press-logos {
    margin-bottom: 0;
}

.trust-bar .press-logo-img {
    max-height: 40px;
    opacity: 0.6;
}

.trust-bar .press-logo:hover .press-logo-img {
    opacity: 1;
}

/* Stats Section */
.stats {
    padding: 4rem 0;
    background: var(--bg-light);
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px) rotate(0.5deg);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--accent-color);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 0 var(--accent-color);
}

.stat-label {
    color: var(--text-light);
    font-weight: 500;
}

/* Shows Section */
.shows {
    padding: 6rem 0;
    background: var(--deep-purple);
    position: relative;
}

/* Smooth curved border between Shows and Press */
.shows::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: var(--press-bg);
    clip-path: ellipse(70% 100% at 50% 100%);
    z-index: 1;
}

/* Standardized Section Headers - Matching Hero Title Style with Orange/White Color Scheme */
.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    text-transform: uppercase;
    line-height: 1.1;
    color: white;
    text-shadow: 
        2px 2px 0 var(--primary-color),
        4px 4px 0 rgba(0, 0, 0, 0.3),
        0 0 15px rgba(0, 0, 0, 0.4);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Section subtitles - matching style */
.section-subtitle {
    text-align: center;
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    font-weight: 700;
    margin-bottom: 3rem;
    letter-spacing: 0.3px;
    color: white;
    text-shadow: 
        1px 1px 0 var(--primary-color),
        2px 2px 0 rgba(0, 0, 0, 0.3),
        0 0 10px rgba(0, 0, 0, 0.4);
}

/* Section titles - no opaque background needed since sections have colored backgrounds */
.shows .section-title,
.videos .section-title,
.press .section-title,
.about .section-title,
.contact .section-title {
    background: transparent;
    padding: 0;
    box-shadow: none;
}

/* Newsletter section - already has orange background, so no dark background needed */
.newsletter .section-title,
.newsletter h2 {
    background: transparent;
    padding: 0;
    box-shadow: none;
    text-shadow: 
        2px 2px 0 rgba(255, 255, 255, 0.3),
        4px 4px 0 rgba(0, 0, 0, 0.5),
        0 0 15px rgba(0, 0, 0, 0.4);
}

.section-subtitle {
    text-align: center;
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    font-weight: 600;
    margin-bottom: 3rem;
    letter-spacing: 0.3px;
}

/* Section subtitles on light backgrounds */
.shows .section-subtitle,
.videos .section-subtitle,
.press .section-subtitle,
.about .section-subtitle,
.contact .section-subtitle {
    color: var(--text-dark);
}

/* Section subtitles on dark/colored backgrounds */
.newsletter .section-subtitle,
.newsletter > p {
    color: white;
    opacity: 0.95;
}

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

.loading-shows,
.no-shows {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-light);
}

.loading-shows {
    font-size: 1.125rem;
    font-weight: 500;
}

.no-shows p {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.no-shows .small-text {
    font-size: 0.9rem;
    color: var(--text-light);
}

.no-shows a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.no-shows a:hover {
    text-decoration: underline;
}

.show-card {
    background: var(--bg-card);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.show-card:hover {
    transform: translateY(-5px) rotate(1deg);
    box-shadow: var(--shadow-xl);
    border: 3px solid var(--accent-color);
}

.show-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border-radius: 0.5rem;
    width: fit-content;
    box-shadow: var(--shadow-md);
    border: 3px solid var(--accent-color);
}

.date-day {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.date-month {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.show-info h3 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.show-location,
.show-time {
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

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

/* Videos Section */
.videos {
    padding: 6rem 0;
    background: var(--light-pink);
    position: relative;
    margin-top: -1px; /* Overlap with wavy border */
}

/* Smooth curved border between Videos and About */
.videos::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: var(--light-lavender);
    clip-path: ellipse(70% 100% at 50% 100%);
    z-index: 1;
}

.social-feeds {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feed-section {
    background: var(--bg-card);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.instagram-feed {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.instagram-feed blockquote.instagram-media {
    margin: 0 auto !important;
}

.tiktok-feed {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 400px;
}

.tiktok-feed blockquote.tiktok-embed {
    margin: 0 auto !important;
    width: 100%;
}

.feed-section h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.feed-placeholder {
    padding: 3rem 2rem;
    text-align: center;
    background: var(--bg-light);
    border-radius: 0.5rem;
    color: var(--text-light);
}

.small-text {
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

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

.video-card {
    background: var(--bg-card);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.video-card:hover {
    transform: translateY(-5px) rotate(-1deg);
    box-shadow: var(--shadow-xl);
    border: 3px solid var(--accent-color);
}

.video-thumbnail {
    width: 100%;
    height: 200px;
    background: var(--coral);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.play-button {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    position: relative;
    cursor: pointer;
}

.play-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-left: 15px solid var(--primary-color);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.video-card h4 {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 900;
    padding: 1rem 1.5rem 0.5rem;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.video-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.video-card p a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.video-card p a:hover {
    color: var(--coral);
    text-decoration: underline;
}

/* Press Section */
.press {
    padding: 6rem 0;
    background: var(--press-bg);
    position: relative;
    margin-top: -1px; /* Overlap with zig-zag */
}

/* Smooth curved border between Press and Videos */
.press::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: var(--light-pink);
    clip-path: ellipse(70% 100% at 50% 100%);
    z-index: 1;
}

.press-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 4rem;
    align-items: center;
}

.press-logo {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
    line-height: 0;
}

.press-logo:hover {
    transform: scale(1.1);
    text-decoration: none;
}

.press-logo-img {
    height: auto;
    max-height: 60px;
    max-width: 180px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: all 0.3s ease;
}

/* Make Independent logo larger for proportional text sizing */
.press-logo[href*="independent"] .press-logo-img {
    max-height: 75px;
    max-width: 220px;
}

.press-logo:hover .press-logo-img {
    filter: brightness(0) invert(1);
    opacity: 1;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.press-logo-text-label {
    display: none;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-light);
    opacity: 0.7;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.press-logo-text .press-logo-text-label {
    display: inline-block;
}

.press-logo-text:hover .press-logo-text-label {
    opacity: 1;
    color: var(--primary-color);
    transform: scale(1.15) rotate(2deg);
    font-weight: 800;
}

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

.media-interviews-carousel {
    margin-bottom: 4rem;
    position: relative;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    padding: 0 60px;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 calc(50% - 1rem);
    min-width: 0;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.carousel-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.carousel-dot:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .carousel-container {
        padding: 0 50px;
    }
    
    .carousel-slide {
        flex: 0 0 100%;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

.interview-card {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--primary-color);
    border-top: 3px solid var(--accent-color);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 650px;
    min-height: 650px;
    max-height: 650px;
}

.interview-card:hover {
    transform: translateY(-3px) rotate(0.5deg);
    box-shadow: var(--shadow-lg);
}

.interview-header {
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.interview-source {
    display: block;
    margin-bottom: 1rem;
    width: 100%;
    flex-shrink: 0;
}

.interview-logo {
    height: 40px;
    width: auto;
    max-width: 140px;
    display: block !important;
    filter: brightness(0.95);
    transition: all 0.3s ease;
    object-fit: contain;
    visibility: visible !important;
    opacity: 1 !important;
}

.interview-card:hover .interview-logo {
    filter: brightness(1.1);
}

.interview-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin: 0;
    letter-spacing: -0.5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    flex-shrink: 0;
    max-height: calc(1.1rem * 1.3 * 2);
    min-height: calc(1.1rem * 1.3 * 2);
}

.interview-preview {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--accent-color);
    border-radius: 0.25rem;
    font-style: italic;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 0;
    /* Increased height to prevent bottom clipping */
    height: 6rem;
    min-height: 6rem;
}

.interview-quote-image {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
    flex-shrink: 1;
    flex-grow: 1;
    max-height: 420px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.interview-quote-image:hover {
    transform: scale(1.02);
}

.quote-image {
    width: 100%;
    height: 100%;
    max-height: 420px;
    display: block;
    border-radius: 0.5rem;
    object-fit: contain;
    object-position: center;
}

.interview-additional {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    flex-grow: 1;
    max-height: calc(0.8rem * 1.5 * 6 + 1.5rem);
}

.interview-embed {
    width: 100%;
    border-radius: 0.5rem;
    overflow: hidden;
    flex-shrink: 0;
    flex-grow: 1;
    min-height: 280px;
    max-height: 320px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.interview-embed iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 280px;
    border: none;
}

.tiktok-embed-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    min-height: 280px;
    max-height: 320px;
    transform: scale(0.85);
    transform-origin: center;
    overflow: hidden;
    flex-shrink: 0;
    margin-bottom: 1rem;
}

.tiktok-embed-container blockquote.tiktok-embed {
    margin: 0 auto !important;
    width: 100%;
    max-width: 100%;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--primary-color);
    border-top: 3px solid var(--accent-color);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px) rotate(0.5deg);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    color: var(--accent-color);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
}

/* About Section - Split background with yellow and lavender with organic wavy divider */
.about {
    padding: 6rem 0;
    background: var(--light-lavender);
    position: relative;
    overflow: hidden;
    margin-top: -1px; /* Overlap with scalloped border */
}

.about::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 52%;
    background: var(--bright-yellow);
    z-index: 0;
    border-radius: 0 100% 100% 0 / 0 50% 50% 0;
    clip-path: polygon(0 0, 100% 0, 98% 15%, 100% 30%, 97% 45%, 100% 60%, 98% 75%, 100% 100%, 0 100%);
}

.about::after {
    content: '';
    position: absolute;
    left: 48%;
    top: -5%;
    bottom: -5%;
    width: 8%;
    background: var(--bright-yellow);
    z-index: 0;
    border-radius: 50%;
    opacity: 0.9;
}

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

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.about-text a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.about-text a:hover {
    color: var(--coral);
    text-decoration: underline;
}

.about-highlights {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-item {
    padding: 1rem;
    background: var(--bg-card);
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 5px solid var(--primary-color);
    border-top: 3px solid var(--accent-color);
    box-shadow: var(--shadow-sm);
}

.about-image {
    position: relative;
}

.about-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--accent-color);
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: var(--sunset-pink);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--accent-color);
}

.venues-title {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: var(--text-dark);
}

.venues-grid-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.venues-grid-list span {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.venues-grid-list span:hover {
    border-color: var(--primary-color);
    color: white;
    background: rgba(255, 107, 53, 0.1);
}

/* Newsletter Section */
.newsletter {
    padding: 4rem 0;
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.newsletter h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    text-transform: uppercase;
    line-height: 1.1;
    color: white;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.5),
        0 0 10px rgba(0, 0, 0, 0.3);
}

.newsletter > p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto 1rem;
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: 2px solid white;
    outline-offset: 2px;
}

.newsletter-note {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--light-lavender);
}

.contact-content {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
}

.contact-info {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-info h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.contact-info ul {
    list-style: none;
    margin: 2rem 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    text-align: left;
}

.contact-info li {
    padding: 0.8rem 1.5rem;
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-info li:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: var(--primary-color);
}

.contact-details {
    margin: 2rem 0;
}

.contact-details p {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.social-links-contact {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 50%;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.social-icon.instagram:hover {
    background: var(--sunset-pink);
    color: white;
    transform: translateY(-3px) rotate(5deg) scale(1.1);
}

.social-icon.tiktok:hover {
    background: var(--text-dark);
    color: white;
    transform: translateY(-3px) rotate(-5deg) scale(1.1);
}

.social-icon.youtube:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px) rotate(5deg) scale(1.1);
}

.booking-form {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 800px;
    margin: 0 auto 4rem;
}

.booking-form-element {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.booking-form-element .form-group:last-of-type {
    grid-column: 1 / -1;
}

.booking-form-element button {
    grid-column: 1 / -1;
    justify-self: center;
    min-width: 250px;
}

.booking-form h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 900;
    margin-bottom: 2rem;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.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: 0.875rem;
    background: var(--bg-darker);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    border-width: 3px;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

.form-group textarea {
    resize: vertical;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-align: center;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 2px solid #4caf50;
}

.form-message.error {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
    border: 2px solid #f44336;
}

.form-message.sending {
    background: rgba(255, 107, 53, 0.2);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

/* Footer */
.footer {
    background: var(--bg-darker);
    color: white;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-brand h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 900;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    color: white;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links h4,
.footer-social h4 {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    color: white;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.social-links-footer {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-links-footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links-footer a:hover {
    color: white;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--bg-card);
        width: 100%;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s ease;
        gap: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-content {
        bottom: 10%;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        max-width: 95%;
        padding: 0 2%;
    }
    
    .hero-title {
        font-size: clamp(1.75rem, 6vw, 3rem);
    }
    
    .hero-bio {
        font-size: clamp(0.85rem, 2vw, 1rem);
        max-width: 95%;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        flex-direction: column;
        align-items: center;
    }

    .booking-form {
        padding: 1.5rem;
        width: 100%;
    }

    .booking-form-element {
        grid-template-columns: 1fr;
    }

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

    .social-feeds {
        grid-template-columns: 1fr;
    }

    .press-logos {
        gap: 2rem;
    }

    .press-logo-img {
        max-height: 50px;
        max-width: 150px;
    }
    
    .press-logo[href*="independent"] .press-logo-img {
        max-height: 62px;
        max-width: 185px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .shows-grid,
    .videos-grid,
    .testimonials {
        grid-template-columns: 1fr;
    }

    .press-logos {
        gap: 1.5rem;
    }

    .press-logo-img {
        max-height: 40px;
        max-width: 120px;
    }
    
    .press-logo[href*="independent"] .press-logo-img {
        max-height: 50px;
        max-width: 150px;
    }

    .contact-info ul {
        grid-template-columns: 1fr;
    }
}

