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

:root {
    --primary-color: #ff6b35;
    --secondary-color: #4ecdc4;
    --dark-bg: #0a0a0a;
    --dark-secondary: #1a1a1a;
    --dark-tertiary: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #808080;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 15px 50px rgba(0, 0, 0, 0.5);
}

html {
    scroll-behavior: smooth;
}

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.nav-logo a {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--text-primary);
    text-decoration: none;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease;
}

.nav-logo a:hover {
    transform: scale(1.05);
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    background-image: url('assets/back.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

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

.hero-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 5rem;
    font-weight: 400;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 300;
}

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

.hero-new-single {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-new-single:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
    background: rgba(10, 10, 10, 0.95);
}

.hero-single-cover {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.hero-single-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-single-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero-single-badge {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-single-date {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 500;
}

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

.btn-primary {
    background: var(--gradient-1);
    color: var(--text-primary);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--text-primary);
}

.btn-secondary:hover {
    background: var(--text-primary);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.btn-academy {
    background: var(--gradient-2);
    color: var(--text-primary);
    margin-top: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 5px 20px rgba(245, 87, 108, 0.4);
}

.btn-academy:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(245, 87, 108, 0.6);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn-academy:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-spotify {
    background: #1db954;
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    box-shadow: 0 5px 20px rgba(29, 185, 84, 0.4);
}

.btn-spotify:hover {
    background: #1ed760;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(29, 185, 84, 0.6);
}

/* Section Styles */
section {
    padding: 5rem 0;
    position: relative;
}

.section-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 3.5rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 3rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
}

/* New Single Section */
.new-single-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a1a2a 50%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.new-single-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(102, 126, 234, 0.15) 0%, transparent 50%);
}

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

.single-cover {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    aspect-ratio: 1;
    background: var(--dark-tertiary);
    transition: box-shadow 0.3s ease;
}

.single-cover:hover {
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.7);
}

.single-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
}

.cover-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--dark-tertiary);
    color: var(--text-muted);
    text-align: center;
    padding: 2rem;
    z-index: 0;
}

.cover-placeholder p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.cover-placeholder small {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Placeholder will be hidden by JavaScript when image loads */

.single-info {
    text-align: left;
}

.single-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--gradient-2);
    color: var(--text-primary);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(245, 87, 108, 0.4);
}

.single-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 4rem;
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    text-transform: uppercase;
}

.single-release-date {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.single-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.single-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-presave {
    background: var(--gradient-2);
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(245, 87, 108, 0.4);
    transition: all 0.3s ease;
}

.btn-presave:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(245, 87, 108, 0.6);
}

.btn-presave svg {
    width: 24px;
    height: 24px;
}

.btn-single-spotify {
    background: #1db954;
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(29, 185, 84, 0.4);
    transition: all 0.3s ease;
}

.btn-single-spotify:hover {
    background: #1ed760;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(29, 185, 84, 0.6);
}

.btn-single-spotify svg {
    width: 24px;
    height: 24px;
}

/* Bio Section */
.bio-section {
    background: var(--dark-secondary);
}

.bio-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
}

.bio-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 1;
    background: var(--dark-tertiary);
}

.bio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--dark-tertiary);
    color: var(--text-muted);
    text-align: center;
    padding: 2rem;
}

.image-placeholder p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.image-placeholder small {
    font-size: 0.9rem;
}

/* Image placeholder removed - using actual image */

.bio-text h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-transform: uppercase;
}

.bio-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Academy Section */
.academy-section {
    background: var(--dark-bg);
}

.academy-content {
    max-width: 900px;
    margin: 0 auto;
}

.academy-card {
    background: var(--dark-secondary);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.academy-logo {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 1.5rem;
    text-align: center;
}

.academy-logo img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.academy-logo:hover img {
    transform: scale(1.05);
}

.academy-card h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--text-primary);
    text-transform: uppercase;
}

.academy-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
}

/* Music Section */
.music-section {
    background: var(--dark-secondary);
}

.music-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.music-card {
    background: var(--dark-bg);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.music-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.music-card h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-transform: uppercase;
}

.music-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.spotify-container {
    margin-top: 2rem;
}

.spotify-placeholder {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1rem;
}

.dishwalla-image {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.dishwalla-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

.dishwalla-info {
    text-align: left;
}

.dishwalla-intro {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    text-align: center;
}

.dishwalla-intro strong {
    color: var(--primary-color);
    font-weight: 600;
}

.dishwalla-history {
    margin-bottom: 2rem;
}

.dishwalla-history h4 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-align: center;
    text-transform: uppercase;
}

.dishwalla-history p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: left;
}

.dishwalla-history em {
    color: var(--secondary-color);
    font-style: italic;
}

.penfifteen-image {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.penfifteen-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

.penfifteen-info {
    text-align: left;
}

.penfifteen-intro {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    text-align: center;
}

.penfifteen-intro strong {
    color: var(--primary-color);
    font-weight: 600;
}

.penfifteen-history {
    margin-bottom: 2rem;
}

.penfifteen-history h4 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-align: center;
    text-transform: uppercase;
}

.penfifteen-history p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: left;
}

/* Solo (George Pendergast) card */
.solo-image {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.solo-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

.solo-info {
    text-align: left;
}

.solo-intro {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    text-align: center;
}

.solo-intro strong {
    color: var(--primary-color);
    font-weight: 600;
}

.solo-history {
    margin-bottom: 2rem;
}

.solo-history h4 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-align: center;
    text-transform: uppercase;
}

.solo-history p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: left;
}

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

.btn-apple {
    background: var(--gradient-3);
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    box-shadow: 0 5px 20px rgba(79, 172, 254, 0.4);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-apple:hover {
    opacity: 0.95;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(79, 172, 254, 0.5);
}

.btn-apple svg {
    width: 24px;
    height: 24px;
}

.spotify-container {
    text-align: center;
    margin-top: 2rem;
}

/* Events Section */
.events-section {
    background: var(--dark-bg);
}

.events-message {
    text-align: center;
    padding: 3rem 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.events-message p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 400;
}

/* Gallery Section */
.gallery-section {
    background: var(--dark-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 1;
    background: var(--dark-tertiary);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

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

/* Hide gallery items with broken/blank images */
.gallery-item img[src=""],
.gallery-item:has(img[src=""]) {
    display: none;
}

.gallery-item:has(img[src*="tempImage"]) {
    display: none;
}

/* Hide gallery items that fail to load */
.gallery-item img[src]:not([src=""]):not([src*="tempImage"]) {
    min-height: 50px;
}

.gallery-item:has(img[src]:not([src=""]):not([src*="tempImage"])) {
    min-height: 280px;
}

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

.gallery-item-fullwidth {
    grid-column: 1 / -1;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--dark-tertiary);
    margin-bottom: 1.5rem;
}

.gallery-item-fullwidth img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    overflow: auto;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--text-primary);
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--primary-color);
}

.lightbox-nav {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--text-primary);
    font-size: 2rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    pointer-events: all;
    backdrop-filter: blur(10px);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: scale(1.1);
}

/* Contact Section */
/* Drum Lessons Section */
.lessons-section {
    background: var(--dark-bg);
    padding: 6rem 0;
}

.lessons-content {
    max-width: 700px;
    margin: 0 auto;
}

.lessons-card {
    background: var(--dark-secondary);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.lessons-icon {
    margin-bottom: 1.5rem;
    text-align: center;
}

.lessons-icon img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.lessons-icon img:hover {
    transform: scale(1.05);
}

.lessons-card h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-transform: uppercase;
}

.lessons-description {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.lessons-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.lessons-detail {
    padding: 1.5rem;
    background: var(--dark-bg);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.lessons-label {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.lessons-value {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.6;
}

.lessons-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-1);
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
    margin-top: 0.5rem;
}

.lessons-phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.6);
}

.lessons-phone svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

.contact-section {
    background: var(--dark-secondary);
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-card {
    background: var(--dark-bg);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.contact-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-transform: uppercase;
}

.contact-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

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

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
    padding: 1rem 2rem;
    background: var(--gradient-1);
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.contact-email:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.6);
}

.contact-email svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

/* Footer */
.footer {
    background: var(--dark-secondary);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-section h4 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-transform: uppercase;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.8;
}

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

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.social-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.footer-quote {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 300;
    font-size: 0.72rem;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.5;
    transform: skewX(-3deg);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        background-size: contain;
        background-position: center top;
        min-height: auto;
        height: auto;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 5rem 1rem 2rem;
        gap: 1.25rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
    }

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

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-toggle {
        display: flex;
    }

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

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

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

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .hero-buttons {
        margin-bottom: 0;
    }

    .section-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .new-single-section {
        padding-top: 2rem;
    }

    .single-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .single-cover {
        max-width: 400px;
        margin: 0 auto;
    }

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

    .single-title {
        font-size: 3rem;
        letter-spacing: 2px;
    }

    .single-release-date {
        font-size: 1.2rem;
    }

    .single-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-presave,
    .btn-single-spotify {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

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

    .bio-image {
        max-width: 400px;
        margin: 0 auto;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }

    .academy-card,
    .music-card,
    .contact-card,
    .lessons-card {
        padding: 2rem;
    }

    .events-message {
        padding: 2rem 1.5rem;
    }

    .events-message p {
        font-size: 1.1rem;
    }

    .hero-new-single {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 0;
        width: 100%;
        max-width: 350px;
        justify-content: center;
        align-self: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 1.5px;
    }

    .hero-new-single {
        padding: 0.75rem 1rem;
        gap: 0.75rem;
    }

    .hero-single-cover {
        width: 60px;
        height: 60px;
    }

    .hero-single-badge {
        font-size: 0.75rem;
    }

    .hero-single-date {
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 2rem;
        letter-spacing: 1.5px;
    }

    .single-title {
        font-size: 2.5rem;
        letter-spacing: 1.5px;
    }

    .single-release-date {
        font-size: 1.1rem;
    }

    .bio-text h3,
    .academy-card h3,
    .music-card h3,
    .contact-card h3,
    .lessons-card h3 {
        font-size: 1.8rem;
        letter-spacing: 1.5px;
    }

    .academy-card,
    .music-card,
    .contact-card,
    .lessons-card {
        padding: 1.5rem;
    }

    .lessons-info {
        gap: 1.5rem;
    }

    .lessons-detail {
        padding: 1.25rem;
    }

    .lessons-phone {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }

    .contact-email {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }

    .btn-presave,
    .btn-single-spotify {
        font-size: 1rem;
        padding: 1rem 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 0.75rem;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 2.5rem;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 1.5rem;
        padding: 0.75rem 1rem;
    }

    .lightbox-image {
        max-width: 95%;
        max-height: 85vh;
    }
}

/* Smooth Scroll Animation */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

section {
    animation: fadeIn 0.6s ease-out;
}
