/* ========================================
   Alexandra Janzen - Singer/Songwriter
   Indie Pop Design System
   ======================================== */

/* CSS Variables */
:root {
    /* Warm, organic color palette */
    --cream: #FAF7F2;
    --cream-dark: #F0EBE3;
    --dusty-rose: #D4A5A5;
    --dusty-rose-dark: #C08B8B;
    --sage: #A8B5A0;
    --sage-dark: #8A9A82;
    --warm-brown: #8B7355;
    --charcoal: #3D3D3D;
    --soft-black: #2A2A2A;
    --gold-accent: #C9A962;

    /* Typography */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Nunito Sans', 'Helvetica Neue', sans-serif;

    /* Spacing */
    --section-padding: 8rem 2rem;
    --container-max: 1100px;

    /* Transitions */
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--charcoal);
    background: var(--cream);
    overflow-x: hidden;
}

::selection {
    background: var(--dusty-rose);
    color: white;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
    color: var(--soft-black);
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    font-size: 1.05rem;
    color: var(--charcoal);
    max-width: 65ch;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    transition: var(--transition-smooth);
}

nav.scrolled {
    background: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    padding: 1rem 3rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--soft-black);
    letter-spacing: 0.05em;
}

.logo-img {
    height: 40px;
    width: auto;
    transition: var(--transition-fast);
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--soft-black);
    letter-spacing: 0.05em;
}

.logo-text span {
    font-style: italic;
}

nav.scrolled .logo-img {
    height: 32px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--charcoal);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--dusty-rose);
    transition: var(--transition-fast);
}

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

.nav-social {
    display: flex;
    gap: 1rem;
}

.nav-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(61, 61, 61, 0.2);
    transition: var(--transition-fast);
}

.nav-social a:hover {
    background: var(--dusty-rose);
    border-color: var(--dusty-rose);
}

.nav-social a:hover svg {
    fill: white;
}

.nav-social svg {
    width: 16px;
    height: 16px;
    fill: var(--charcoal);
    transition: var(--transition-fast);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--soft-black);
    transition: var(--transition-fast);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cream);
    z-index: 1001;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.mobile-menu.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.mobile-menu-links {
    list-style: none;
    text-align: center;
}

.mobile-menu-links li {
    margin: 1.5rem 0;
}

.mobile-menu-links a {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--soft-black);
}

.mobile-menu-links a:hover {
    color: var(--dusty-rose);
}

.mobile-menu-social {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
}

.mobile-menu-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(61, 61, 61, 0.2);
    border-radius: 50%;
    transition: var(--transition-fast);
}

.mobile-menu-social a:hover {
    background: var(--dusty-rose);
    border-color: var(--dusty-rose);
}

.mobile-menu-social svg {
    width: 20px;
    height: 20px;
    fill: var(--charcoal);
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.hero-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
}

.hero-content {
    position: absolute;
    z-index: 2;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
    padding: 0 2rem;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: white;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
}

.hero-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
    font-style: italic;
    max-width: none;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-primary {
    background: var(--charcoal);
    color: white;
}

.btn-primary:hover {
    background: var(--warm-brown);
}

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

.btn-secondary:hover {
    background: var(--charcoal);
    color: white;
}

.btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Sections */
.section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--warm-brown);
    margin-bottom: 1rem;
    opacity: 0.7;
}

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--charcoal);
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

/* About Section */
.about {
    background: var(--cream);
}

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

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--dusty-rose);
    z-index: -1;
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.about-content h2 span {
    color: var(--dusty-rose-dark);
    font-style: italic;
}

.about-content p {
    margin-bottom: 1.5rem;
}

.about-highlights {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--cream-dark);
}

.highlight {
    text-align: center;
}

.highlight-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--dusty-rose-dark);
    line-height: 1;
}

.highlight-text {
    font-size: 0.85rem;
    color: var(--charcoal);
    opacity: 0.7;
    margin-top: 0.5rem;
}

/* Music Section */
.music {
    background: var(--cream);
}

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

.music-card {
    background: white;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.music-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.music-card-image {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
}

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

.music-card:hover .music-card-image img {
    transform: scale(1.05);
}

.music-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(42, 42, 42, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.music-card:hover .music-card-overlay {
    opacity: 1;
}

.play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.play-btn:hover {
    transform: scale(1.1);
    background: var(--dusty-rose);
}

.play-btn svg {
    width: 24px;
    height: 24px;
    fill: var(--soft-black);
    margin-left: 3px;
}

.play-btn:hover svg {
    fill: white;
}

.music-card-content {
    padding: 1.5rem;
}

.music-card-type {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--dusty-rose-dark);
    margin-bottom: 0.5rem;
}

.music-card-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--soft-black);
    margin-bottom: 0.5rem;
}

.music-card-year {
    font-size: 0.9rem;
    color: var(--charcoal);
    opacity: 0.6;
}

/* Streaming Links */
.streaming-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.streaming-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--charcoal);
    background: var(--cream);
    border-radius: 20px;
    transition: var(--transition-fast);
}

.streaming-link:hover {
    background: var(--warm-brown);
    color: white;
}

.streaming-link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Live Section */
.live {
    background: var(--soft-black);
    color: white;
}

.live .section-label {
    color: var(--gold-accent);
}

.live .section-title {
    color: white;
}

.live .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

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

.live-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 2rem;
    align-items: center;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-fast);
}

.live-item:hover {
    background: rgba(255, 255, 255, 0.03);
    padding-left: 1rem;
    padding-right: 1rem;
}

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

.live-date-day {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    line-height: 1;
    color: var(--gold-accent);
}

.live-date-month {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.25rem;
}

.live-info h4 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: white;
    margin-bottom: 0.25rem;
}

.live-location {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.live-link {
    padding: 0.75rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition-fast);
}

.live-link:hover {
    background: var(--gold-accent);
    border-color: var(--gold-accent);
    color: var(--soft-black);
}

.no-dates {
    text-align: center;
    padding: 3rem;
    color: rgba(255, 255, 255, 0.6);
}

.no-dates p {
    margin-bottom: 1.5rem;
    color: inherit;
}

/* Video Section */
.video {
    background: var(--cream);
}

.video-featured {
    max-width: 900px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--soft-black);
    overflow: hidden;
}

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

.video-info {
    padding: 1.5rem;
    background: white;
}

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

.video-info p {
    font-size: 0.95rem;
    color: var(--charcoal);
    opacity: 0.7;
}

/* Contact Section */
.contact {
    background: white;
}

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

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

.contact-info h2 span {
    color: var(--dusty-rose-dark);
    font-style: italic;
}

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

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--dusty-rose-dark);
}

.contact-item-text h4 {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--charcoal);
    opacity: 0.6;
    margin-bottom: 0.25rem;
}

.contact-item-text a,
.contact-item-text p {
    font-size: 1rem;
    color: var(--soft-black);
}

.contact-item-text a:hover {
    color: var(--dusty-rose-dark);
}

.contact-image {
    position: relative;
}

.contact-image img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

/* Newsletter */
.newsletter {
    background: var(--dusty-rose);
    color: white;
    text-align: center;
}

.newsletter .section-label {
    color: rgba(255, 255, 255, 0.8);
}

.newsletter .section-title {
    color: white;
}

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

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    border: none;
    background: white;
    color: var(--soft-black);
}

.newsletter-form input::placeholder {
    color: var(--charcoal);
    opacity: 0.5;
}

.newsletter-form button {
    padding: 1rem 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--soft-black);
    color: white;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.newsletter-form button:hover {
    background: var(--warm-brown);
}

/* Footer */
footer {
    background: var(--soft-black);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--dusty-rose);
    border-color: var(--dusty-rose);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: white;
}

.footer-links h4 {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: white;
    margin-bottom: 1.5rem;
}

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

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

.footer-links a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
    color: var(--dusty-rose);
}

.footer-bottom {
    max-width: var(--container-max);
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a:hover {
    color: var(--dusty-rose);
}

/* Page Header (for subpages) */
.page-header {
    padding: 10rem 2rem 4rem;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    text-align: center;
}

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

.page-header p {
    font-size: 1.1rem;
    color: var(--charcoal);
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Section */
.content-section {
    padding: var(--section-padding);
}

.content-section.alt {
    background: white;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-image img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.content-text h2 {
    margin-bottom: 1.5rem;
}

.content-text h2 span {
    color: var(--dusty-rose-dark);
    font-style: italic;
}

.content-text p {
    margin-bottom: 1rem;
}

/* Tracklist */
.tracklist {
    list-style: none;
    margin-top: 2rem;
}

.tracklist li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--cream-dark);
}

.tracklist-number {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--dusty-rose-dark);
    width: 30px;
}

.tracklist-title {
    flex: 1;
    font-weight: 500;
}

.tracklist-duration {
    font-size: 0.9rem;
    color: var(--charcoal);
    opacity: 0.6;
}

/* Legal Pages */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--cream-dark);
}

.legal-content h2:first-child {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.75rem;
}

.legal-content p {
    margin-bottom: 1rem;
}

.legal-content a {
    color: var(--dusty-rose-dark);
}

.legal-content a:hover {
    text-decoration: underline;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Scrollimation - Scroll-controlled Videos
   ======================================== */

/* Hero Scroll Video */
.hero-scroll-video {
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    overflow: hidden;
}

.hero-scroll-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
}

/* Scroll Video Section - Fullwidth between sections */
.scroll-video-section {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    background: var(--soft-black);
}

.scroll-video-section.short {
    height: 50vh;
}

.scroll-video-section.tall {
    height: 100vh;
}

.scroll-video-section video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}

/* Scroll Video with Text Overlay */
.scroll-video-section .scroll-video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom,
        rgba(0,0,0,0.3) 0%,
        rgba(0,0,0,0.1) 50%,
        rgba(0,0,0,0.4) 100%);
    z-index: 2;
    padding: 2rem;
    text-align: center;
}

.scroll-video-section .scroll-video-text {
    max-width: 600px;
    color: white;
}

.scroll-video-section .scroll-video-text h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.scroll-video-section .scroll-video-text h2 em {
    font-style: italic;
    color: var(--dusty-rose);
}

.scroll-video-section .scroll-video-text p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    max-width: 500px;
    margin: 0 auto;
    text-shadow: 0 1px 10px rgba(0,0,0,0.3);
}

/* Side-by-side scroll video (for about section style) */
.scroll-video-inline {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--cream-dark);
}

.scroll-video-inline video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scroll-video-inline::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--dusty-rose);
    z-index: -1;
}

/* Scroll Progress Indicator (optional visual feedback) */
.scroll-video-progress {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    overflow: hidden;
    z-index: 10;
}

.scroll-video-progress-bar {
    height: 100%;
    background: var(--dusty-rose);
    width: 0%;
    transition: width 0.1s ease-out;
}

/* Parallax text over scroll video */
.scroll-video-quote {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.scroll-video-quote.visible {
    opacity: 1;
}

.scroll-video-quote blockquote {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-style: italic;
    color: white;
    text-shadow: 0 2px 30px rgba(0,0,0,0.5);
    max-width: 700px;
    line-height: 1.4;
}

.scroll-video-quote cite {
    display: block;
    margin-top: 1rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-style: normal;
    color: var(--dusty-rose);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Cinematic bars effect */
.scroll-video-section.cinematic::before,
.scroll-video-section.cinematic::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 10%;
    background: var(--soft-black);
    z-index: 3;
}

.scroll-video-section.cinematic::before {
    top: 0;
}

.scroll-video-section.cinematic::after {
    bottom: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-image,
    .hero-scroll-video {
        width: 50%;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .logo-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .nav-social {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    /* Logo on mobile */
    .logo {
        gap: 0.5rem;
    }

    .logo-img {
        height: 36px;
    }

    .logo-text {
        display: none;
    }

    nav.scrolled .logo-img {
        height: 30px;
    }

    /* Hero on mobile - stacked layout */
    .hero {
        min-height: auto;
        padding: 0;
        flex-direction: column;
    }

    .hero-image,
    .hero-scroll-video {
        position: relative;
        width: 100%;
        height: 70vh;
        clip-path: none;
        margin-bottom: 0;
    }

    .hero-scroll-video video {
        filter: grayscale(0%);
    }

    .hero-content {
        position: relative;
        padding: 2.5rem 1.5rem 4rem;
        text-align: center;
        background: var(--cream);
    }

    .hero-badge {
        margin-bottom: 1rem;
    }

    .hero h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .hero-text {
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 2rem;
    }

    .hero-cta {
        justify-content: center;
        flex-direction: column;
        gap: 0.75rem;
    }

    /* Scroll Video Sections on Mobile */
    .scroll-video-section {
        height: 50vh;
    }

    .scroll-video-section.short {
        height: 35vh;
    }

    .scroll-video-section.tall {
        height: 60vh;
    }

    .scroll-video-section .scroll-video-text h2 {
        font-size: 1.5rem;
    }

    .scroll-video-section .scroll-video-text p {
        font-size: 0.95rem;
        padding: 0 1rem;
    }

    .scroll-video-quote blockquote {
        font-size: 1.2rem;
        padding: 0 1.5rem;
    }

    .scroll-video-quote cite {
        font-size: 0.8rem;
    }

    .scroll-video-progress {
        bottom: 15px;
        width: 60px;
    }

    /* Cinematic bars smaller on mobile */
    .scroll-video-section.cinematic::before,
    .scroll-video-section.cinematic::after {
        height: 6%;
    }

    /* Inline scroll videos */
    .scroll-video-inline {
        aspect-ratio: 1/1;
    }

    .scroll-video-inline::before {
        display: none;
    }

    /* Grid layouts */
    .about-grid,
    .contact-grid,
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .content-grid.reverse {
        direction: ltr;
    }

    .about-image::before {
        display: none;
    }

    .about-highlights {
        justify-content: center;
        gap: 1.5rem;
    }

    .highlight-number {
        font-size: 2rem;
    }

    /* Music grid on mobile */
    .music-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Featured album card mobile */
    .music-card[style*="grid-column: 1 / -1"] .music-card-image > div {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    .music-card[style*="grid-column: 1 / -1"] .music-card-image > div img {
        height: auto;
        width: 60%;
        max-width: 150px;
    }

    .music-card[style*="grid-column: 1 / -1"] .music-card-image > div > div {
        text-align: center;
    }

    .music-card[style*="grid-column: 1 / -1"] .music-card-image > div h3 {
        font-size: 1.8rem !important;
    }

    .music-card[style*="grid-column: 1 / -1"] .music-card-image > div p {
        font-size: 0.9rem !important;
    }

    /* Live section */
    .live-item {
        grid-template-columns: 80px 1fr;
        gap: 1rem;
    }

    .live-link {
        grid-column: 1 / -1;
        text-align: center;
        margin-top: 1rem;
    }

    /* Newsletter */
    .newsletter-form {
        flex-direction: column;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .section {
        padding: 4rem 1.5rem;
    }

    /* Video section */
    .video-featured {
        margin: 0 -1.5rem;
    }

    .video-wrapper {
        aspect-ratio: 16/10;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 1.5rem;
    }

    /* Logo even smaller */
    .logo-img {
        height: 32px;
    }

    nav.scrolled .logo-img {
        height: 28px;
    }

    /* Hero adjustments */
    .hero-scroll-video {
        height: 60vh;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }

    /* Scroll videos smaller */
    .scroll-video-section {
        height: 40vh;
    }

    .scroll-video-section.short {
        height: 30vh;
    }

    .scroll-video-section.tall {
        height: 50vh;
    }

    .scroll-video-quote blockquote {
        font-size: 1rem;
    }

    .scroll-video-section .scroll-video-text h2 {
        font-size: 1.3rem;
    }

    /* Music cards */
    .music-grid {
        grid-template-columns: 1fr;
    }

    .music-card-content {
        padding: 1rem;
    }

    .streaming-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    /* About highlights */
    .about-highlights {
        flex-direction: column;
        gap: 1rem;
    }

    /* Contact items */
    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-item-icon {
        margin: 0 auto;
    }

    /* Section padding */
    .section {
        padding: 3rem 1rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Remove hover effects that don't work well on touch */
    .music-card:hover {
        transform: none;
    }

    .music-card:active {
        transform: scale(0.98);
    }

    /* Make scroll video overlays always visible on touch */
    .music-card-overlay {
        opacity: 0.8;
        background: rgba(42, 42, 42, 0.4);
    }

    /* Larger tap targets */
    .play-btn {
        width: 70px;
        height: 70px;
    }

    .streaming-link {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }

    /* Better touch feedback */
    .btn:active {
        transform: scale(0.97);
    }
}
