/* ===== Page Transitions ===== */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    backdrop-filter: blur(10px);
}

.page-transition img {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(138, 43, 226, 0.7));
}

.page-transition.active {
    opacity: 0.9;
    visibility: visible;
}

.page-transition::after {
    content: '';
    width: 60px;
    height: 60px;
    border: 4px solid var(--accent-color);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.5);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== Base Styles ===== */
:root {
    /* Color scheme */
    --primary-color: #6a0dad;
    --secondary-color: #333;
    --background-dark: rgba(18, 18, 18, 0.6);
    --background-light: rgba(34, 34, 34, 0.8);
    --text-light: #f1f1f1;
    --text-gray: #aaa;
    --accent-color: #8a2be2;
    --border-color: #444;

    /* Typography */
    --heading-font: 'Metal Mania', cursive;
    --body-font: 'Roboto', sans-serif;

    /* Spacing */
    --section-spacing: 5rem;
    --element-spacing: 2rem;
    --small-spacing: 1rem;
}

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

html {
    font-size: 62.5%; /* 1rem = 10px */
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--background-dark);
    background-image: url('../assets/backdrop.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 0;
    background-attachment: fixed;
    max-width: 100vw;
    height: 100%;
    min-height: 100vh;
    overflow: auto;
    position: relative;
}

html {
    height: 100%;
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    opacity: 1;
    transition: opacity 0.3s;
}

img.lazy {
    opacity: 0;
}

img.lazy.loaded {
    opacity: 1;
}

.image-wrapper {
    background: var(--background-light);
    position: relative;
    overflow: hidden;
}

a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover, a:focus {
    color: var(--accent-color);
}

ul {
    list-style-type: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center; /* Center all text */
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

h1 {
    font-size: 4.8rem;
}

h2 {
    font-size: 3.6rem;
}

h3 {
    font-size: 2.4rem;
}

p {
    margin-bottom: 2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.7);
}

.section-title::after {
    content: "";
    display: block;
    width: 6rem;
    height: 3px;
    background-color: var(--accent-color);
    margin: 1.5rem auto;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 1.2rem 2.4rem;
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

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

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--text-light);
}

.btn-secondary:hover, .btn-secondary:focus {
    background-color: var(--text-light);
    color: var(--background-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.btn-small {
    padding: 0.8rem 1.6rem;
    font-size: 1.4rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

/* ===== Header & Navigation ===== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9); /* Darker background for better visibility */
    backdrop-filter: blur(10px);
    z-index: 9999; /* Increased z-index to ensure it appears above all content */
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2); /* Enhanced shadow */
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2.5rem; /* Increased padding for a bigger top bar */
    max-width: 1200px;
    position: relative;
    margin: 0 auto;
    text-align: left; /* Override the centered text from container */
}

.logo {
    z-index: 2001;
    position: relative;
    display: flex;
    align-items: center;
}

.logo img {
    height: 5.5rem; /* Increased to match bigger header */
    width: auto;
    max-width: 100%;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 5px rgba(138, 43, 226, 0.3));
}

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

.main-nav a {
    font-size: 1.8rem; /* Increased from 1.6rem to 1.8rem */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.7rem; /* Increased from 0.5rem to 0.7rem */
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    transform: scaleX(1);
}

.main-nav a.active {
    color: var(--accent-color);
}

.nav-toggle {
    opacity: 0;
    position: absolute;
    width: 1px;
    height: 1px;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
    padding: 10px;
    position: relative;
    z-index: 2001;
}

/* ===== Hero Section ===== */
.hero {
    height: calc(100vh - 8rem); /* Adjusted to account for bigger fixed header */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-top: 8rem; /* Increased to match bigger header */
    transform: translateZ(0);
    will-change: transform;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero-content img {
    width: 512px;
    height: 512px;
    margin-bottom: 2rem;
    object-fit: contain;
}

.hero h1 {
    font-size: 6rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.7);
}

.hero p {
    font-size: 2.4rem;
    margin-bottom: 3rem;
    color: var(--text-gray);
}

/* Responsive adjustments for hero image */
@media (max-width: 1024px) {
    .hero-content img {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .hero-content img {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-content img {
        width: 250px;
        height: 250px;
    }
}

/* ===== Band Intro Section ===== */
.band-intro {
    padding: var(--section-spacing) 0;
}

.band-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.band-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* ===== Band Members Section ===== */
.band-members {
    padding: var(--section-spacing) 0;
    background-color: var(--background-light);
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(4, 300px);
    gap: 2rem;
    padding: 2rem;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
}

.member {
    text-align: center;
    margin: 0;
    padding: 0.5rem;
}

.member-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.member-image {
    width: 300px;
    height: 300px;
    margin: 0;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.member-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

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

.member-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    text-align: left;
}

.member-info h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.member-info p {
    margin: 0;
    font-size: 1.1rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

@media (min-width: 1600px) {
    .members-grid {
        grid-template-columns: repeat(4, 350px);
        gap: 3rem;
        padding: 3rem;
    }
    
    .member-image {
        width: 350px;
        height: 350px;
    }
    
    .member-info h3 {
        font-size: 1.8rem;
    }
    
    .member-info p {
        font-size: 1.3rem;
    }
}

@media (max-width: 1400px) {
    .members-grid {
        grid-template-columns: repeat(2, 300px);
        gap: 2.5rem;
    }
}

@media (max-width: 900px) {
    .members-grid {
        grid-template-columns: repeat(2, 250px);
        gap: 2rem;
        padding: 2rem;
    }
    
    .member-image {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 600px) {
    .members-grid {
        grid-template-columns: repeat(2, 200px);
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .member-image {
        width: 200px;
        height: 200px;
    }
    
    .member-info h3 {
        font-size: 1.2rem;
    }
    
    .member-info p {
        font-size: 1rem;
    }
}

/* ===== Latest News Section ===== */
.latest-news {
    padding: var(--section-spacing) 0;
}

.news-items {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.news-item {
    width: 100%;
    background-color: var(--background-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
}

.news-content {
    padding: 2rem;
    text-align: center;
}

.news-content h3 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.news-date {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.read-more {
    display: inline-block;
    margin-top: 1rem;
    color: var(--accent-color);
    font-weight: bold;
    transition: color 0.3s ease;
}

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

/* ===== Social Links Section ===== */
.social-links {
    padding: var(--section-spacing) 0;
    background-color: var(--background-light);
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    background-color: var(--secondary-color);
    color: var(--text-light);
    border-radius: 50%;
    font-size: 2.4rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* ===== Newsletter Section ===== */
.newsletter {
    padding: var(--section-spacing) 0;
    text-align: center;
}

.newsletter p {
    max-width: 600px;
    margin: 0 auto 2rem;
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    min-width: 200px;
    padding: 1.2rem;
    border: none;
    background-color: var(--background-light);
    color: var(--text-light);
    font-size: 1.6rem;
    border-radius: 4px;
}

.form-message {
    margin-top: 2rem;
    padding: 1rem;
    text-align: center;
    border-radius: 4px;
    font-size: 1.6rem;
    font-weight: 500;
    display: none;
}

.form-message.success {
    display: block;
    background-color: rgba(40, 167, 69, 0.2);
    color: #4bb543;
    border: 1px solid rgba(40, 167, 69, 0.4);
}

.form-message.error {
    display: block;
    background-color: rgba(220, 53, 69, 0.2);
    color: #ff6b6b;
    border: 1px solid rgba(220, 53, 69, 0.4);
}

/* ===== Footer ===== */
footer {
    background-color: black;
    padding: 5rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    text-align: left; /* Override the centered text from container */
}

.footer-logo img {
    height: 6rem;
    width: auto;
    max-width: 100%;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 5px rgba(138, 43, 226, 0.3));
    transition: all 0.3s ease;
}

.footer-logo img:hover {
    filter: drop-shadow(0 0 8px rgba(138, 43, 226, 0.5));
}

.footer-links h3,
.footer-social h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.footer-links ul,
.footer-social ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-social ul li a {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-social ul li a i {
    font-size: 1.8rem;
    width: 2rem;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-gray);
}

/* ===== Page Banner ===== */
.page-banner {
    height: 40vh;
    min-height: 300px;
    background-color: var(--background-dark);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 8rem; /* Increased to match hero section and bigger header */
}

.banner-content {
    max-width: 800px;
    padding: 0 2rem;
}

.banner-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.7);
}

.banner-content p {
    font-size: 1.8rem;
    color: var(--text-gray);
}

/* ===== Music Page ===== */
.latest-album {
    padding: var(--section-spacing) 0;
}

.album-showcase {
    align-items: start;
}

.album-cover {
    position: relative;
}

.placeholder-artwork {
    background: url('https://us-tuna-sounds-images.voicemod.net/cc05af54-7f2f-418e-9af6-423d8f3aa658-1687811328242.jpg');
    padding-bottom: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.placeholder-artwork::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at center, rgba(138, 43, 226, 0.2), transparent 60%);
}

.placeholder-artwork span {
    position: absolute;
    text-align: center;
    color: var(--text-light);
    font-weight: bold;
    padding: 1rem;
}

.placeholder-artwork span:first-child {
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.placeholder-artwork span:last-child {
    bottom: 20%;
    font-size: 1.8rem;
    opacity: 0.8;
}

.album-info h3 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.album-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 2rem 0;
    justify-content: center;
}

.streaming-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.6rem;
    padding: 0.8rem 1.5rem;
    background-color: var(--background-light);
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.streaming-link:hover {
    background-color: var(--secondary-color);
}

.track-list {
    margin-top: 3rem;
}

.track-list h4 {
    margin-bottom: 1.5rem;
}

.track-list ol {
    list-style: none;
    counter-reset: track-counter;
}

.track-list li {
    counter-increment: track-counter;
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--border-color);
}

.track-list li::before {
    content: counter(track-counter);
    font-weight: bold;
    color: var(--accent-color);
    margin-right: 1rem;
}

.track-title {
    font-weight: bold;
}

.track-duration {
    color: var(--text-gray);
}

audio {
    width: 100%;
    margin-top: 1rem;
}

audio::-webkit-media-controls-panel {
    background-color: var(--background-light);
}

.discography {
    padding: var(--section-spacing) 0;
    background-color: var(--background-light);
}

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

.album-card {
    background-color: var(--background-dark);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.album-card:hover {
    transform: translateY(-10px);
}

.album-details {
    padding: 1.5rem;
    text-align: center;
}

.album-year {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.videos {
    padding: var(--section-spacing) 0;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 3rem;
}

.video-item {
    background-color: var(--background-light);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #222, #111);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.video-placeholder i {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.video-placeholder span {
    color: var(--text-light);
    font-weight: bold;
    padding: 0 1rem;
    text-align: center;
}

.video-placeholder:hover i {
    transform: scale(1.2);
}

.video-caption {
    padding: 1.5rem;
}

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

.video-caption p {
    color: var(--text-gray);
    margin-bottom: 0;
}

.streaming-platforms {
    padding: var(--section-spacing) 0;
    background-color: var(--background-light);
    text-align: center;
}

.streaming-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.streaming-platform {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 12rem;
    height: 12rem;
    background-color: var(--background-dark);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.streaming-platform i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.streaming-platform:hover {
    background-color: var(--secondary-color);
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* ===== Tour Page ===== */
.tour-announcement {
    padding: var(--section-spacing) 0;
}

.tour-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.tour-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.upcoming-shows {
    padding: var(--section-spacing) 0;
    background-color: var(--background-light);
}

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

.filter-btn {
    padding: 0.8rem 1.6rem;
    background-color: transparent;
    border: 2px solid var(--text-light);
    color: var(--text-light);
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.shows-table {
    background-color: var(--background-dark);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 2fr 2fr 1fr;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--background-dark);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--border-color);
}

.show-item {
    display: grid;
    grid-template-columns: 1fr 2fr 2fr 1fr;
    gap: 1rem;
    padding: 2rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    align-items: center;
    transition: background-color 0.3s ease;
}

.show-item:hover {
    background-color: var(--secondary-color);
}

.date-col {
    display: flex;
    flex-direction: column;
}

.day {
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1;
}

.month {
    font-weight: bold;
    color: var(--accent-color);
}

.year {
    font-size: 1.4rem;
    color: var(--text-gray);
}

.past-tours {
    padding: var(--section-spacing) 0;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 3rem;
}

.tour-card {
    background-color: var(--background-light);
    border-radius: 5px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-10px);
}

.tour-years {
    color: var(--accent-color);
    font-weight: bold;
    margin-bottom: 1rem;
}

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

.vip-packages {
    padding: var(--section-spacing) 0;
    background-color: var(--background-light);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 3rem;
}

.package-card {
    background-color: var(--background-dark);
    border-radius: 5px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.package-title {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
}

.package-features {
    text-align: left;
    margin-bottom: 3rem;
}

.package-features li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.package-features li:last-child {
    border-bottom: none;
}

/* ===== Gallery Page ===== */
.gallery-filters {
    padding: var(--section-spacing) 0 0;
}

.photo-gallery {
    padding: var(--section-spacing) 0;
}

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

.gallery-item {
    background-color: var(--background-light);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
}

.gallery-image {
    position: relative;
    padding-bottom: 66.67%; /* 3:2 aspect ratio */
}

.gallery-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #222, #111);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.gallery-placeholder i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.gallery-placeholder span {
    color: var(--text-light);
    font-weight: bold;
    padding: 0 1rem;
    text-align: center;
}

.gallery-caption {
    padding: 1.5rem;
}

.gallery-caption h3 {
    margin-bottom: 0.5rem;
}

.gallery-caption p {
    color: var(--text-gray);
    margin-bottom: 0;
}

.video-gallery {
    padding: var(--section-spacing) 0;
    background-color: var(--background-light);
}

.submit-photos {
    padding: var(--section-spacing) 0;
    text-align: center;
}

.submit-photos p {
    max-width: 600px;
    margin: 0 auto 2rem;
}

.submit-cta {
    margin-top: 3rem;
}

/* ===== Contact Page ===== */
.contact-options {
    padding: var(--section-spacing) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.contact-card {
    background-color: var(--background-light);
    border-radius: 5px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    max-width: 300px;
    margin: 0 auto;
}

.contact-card:hover {
    transform: translateY(-10px);
}

.contact-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.contact-link {
    display: inline-block;
    margin-top: 1.5rem;
    font-weight: bold;
}

.contact-form-section {
    padding: var(--section-spacing) 0;
    background-color: var(--background-light);
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--background-dark);
    padding: 3rem;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.form-group label {
    display: block;
    margin-bottom: 1rem;
    font-weight: bold;
    font-size: 1.6rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.4rem;
    background-color: var(--background-light);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 1.6rem;
    border-radius: 6px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(138, 43, 226, 0.25);
}

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

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.form-checkbox input {
    width: auto;
    height: 20px;
    width: 20px;
    cursor: pointer;
}

/* Enhanced styling for touch devices */
@media (hover: none) and (pointer: coarse) {
    .form-checkbox input {
        height: 24px;
        width: 24px;
    }
}

.form-checkbox label {
    margin-bottom: 0;
    cursor: pointer;
}

.form-submit {
    margin-top: 3rem;
    text-align: center;
}

.photo-submission {
    padding: var(--section-spacing) 0;
}

.photo-form {
    max-width: 700px;
    margin: 3rem auto 0;
    background-color: var(--background-dark);
    padding: 3rem;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.form-help {
    font-size: 1.4rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
}

/* Enhanced file input styling */
input[type="file"] {
    padding: 1.4rem;
    border: 2px dashed var(--border-color);
    background-color: rgba(255, 255, 255, 0.05);
    text-align: center;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
}

input[type="file"]:hover {
    border-color: var(--accent-color);
    background-color: rgba(138, 43, 226, 0.05);
}

input[type="file"]::-webkit-file-upload-button {
    background-color: var(--secondary-color);
    color: white;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 4px;
    margin-right: 1rem;
    cursor: pointer;
    font-size: 1.5rem;
    transition: background-color 0.3s ease;
}

input[type="file"]::-webkit-file-upload-button:hover {
    background-color: var(--accent-color);
}

/* Touch-friendly interactive elements with visual feedback */
.btn:active,
.social-icon:active,
.streaming-link:active,
.filter-btn:active,
.faq-question:active {
    transform: scale(0.97);
}

.faq-section {
    padding: var(--section-spacing) 0;
    background-color: var(--background-light);
}

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

.faq-item {
    margin-bottom: 2rem;
    background-color: var(--background-dark);
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem 2rem;
    position: relative;
    cursor: pointer;
    margin-bottom: 0;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--accent-color);
}

.faq-answer {
    padding: 0 2rem 1.5rem;
}

/* ===== Coming Soon Page ===== */
.coming-soon-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--background-dark);
    background-image: url('../assets/backdrop.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.coming-soon-content {
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.coming-soon-logo {
    width: 200px;
    height: auto;
    margin: 0 auto 3rem;
    filter: drop-shadow(0 0 10px rgba(138, 43, 226, 0.7));
}

.coming-soon-content h1 {
    font-size: 6rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.7);
}

.coming-soon-content p {
    font-size: 2.4rem;
    margin-bottom: 4rem;
    color: var(--text-gray);
}

.coming-soon-content .social-icons {
    margin-bottom: 4rem;
}

.coming-soon-content .newsletter-form {
    max-width: 400px;
    margin: 0 auto;
}

/* ===== Responsive Styles ===== */
/* Tablet and medium screens */
/* Large desktop and ultrawide screens */
@media (min-width: 1921px) {
    html {
        font-size: 70%;
    }

    .container {
        max-width: 1800px;
        margin: 0 auto;
    }

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

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

    .hero-content {
        max-width: 1000px;
    }

    .band-text {
        max-width: 1000px;
        font-size: 1.8rem;
    }

    .member {
        height: 420px;
    }

    .members-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .news-items {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }

    .album-showcase {
        max-width: 1400px;
        margin: 0 auto;
        gap: 5rem;
    }

    .video-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .albums-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .contact-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .track-list li {
        padding: 1.5rem 0;
    }

    .tour-card {
        padding: 3rem;
    }
}

/* Desktop screens */
@media (min-width: 1441px) and (max-width: 1920px) {
    html {
        font-size: 65%;
    }

    .container {
        max-width: 1400px;
        margin: 0 auto;
    }

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

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

    .hero-content {
        max-width: 900px;
    }

    .member {
        height: 400px;
    }

    .video-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .track-list li {
        padding: 1.4rem 0;
    }
}

/* Small desktops and large tablets */
@media (min-width: 1025px) and (max-width: 1440px) {
    html {
        font-size: 62%;
    }

    .container {
        max-width: 1200px;
    }

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

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

    .member {
        height: 380px;
    }

    .video-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

/* Tablets and smaller desktops */
@media (max-width: 1024px) {
    html {
        font-size: 58%;
    }

    .container {
        width: 95%;
    }

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

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

    .news-items {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .album-showcase {
        gap: 3rem;
    }

    .video-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .albums-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }

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

/* Mobile landscape and small tablets */
@media (max-width: 768px) {
    html {
        font-size: 55%;
    }

    body {
        padding-top: 0;
    }

    .main-header {
        height: auto;
    }

    .header-container {
        position: relative;
    }

    .nav-toggle-label {
        display: block;
        position: relative;
        z-index: 2001;
        cursor: pointer;
    }

    .nav-toggle-label span,
    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
        display: block;
        width: 2.5rem;
        height: 2px;
        background: var(--text-light);
        position: relative;
        transition: all 0.3s ease;
    }

    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
        content: '';
        position: absolute;
    }

    .nav-toggle-label span::before {
        bottom: 8px;
    }

    .nav-toggle-label span::after {
        top: 8px;
    }

    /* Animated hamburger menu */
    .nav-toggle:checked + .nav-toggle-label span {
        background: transparent;
    }

    .nav-toggle:checked + .nav-toggle-label span::before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle:checked + .nav-toggle-label span::after {
        transform: rotate(-45deg);
        top: 0;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 0;
        overflow: hidden;
        background-color: rgba(0, 0, 0, 0.95);
        transition: all 0.4s ease-in-out;
        z-index: 2000;
        visibility: hidden;
        opacity: 0;
    }

    .main-nav ul {
        flex-direction: column;
        margin-top: 10rem;
        text-align: center;
        padding: 2rem;
    }

    .main-nav li {
        margin: 1.5rem 0;
    }

    .main-nav a {
        font-size: 2.2rem;
        padding: 1.5rem;
        display: block;
        width: 100%;
    }

    .nav-toggle:checked ~ .main-nav {
        height: 100vh;
        visibility: visible;
        opacity: 1;
    }

    .hero {
        height: 80vh;
    }

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

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 25rem;
    }

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

    .album-showcase {
        grid-template-columns: 1fr;
    }

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

    .shows-table {
        overflow-x: auto;
    }

    .show-item {
        grid-template-columns: 1fr 1.5fr 1.5fr 1fr;
        padding: 1.5rem 1rem;
    }

    .table-header {
        padding: 1rem;
        grid-template-columns: 1fr 1.5fr 1.5fr 1fr;
        font-size: 1.4rem;
    }

    .contact-grid,
    .packages-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        gap: 2rem;
    }
}

/* Mobile landscape + Small tablets */
@media (min-width: 481px) and (max-width: 767px) {
    html {
        font-size: 52%;
    }

    .container {
        width: 92%;
    }

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

    .hero p {
        font-size: 1.7rem;
    }

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

    /* Ensure touch targets are at least 44px for better touch interaction */
    .btn, 
    .social-icon, 
    .nav-toggle-label,
    .streaming-link,
    .filter-btn {
        min-height: 44px;
        line-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Improve spacing for touch targets */
    .footer-links ul li a,
    .footer-social ul li a {
        padding: 0.8rem 0;
        display: inline-block;
    }

    /* Adjust grid layouts for better fit */
    .news-items,
    .video-grid,
    .albums-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* Make forms more mobile-friendly with larger inputs */
    input,
    textarea,
    select {
        font-size: 1.6rem;
        padding: 1.5rem;
        border-radius: 5px;
    }

    .streaming-platform {
        width: 10rem;
        height: 10rem;
    }
}

/* Mobile portrait */
@media (max-width: 480px) {
    html {
        font-size: 50%;
    }

    .container {
        width: 92%;
        padding: 0 1rem;
    }

    .logo img {
        height: 4rem;
    }

    .header-container {
        padding: 1rem;
    }

    .hero {
        height: 80vh;
    }

    .hero h1 {
        font-size: 3.8rem;
        letter-spacing: 2px;
    }

    .hero p {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 2.8rem;
        margin-bottom: 3rem;
    }

    .banner-content h1 {
        font-size: 3rem;
    }

    .banner-content p {
        font-size: 1.6rem;
    }

    .page-banner {
        margin-top: 0;
        height: 30vh;
    }

    .members-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin: 0 auto;
    }

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

    .newsletter-form input {
        width: 100%;
    }

    .newsletter-form .btn {
        width: 100%;
    }

    .social-icons {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

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

    .footer-logo img {
        margin: 0 auto 1.5rem;
    }

    /* Make buttons more touch-friendly */
    .btn {
        padding: 1.5rem 2.4rem;
        min-width: 15rem;
    }

    /* Improve table display on small screens */
    .show-item {
        display: flex;
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
    }

    .show-item > * {
        margin-bottom: 1rem;
    }

    .show-item .btn {
        align-self: center;
    }

    /* Hide table headers on mobile */
    .table-header {
        display: none;
    }

    /* Album tracks adjusted for small screens */
    .track-list li {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: center;
    }

    .track-duration {
        justify-self: center;
    }

    /* Form adjustments */
    .contact-form,
    .photo-form {
        padding: 2rem;
    }

    /* Form elements optimization */
    input, 
    textarea, 
    select {
        font-size: 1.6rem; /* Prevents iOS zoom on focus */
        padding: 1.2rem;
    }
}

/* Very small devices */
@media (max-width: 350px) {
    html {
        font-size: 45%;
    }

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

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

    .page-banner {
        min-height: 200px;
    }

    .banner-content h1 {
        font-size: 2.6rem;
    }

    .banner-content p {
        font-size: 1.4rem;
    }

    /* Optimize touch targets for very small screens */
    .btn {
        padding: 1.2rem 2rem;
        min-width: 14rem;
        margin: 0.5rem 0;
    }

    .streaming-platform {
        width: 8rem;
        height: 8rem;
    }

    .streaming-platform i {
        font-size: 3rem;
    }

    /* Better spacing for smaller screens */
    .section-title {
        margin-bottom: 2rem;
    }

    .album-info h3 {
        font-size: 2.5rem;
    }

    /* Remove some padding to save space */
    .container {
        padding: 0 0.8rem;
    }

    .news-content,
    .video-caption,
    .album-details {
        padding: 1.2rem;
    }

    /* Optimize form elements */
    input, 
    textarea, 
    select {
        padding: 1rem;
    }
}

/* Ensure orientation changes are handled with optimal styling */
@media (max-height: 500px) and (orientation: landscape) {
    /* Optimize for landscape orientation on small screens */
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 4rem 0;
    }

    .hero-content {
        padding: 2rem 0;
    }

    .page-banner {
        height: 25vh;
        min-height: 150px;
    }

    .main-nav ul {
        margin-top: 6rem;
    }

    /* Adjust padding to save vertical space */
    section {
        padding: 3rem 0;
    }

    .member {
        height: 200px;
    }

    /* Optimize scrolling content */
    .track-list {
        max-height: 60vh;
        overflow-y: auto;
    }

    /* Horizontal layouts for landscape */
    .members-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* High-density screens (Retina displays) */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    /* Optimize for high-resolution displays */
    .placeholder-artwork,
    .video-placeholder,
    .gallery-placeholder {
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }

    /* Ensure text is crisp on high-DPI displays */
    .hero h1,
    .section-title,
    .banner-content h1 {
        text-shadow: 0 0 10px rgba(138, 43, 226, 0.6);
    }
}
