* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    font-size: 16px;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-text);
}

:root {
    --color-primary: #D4A574;
    --color-primary-dark: #B8956A;
    --color-secondary: #7C9A92;
    --color-accent: #E8B89D;
    --color-warm: #F5E6D3;
    --color-text: #3D3D3D;
    --color-text-light: #6B6B6B;
    --color-white: #FFFFFF;
    --color-bg: #FDF8F3;
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', Times, serif;
    --font-body: 'Nunito', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
    --radius: 12px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    font-size: 16px;
}

main {
    margin-top: 70px;
}

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

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-text);
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

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

a:hover {
    color: var(--color-secondary);
}

.header {
    background: var(--color-white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text);
}

.logo:hover {
    color: var(--color-text);
}

.logo img {
    height: 48px;
    width: auto;
    display: block;
}

.logo-text {
    font-weight: 300;
    font-size: 0.85rem;
    color: #888;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    color: var(--color-text);
    font-weight: 600;
    padding: 8px 0;
    position: relative;
}

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

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-text);
    border-radius: 3px;
    transition: var(--transition);
}

.hero {
    margin: 0 auto;
    display: flex;
    max-width: 1200px;
    padding: 80px 24px 40px;
    gap: 50px;
    align-items: center;
}

.hero-image {
    flex: 0 0 320px;
    height: 400px;
    overflow: hidden;
    position: relative;
    border-radius: calc(var(--radius) + 6px);
    box-shadow: var(--shadow-hover);
}



.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 10%;
}

.hero-content {
    flex: 1;
    padding: 40px 32px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 550px;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--color-primary-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-text {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 520px;
    margin: 0 0 2rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: flex-start;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

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

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

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

.btn-secondary:hover {
    background: #6A8A82;
    border-color: #6A8A82;
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary-dark);
    border-color: var(--color-primary);
}

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

.hero-decoration {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.15;
    font-size: 8rem;
}

.music-note {
    position: absolute;
    animation: float 6s ease-in-out infinite;
}

.note-1 {
    top: -50px;
    right: 0;
    animation-delay: 0s;
}

.note-2 {
    top: 50px;
    right: 100px;
    animation-delay: 2s;
}

.note-3 {
    top: -20px;
    right: 200px;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.spotify-promo {
    padding: 90px 0;
    background: var(--color-bg);
}

.spotify-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    background: var(--color-white);
    padding: 50px;
    border-radius: calc(var(--radius) + 4px);
    box-shadow: var(--shadow);
}

.album-cover {
    flex: 0 0 300px;
    height: 300px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    position: relative;
}

.album-cover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.35));
}

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

.streaming-badges {
    position: absolute;
    bottom: 18px;
    right: 18px;
    display: flex;
    gap: 10px;
    z-index: 2;
}

.spotify-badge,
.youtube-badge {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    border: 3px solid rgba(255, 255, 255, 0.8);
}

.spotify-badge {
    background: #1DB954;
    color: var(--color-white);
}

.spotify-badge svg {
    width: 28px;
    height: 28px;
}

.youtube-badge {
    background: #FF0000;
    color: var(--color-white);
}

.youtube-badge svg {
    width: 28px;
    height: 28px;
}

.amazon-badge {
    background: #232F3E;
    color: var(--color-white);
}

.amazon-badge svg {
    width: 20px;
    height: 20px;
}

.amazon-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #232F3E;
    color: var(--color-white);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    text-decoration: none;
}

.amazon-btn:hover {
    background: #131A22;
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    text-decoration: none;
}

.album-info {
    flex: 1;
}

.album-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--color-primary-dark);
}

.album-info p {
    font-size: 1.15rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.spotify-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1DB954;
    color: var(--color-white);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    text-decoration: none;
}

.spotify-btn:hover {
    background: #1ed760;
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    text-decoration: none;
}

.youtube-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FF0000;
    color: var(--color-white);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    text-decoration: none;
}

.youtube-btn:hover {
    background: #CC0000;
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    text-decoration: none;
}

.spotify-icon {
    font-size: 1.4rem;
}

.streaming-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: nowrap;
}

.streaming-buttons-stacked {
    flex-direction: column;
    gap: 10px;
}

.streaming-buttons-stacked .spotify-btn,
.streaming-buttons-stacked .youtube-btn,
.streaming-buttons-stacked .amazon-btn {
    width: 100%;
    justify-content: center;
}

.streaming-buttons-inline {
    flex-direction: row;
    gap: 8px;
    flex-wrap: wrap;
}

.streaming-buttons-inline .spotify-btn,
.streaming-buttons-inline .youtube-btn,
.streaming-buttons-inline .amazon-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.features {
    padding: 80px 0;
    background: var(--color-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background-size: cover;
    background-position: center;
    padding: 40px 32px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    position: relative;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--color-white);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(160deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.75));
    border-radius: var(--radius);
    z-index: 1;
}

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

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.feature-card:hover::before {
    background: linear-gradient(160deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.85));
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--color-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.feature-card h3 {
    margin-bottom: 12px;
    color: var(--color-white);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.45);
}

.feature-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.45);
}

.feature-link {
    font-weight: 600;
    color: var(--color-white);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: rgba(0, 0, 0, 0.25);
}

.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--color-white);
}

.page-header {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-warm) 100%);
    text-align: center;
}

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

.page-header p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0;
}

.content-section {
    padding: 80px 0;
}

.content-section .container {
    max-width: 900px;
}

.content-section h2 {
    color: var(--color-primary-dark);
    margin-top: 2.5rem;
}

.content-section h2:first-child {
    margin-top: 0;
}

.content-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.content-section li {
    margin-bottom: 0.5rem;
}

.highlight-box {
    background: var(--color-warm);
    padding: 32px;
    border-radius: var(--radius);
    margin: 2rem 0;
    border-left: 4px solid var(--color-primary);
}

.highlight-box h3 {
    margin-bottom: 1rem;
    color: var(--color-primary-dark);
}

.workshop-cta {
    display: flex;
    gap: 40px;
    align-items: center;
    background: var(--color-warm);
    padding: 40px;
    border-radius: var(--radius);
    margin: 2rem 0;
}

.workshop-cta-image {
    flex: 0 0 200px;
    height: 200px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.workshop-cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.workshop-cta-content {
    flex: 1;
}

.workshop-cta-content h3 {
    margin-bottom: 1rem;
    color: var(--color-primary-dark);
}

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

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

.criteria-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.criteria-list li::before {
    content: '•';
    flex-shrink: 0;
    color: var(--color-primary);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.criteria-list.numbered {
    counter-reset: criteria-counter;
}

.criteria-list.numbered li {
    counter-increment: criteria-counter;
    padding-left: 2rem;
}

.criteria-list.numbered li::before {
    content: counter(criteria-counter) ".";
    font-size: 1.1rem;
    font-weight: 700;
}

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

.workshop-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
}

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

.content-section .download-list {
    list-style: none;
    margin-left: 0 !important;
    margin-bottom: 1.5rem;
    padding: 0;
}

.download-list li {
    margin-bottom: 0.6rem;
}

.download-list li:not(:has(.download-link)) {
    padding-left: 1.2rem;
    color: var(--color-text-light);
    font-style: italic;
}

.download-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--color-white);
    border-radius: 8px;
    border: 1px solid #E5E5E5;
    font-weight: 600;
    color: var(--color-text);
    transition: var(--transition);
    text-decoration: none;
}

.download-link:hover {
    border-color: var(--color-primary);
    background: var(--color-warm);
    transform: translateX(4px);
    color: var(--color-primary-dark);
}

.pdf-badge {
    margin-left: auto;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    background: var(--color-warm);
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.image-section {
    position: relative;
    margin: 3rem 0;
    border-radius: var(--radius);
    overflow: hidden;
}

.image-section-small {
    max-width: 500px;
    margin: 1rem auto;
}

.image-section img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    background: rgba(0, 0, 0, 0.6);
    color: var(--color-white);
    padding: 12px 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    font-size: 0.9rem;
}

.gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
    gap: 12px;
    margin: 3rem 0;
    border-radius: var(--radius);
    overflow: hidden;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-wide {
    grid-column: span 2;
    grid-row: span 2;
}

.workshop-grid {
    display: grid;
    gap: 48px;
    margin-top: 2rem;
}

.workshop-card {
    background: var(--color-white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--color-primary);
    margin-bottom: 48px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.workshop-image {
    flex: 0 0 320px;
    height: 420px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.workshop-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.workshop-text {
    flex: 1;
}

.workshop-text h3 {
    margin-top: 0;
}

.workshop-card h3 {
    color: var(--color-primary-dark);
    margin-bottom: 1.5rem;
}

.workshop-card ul {
    list-style: none;
    margin-left: 0;
}

.workshop-card li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
}

.workshop-card li::before {
    content: '♪';
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

.download-section {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #5A7A72 100%);
    padding: 60px;
    border-radius: var(--radius);
    text-align: center;
    color: var(--color-white);
    margin: 3rem 0;
}

.download-section h2 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.download-section p {
    opacity: 0.9;
    margin-bottom: 2rem;
}

.download-section .btn {
    background: var(--color-white);
    color: var(--color-secondary);
    border-color: var(--color-white);
}

.download-section .btn:hover {
    background: var(--color-warm);
    color: var(--color-secondary);
}

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

.contact-info {
    background: var(--color-warm);
    padding: 40px;
    border-radius: var(--radius);
}

.contact-info h3 {
    margin-bottom: 1.5rem;
    color: var(--color-primary-dark);
}

.contact-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow);
}

.contact-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.5rem;
    width: 40px;
}

.contact-detail p {
    margin: 0;
}

.contact-detail strong {
    display: block;
    margin-bottom: 4px;
}

.contact-form {
    background: var(--color-white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-form h3 {
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #E5E5E5;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

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

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

blockquote {
    background: var(--color-warm);
    border-left: 4px solid var(--color-primary);
    padding: 20px 24px;
    margin: 24px 0;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: var(--color-text);
}

blockquote p {
    margin: 0;
}

.footer {
    background: var(--color-text);
    color: var(--color-white);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.footer-info p {
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: var(--color-accent);
}

.footer-contact a:hover {
    color: var(--color-white);
}

.footer-bottom {
    text-align: center;
    opacity: 0.7;
    font-size: 0.9rem;
}

.spotify-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #1DB954;
    color: var(--color-white);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    margin: 1rem 0;
    width: 100%;
}

.spotify-link:hover {
    background: #1ed760;
    color: var(--color-white);
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .workshop-cta {
        flex-direction: column;
        text-align: center;
    }

    .workshop-cta-image {
        flex: none;
        width: 160px;
        height: 160px;
        border-radius: 50%;
    }

    h1 {
        font-size: 1.8rem;
    }
    
    .hero-image {
        width: 100%;
        flex: none;
        height: 160px;
        border-radius: var(--radius);
        overflow: hidden;
    }
    
    .hero-image img {
        object-fit: cover;
        object-position: center center;
    }
    
    .hero-content {
        padding: 24px;
        background: var(--color-white);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        display: block;
        text-align: center;
        width: 100%;
        max-width: none;
    }
    
    .hero {
        flex-direction: column;
        min-height: auto;
        gap: 24px;
        padding: 60px 24px 40px;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: var(--shadow);
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .spotify-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 32px;
    }
    
    .album-cover {
        flex: 0 0 200px;
        height: 200px;
        width: 200px;
    }
    
    .streaming-buttons {
        flex-direction: column;
    }
    
    .streaming-buttons .spotify-btn,
    .streaming-buttons .youtube-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .page-header {
        padding: 90px 16px 36px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .content-section {
        padding: 60px 0;
    }
    
    .workshop-card {
        flex-direction: column;
        padding: 24px;
    }
    
    .workshop-image {
        flex: none;
        width: 100%;
        height: 250px;
        margin-bottom: 1rem;
    }
    
    .download-section {
        padding: 40px 24px;
    }
    
    .gallery-mosaic {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
    }
    
    .gallery-wide {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .criteria-list li {
        padding-left: 1.5rem;
    }
    
    .workshop-list li {
        padding-left: 1.2rem;
    }
}
    
    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
}

/* Lightbox */
.image-section img,
.gallery-item img {
    cursor: pointer;
}

.image-section img:hover,
.gallery-item img:hover {
    filter: brightness(0.9);
}

.lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.85);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    padding: 24px;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    transform: scale(0.95);
    transition: transform 0.25s ease;
}

.lightbox-overlay.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.2rem;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.2s ease;
}

.lightbox-close:hover {
    transform: scale(1.15);
}
