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

/* Root Variables */
:root {
    --primary-color: #ff4757;
    --secondary-color: #2f3542;
    --dark-bg: #0a0a0a;
    --darker-bg: #000000;
    --light-text: #ffffff;
    --gray-text: #a4b0be;
    --accent-gold: #ffa502;
    --gradient-primary: linear-gradient(135deg, #ff4757 0%, #ff3742 100%);
    --gradient-dark: linear-gradient(135deg, #2f3542 0%, #57606f 100%);
    --font-metal: 'Impact', 'Arial Black', 'Helvetica Bold', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --shadow-primary: 0 10px 30px rgba(255, 71, 87, 0.3);
    --shadow-dark: 0 5px 20px rgba(0, 0, 0, 0.5);
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    background: none;
    font-size: 14px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 71, 87, 0.4);
}

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

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

.btn-outline {
    border: 2px solid var(--gray-text);
    color: var(--gray-text);
}

.btn-outline:hover {
    background: var(--gray-text);
    color: var(--dark-bg);
}

/* 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;
}

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

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

.nav-logo h1 {
    font-family: var(--font-metal);
    font-size: 2rem;
    color: var(--light-text);
    margin: 0;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-stretch: condensed;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    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::after,
.nav-link.active::after {
    width: 100%;
}

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

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

.bar {
    width: 25px;
    height: 3px;
    background: var(--light-text);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 12vh;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 71, 87, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-title {
    font-family: var(--font-metal);
    font-size: 8rem;
    margin-bottom: 1rem;
    margin-top: -4vh;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.9);
    animation: heroFadeIn 2s ease-in-out;
    font-weight: 900;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--light-text);
    font-stretch: condensed;
    line-height: 0.9;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    margin-top: 25vh;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: heroFadeIn 2s ease-in-out 0.5s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: heroFadeIn 2s ease-in-out 1s both;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--primary-color);
    animation: bounce 2s infinite;
    cursor: pointer;
}

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

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

/* Bio Section */
.bio-section {
    padding: 6rem 0;
    background: var(--secondary-color);
}

.bio-content {
    display: grid;
    gap: 4rem;
}

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

.bio-intro {
    font-size: 1.3rem !important;
    color: var(--light-text) !important;
    font-style: italic;
}

.band-members {
    margin-top: 3rem;
}

.band-members h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.members-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.member-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.member-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.member-info h4 {
    color: var(--light-text);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.member-info p {
    color: var(--gray-text);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Discography Section */
.discography-section {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.music-platforms {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.platform-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: 2px solid transparent;
}

.spotify-btn {
    background: #1ed760;
    color: #000;
}

.spotify-btn:hover {
    background: #1db954;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(29, 185, 84, 0.3);
}

.apple-btn {
    background: #fa243c;
    color: #fff;
}

.apple-btn:hover {
    background: #e8213a;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(250, 36, 60, 0.3);
}

.platform-btn i {
    font-size: 1.3rem;
}

.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.album-card {
    background: var(--secondary-color);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.album-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-primary);
}

.album-cover {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    max-width: 250px;
    margin: 0 auto;
}

.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.album-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.album-card:hover .album-cover img {
    transform: scale(1.1);
}

.play-btn {
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-btn:hover {
    transform: scale(1.1);
}

.album-info {
    padding: 2rem;
}

.album-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

.album-year {
    color: var(--gray-text);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.album-description {
    color: var(--light-text);
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.album-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.album-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

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

.tracklist h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.tracklist ol {
    color: var(--gray-text);
    padding-left: 1.5rem;
}

.tracklist li {
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.tracklist li:hover {
    color: var(--light-text);
}

.album-reviews {
    margin-top: 1.5rem;
}

.album-reviews blockquote {
    background: rgba(255, 71, 87, 0.1);
    border-left: 3px solid var(--primary-color);
    padding: 1rem;
    margin: 0.5rem 0;
    font-style: italic;
    color: var(--gray-text);
    border-radius: 0 8px 8px 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Upcoming Album Styles */
.upcoming-album {
    border: 2px solid var(--accent-gold);
    background: linear-gradient(135deg, rgba(255, 165, 2, 0.1) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.upcoming-album::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #ff6b35 100%);
}

.coming-soon-overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 165, 2, 0.8) 0%, rgba(255, 71, 87, 0.8) 100%);
    color: white;
    text-align: center;
}

.coming-soon-overlay i {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.coming-soon-overlay h4 {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.album-status {
    margin: 1rem 0;
}

.status-badge {
    background: var(--accent-gold);
    color: var(--dark-bg);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.album-preview {
    background: rgba(255, 165, 2, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.album-preview p {
    color: var(--light-text);
    font-weight: 600;
    margin-bottom: 1rem;
}

.album-preview ul {
    list-style: none;
    padding: 0;
}

.album-preview li {
    color: var(--gray-text);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.album-preview li::before {
    content: '🎸';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Gallery Section */
.gallery-section {
    padding: 6rem 0;
    background: var(--secondary-color);
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 2rem;
    background: transparent;
    border: 2px solid var(--gray-text);
    color: var(--gray-text);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 71, 87, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

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

.gallery-overlay i {
    font-size: 2rem;
    color: white;
}

/* Merch Section */
.merch-section {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.merch-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.merch-info h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.merch-info p {
    color: var(--gray-text);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.merch-info .btn {
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.merch-info .btn i {
    margin-right: 0.5rem;
}

/* Tours Section */
.tours-section {
    padding: 6rem 0;
    background: var(--dark-bg);
}

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

.tour-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    padding: 2rem;
    background: var(--secondary-color);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-dark);
}

.tour-date {
    text-align: center;
    min-width: 80px;
}

.tour-date .month {
    display: block;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
}

.tour-date .day {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--light-text);
}

.tour-date .year {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-text);
}

.tour-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

.tour-location {
    color: var(--gray-text);
    margin-bottom: 0.25rem;
}

.tour-time {
    color: var(--gray-text);
    font-size: 0.9rem;
}

.tour-actions {
    display: flex;
    gap: 1rem;
}

/* Updates Section */
.updates-section {
    padding: 6rem 0;
    background: var(--secondary-color);
}

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

.update-card {
    background: var(--dark-bg);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.update-card:hover {
    transform: translateY(-5px);
}

.featured-update {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.1) 0%, var(--dark-bg) 100%);
    position: relative;
    overflow: hidden;
}

.featured-update::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.featured-update h3 {
    color: var(--light-text);
    font-size: 1.4rem;
}

.featured-update .update-date {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    font-weight: 600;
}

.update-date {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.update-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.update-card p {
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--accent-gold);
}

/* Comments Section */
.comments-section {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.comment-form {
    max-width: 600px;
    margin: 0 auto 4rem;
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 15px;
}

.comment-form h3 {
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    border-radius: 8px;
    color: var(--light-text);
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-text);
}

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

.comment {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.comment-header strong {
    color: var(--primary-color);
}

.comment-date {
    color: var(--gray-text);
    font-size: 0.9rem;
}

.comment p {
    color: var(--gray-text);
    line-height: 1.6;
}

.no-comments {
    text-align: center;
    color: var(--gray-text);
    font-style: italic;
    padding: 2rem;
    background: var(--secondary-color);
    border-radius: 15px;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: var(--secondary-color);
}

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

.contact-info h3,
.social-links h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--gray-text);
}

.contact-details i {
    color: var(--primary-color);
    width: 20px;
}

.contact-details a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--primary-color);
}

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

.social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    color: var(--light-text);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
}

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

.social-link.bandcamp:hover { background: #629aa0; }
.social-link.spotify:hover { background: #1ed760; }
.social-link.apple:hover { background: #fa243c; }
.social-link.youtube:hover { background: #ff0000; }
.social-link.facebook:hover { background: #1877f2; }
.social-link.instagram:hover { background: #e4405f; }
.social-link.twitter:hover { background: #1da1f2; }

.social-link i {
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: var(--darker-bg);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    font-family: var(--font-metal);
    color: var(--light-text);
    margin-bottom: 0.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-logo p {
    color: var(--gray-text);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--secondary-color);
    color: var(--gray-text);
    font-size: 0.9rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    margin-top: 5%;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

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

.lightbox-caption {
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

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

    .hero {
        padding-top: 10vh;
    }
    
    .hero-subtitle {
        margin-top: 35vh;
    }
    
    .hero-title {
        font-size: 4.5rem;
        margin-top: -1vh;
    }

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

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

    .music-platforms {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .platform-btn {
        width: 200px;
        justify-content: center;
    }

    .albums-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .album-cover {
        max-width: 200px;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .tour-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

    .tour-actions {
        justify-content: center;
    }

    .members-list {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
}

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

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

    .gallery-grid {
        grid-template-columns: 1fr;
    }

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

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease-in-out;
}

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

.slide-in-left {
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}