/* Custom Font Declaration */
@font-face {
    font-family: 'TheEndFont';
    src: url('../fonts/TheEndFont.woff2') format('woff2'),
         url('../fonts/TheEndFont.woff') format('woff'),
         url('../fonts/TheEndFont(RF).ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: url('/img/background.PNG') center center/cover no-repeat fixed;
    color: #ffffff;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    overflow-y: visible;
}

/* Fix background on mobile devices */
@media (max-width: 768px) {
    body {
        background: url('/img/background.PNG') center center/cover no-repeat;
        background-attachment: scroll;
        background-color: #1a1a1a; /* Fallback color */
    }
    
    /* Much lighter overlay on mobile so background is more visible */
    body::before {
        background: rgba(0, 0, 0, 0.2);
    }
    
    /* Ensure header is also transparent on mobile */
    .main-header {
        background: rgba(0, 0, 0, 0.6);
        padding: 30px 15px 15px;
    }
}

@media (max-width: 480px) {
    /* Even lighter overlay for small mobile */
    body::before {
        background: rgba(0, 0, 0, 0.1);
    }
    
    .main-header {
        background: rgba(0, 0, 0, 0.5);
        padding: 20px 10px 15px;
    }
}

/* Overlay to make text readable over the background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

/* Header Section */
.main-header {
    text-align: center;
    padding: 40px 20px 20px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #00ffff;
}

/* Logo Container and Hero Logo */
.logo-container {
    margin-bottom: 15px;
}

.hero-logo {
    max-width: 600px;
    width: 90%;
    height: auto;
    filter: drop-shadow(0 0 20px #00ffff) drop-shadow(0 0 40px #00ffff);
    transition: all 0.3s ease;
}

.hero-logo:hover {
    filter: drop-shadow(0 0 30px #00ffff) drop-shadow(0 0 60px #00ffff);
    transform: scale(1.02);
}

.tagline {
    font-size: 0.9rem;
    color: #00ffff;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'TheEndFont', sans-serif;
}

/* Main Container */
.main-container {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible;
}

/* Top Section - Three Column Layout */
.top-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Dropdown Section Cards */
.dropdown-section {
    background: transparent;
    backdrop-filter: blur(15px);
    border: 2px solid #00ffff;
    border-radius: 0;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.dropdown-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.3);
    border-color: #ffffff;
    z-index: 10;
}

/* Dropdown Header */
.dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 10px 0;
}

.dropdown-header h2 {
    font-size: 0.9rem;
    color: #00ffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    font-family: 'TheEndFont', sans-serif;
}

.dropdown-arrow {
    font-size: 1.2rem;
    color: #00ffff;
    transition: transform 0.3s ease;
}

/* Dropdown Content - Positioned Absolutely */
.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
    border: 2px solid #00ffff;
    border-top: none;
    border-radius: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 255, 255, 0.2);
    z-index: 20;
}

/* Hover effects only for non-touch devices */
@media (hover: hover) and (pointer: fine) {
    .dropdown-section:hover .dropdown-content {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown-section:hover .dropdown-arrow {
        transform: rotate(180deg);
    }
}

/* Active state for JavaScript interactions (works on all devices) */
.dropdown-section.active .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-section.active .dropdown-arrow {
    transform: rotate(180deg);
}

/* Music Links and Social Links */
.music-links, .social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 15px;
}

.music-link, .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 15px;
    background: transparent;
    border: none;
    border-radius: 0;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 1rem;
}

.music-link:hover, .social-link:hover {
    background: rgba(0, 255, 255, 0.2);
    transform: scale(1.03);
    box-shadow: none;
}

.music-link i, .social-link i {
    display: none;
}

/* EP Highlight */
.ep-highlight {
    margin-top: 15px;
}

.ep-circle {
    width: 100px;
    height: 100px;
    border: 2px solid #00ffff;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background: rgba(0, 255, 255, 0.1);
    animation: pulse 2s infinite;
}

.ep-circle span {
    font-weight: bold;
    text-align: center;
    font-size: 0.8rem;
    color: #00ffff;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 255, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(0, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 255, 0); }
}

/* Merch Section */
.merch-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.merch-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px;
    border: 2px dashed #00ffff;
    border-radius: 0;
    opacity: 0.7;
}

.merch-placeholder i {
    font-size: 1.5rem;
    color: #00ffff;
}

/* Shows Section - Coming Soon */
.shows-section {
    background: transparent;
    margin: 40px auto;
    padding: 20px;
    max-width: 1000px;
    text-align: center;
    border: 2px solid #00ffff;
    overflow: visible;
}

.shows-section h2 {
    color: #00ffff;
    font-size: 2rem;
    margin-bottom: 25px;
    text-align: center;
    font-family: 'TheEndFont', sans-serif;
    text-transform: uppercase;
}

.band-heading {
    font-size: 2rem;
    margin-bottom: 25px;
}

.shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    overflow: visible;
}

.show-card {
    background: transparent;
    border: 1px solid #00ffff;
    border-radius: 0;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    overflow: visible;
}

.show-flyer {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    overflow: hidden;
    border: 1px solid #00ffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.show-flyer:hover {
    border-color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
}

.show-flyer-placeholder {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border: 1px dashed #00ffff;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 255, 0.1);
}

.flyer-coming-soon {
    text-align: center;
    color: #00ffff;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

.flyer-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    max-width: 100%;
    max-height: 100%;
}

.show-card:hover .flyer-image {
    transform: scale(1.05);
}

.show-card:hover {
    background: rgba(0, 255, 255, 0.1);
    transform: translateX(10px);
}

.show-card.placeholder {
    opacity: 0.6;
    border-style: dashed;
}

.show-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
    padding: 15px;
    background: rgba(0, 255, 255, 0.2);
    border-radius: 0;
    position: relative;
    overflow: visible;
}

.show-date .month {
    font-size: 1rem;
    font-weight: bold;
    color: #00ffff;
}

.show-date .day {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
}

.show-details h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #ffffff;
}

.show-details p {
    color: #cccccc;
    font-size: 0.9rem;
}

/* Footer */
.main-footer {
    background: rgba(0, 0, 0, 0.9);
    text-align: center;
    padding: 20px;
    border-top: 2px solid #00ffff;
}

.main-footer a {
    color: #00ffff;
    text-decoration: none;
}

.main-footer a:hover {
    text-shadow: 0 0 10px #00ffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-logo {
        max-width: 400px;
    }
    
    .main-header {
        padding: 30px 15px 15px;
    }
    
    .main-container {
        padding: 30px 15px;
    }
    
    .top-section {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .dropdown-section {
        padding: 12px 8px;
        background: transparent;
    }
    
    .dropdown-header h2 {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .dropdown-arrow {
        font-size: 1rem;
    }
    
    .music-links, .social-links {
        gap: 8px;
        margin-bottom: 10px;
    }
    
    .music-link, .social-link {
        padding: 8px 10px;
        font-size: 1rem;
    }
    
    .music-link i, .social-link i {
        font-size: 1rem;
    }
    
    .shows-section {
        padding: 25px 20px;
        background: transparent;
    }
    
    .shows-section h2 {
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    .shows-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 100%;
    }
    
    .show-flyer {
        width: 60px;
        height: 60px;
        flex-shrink: 0;
    }
    
    .show-flyer-placeholder {
        width: 60px;
        height: 60px;
    }
    
    .band-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        max-width: 100%;
    }
    
    .member-card {
        background: transparent;
        padding: 15px;
    }
    
    .member-photo {
        width: 230px;
        height: 230px;
    }
    
    .member-card h3 {
        font-size: 1.1rem;
    }
    
    /* Mobile Modal Improvements */
    .modal-layout {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
    
    .modal-photo {
        height: 280px;
        justify-self: center;
        max-width: 280px;
    }
    
    .modal-content {
        width: 95vw;
        max-height: 90vh;
        margin: 20px;
    }
    
    .modal-bio h2 {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .modal-bio h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .modal-bio h4 {
        font-size: 1.2rem;
        margin: 20px 0 10px 0;
    }
    
    .modal-close {
        top: 15px;
        right: 20px;
        font-size: 1.5rem;
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .main-container {
        padding: 20px 10px;
    }
    
    .main-header {
        padding: 20px 10px 15px;
    }
    
    .hero-logo {
        max-width: 280px;
    }
    
    .tagline {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .top-section {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .dropdown-section {
        padding: 10px 6px;
        background: transparent;
    }
    
    .dropdown-header h2 {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .dropdown-arrow {
        font-size: 1rem;
    }
    
    .music-links, .social-links {
        gap: 8px;
        margin-bottom: 10px;
    }
    
    .music-link, .social-link {
        padding: 8px 10px;
        font-size: 1rem;
    }
    
    .music-link i, .social-link i {
        font-size: 1rem;
    }
    
    .shows-section {
        margin: 20px 10px;
        padding: 15px;
    }
    
    .shows-section h2 {
        font-size: 1.5rem;
    }
    
    .band-heading {
        font-size: 1.5rem;
    }
    
    .band-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        max-width: 350px !important;
        margin: 0 auto !important;
        padding: 0 20px !important;
    }
    
    .member-card {
        max-width: 320px !important;
        margin: 0 auto !important;
        padding: 20px !important;
        aspect-ratio: auto !important;
    }
    
    .member-photo {
        width: 280px !important;
        height: 280px !important;
        margin: 0 auto !important;
        flex: none !important;
    }
    
    .member-card h3 {
        font-size: 1.2rem;
    }
    
    .shows-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        max-width: 100%;
    }
    
    .show-card {
        padding: 12px;
        background: transparent;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .show-date {
        margin-bottom: 0;
        min-width: auto;
        position: relative;
    }
    
    /* Small Mobile Modal Optimization */
    .modal-layout {
        padding: 15px;
        gap: 15px;
    }
    
    .modal-photo {
        height: 220px;
        max-width: 220px;
    }
    
    .modal-bio h2 {
        font-size: 1.7rem;
        letter-spacing: 2px;
    }
    
    .modal-bio h3 {
        font-size: 1rem;
    }
    
    .modal-bio h4 {
        font-size: 1.1rem;
        margin: 15px 0 8px 0;
    }
    
    .modal-bio p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .modal-bio li {
        font-size: 0.85rem;
        padding: 6px 0;
    }
    
    .modal-close {
        top: 10px;
        right: 15px;
        width: 30px;
        height: 30px;
        font-size: 1.3rem;
    }
}

/* Ultra-small screens - Stack vertically for tiny devices */
@media (max-width: 360px) {
    .top-section {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .dropdown-section {
        padding: 12px;
        background: transparent;
    }
    
    .dropdown-header h2 {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
    
    .hero-logo {
        max-width: 240px;
    }
    
    .tagline {
        font-size: 0.8rem;
        letter-spacing: 0.5px;
    }
    
    .main-container {
        padding: 15px 8px;
    }
    
    .shows-section {
        padding: 15px 10px;
        background: transparent;
    }
    
    .show-card {
        background: transparent;
        padding: 10px;
        gap: 8px;
    }
    
    .show-flyer {
        width: 35px;
        height: 35px;
        flex-shrink: 0;
    }
    
    .show-flyer-placeholder {
        width: 35px;
        height: 35px;
    }
    
    .flyer-coming-soon {
        font-size: 0.5rem;
    }
    
    .modal-content {
        width: 98vw;
        margin: 10px;
    }
    
    .modal-layout {
        padding: 12px;
    }
    
    .modal-photo {
        height: 180px;
        max-width: 180px;
    }
}

/* Band Member Modals */
.member-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.member-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    border: 2px solid #00ffff;
    border-radius: 0;
    max-width: 90vw;
    max-height: 90vh;
    width: 900px;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 255, 255, 0.3);
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    transition: all 0.3s ease;
}

.member-modal.active .modal-content {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    color: #00ffff;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #00ffff;
}

.modal-close:hover {
    color: #ffffff;
    background: rgba(0, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Reverse L Layout */
.modal-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 30px;
    padding: 40px;
    min-height: 500px;
}

.modal-photo {
    width: 100%;
    height: 400px;
    border-radius: 0;
    overflow: hidden;
    border: 2px solid #00ffff;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.modal-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
}

.modal-bio {
    color: #ffffff;
    line-height: 1.6;
}

.modal-bio h2 {
    font-size: 2.5rem;
    color: #00ffff;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 15px #00ffff;
    font-family: 'TheEndFont', sans-serif;
}

.modal-bio h3 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

.modal-bio h4 {
    font-size: 1.4rem;
    color: #00ffff;
    margin: 25px 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #00ffff;
    padding-bottom: 5px;
}

.modal-bio p {
    margin-bottom: 15px;
    color: #e0e0e0;
    font-size: 1rem;
}

.modal-bio ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.modal-bio li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    color: #e0e0e0;
    font-size: 0.95rem;
}

.modal-bio li:last-child {
    border-bottom: none;
}

.modal-bio strong {
    color: #00ffff;
}

/* Mobile Modal Styles */
@media (max-width: 768px) {
    .modal-layout {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
    
    .modal-photo {
        height: 350px;
        justify-self: center;
        max-width: 300px;
    }
    
    .modal-content {
        width: 95vw;
        max-height: 95vh;
    }
    
    .modal-bio h2 {
        font-size: 2rem;
    }
    
    .modal-close {
        top: 15px;
        right: 20px;
        font-size: 1.5rem;
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .modal-layout {
        padding: 15px;
        gap: 15px;
    }
    
    .modal-photo {
        height: 300px;
        max-width: 280px;
    }
    
    .modal-bio h2 {
        font-size: 1.8rem;
    }
    
    .modal-bio h4 {
        font-size: 1.2rem;
    }
}

.member-card h3 {
    font-size: 1.5rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    font-family: 'TheEndFont', sans-serif;
}

.band-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.member-card {
    background: transparent;
    border: 2px solid #00ffff;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.member-card:hover {
    background: rgba(0, 255, 255, 0.1);
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 255, 255, 0.3);
}

.member-photo {
    width: 100%;
    flex: 1;
    overflow: hidden;
    margin-bottom: 15px;
    border: 2px solid #00ffff;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
}

.member-card:hover .member-photo img {
    transform: scale(1.05);
}

.member-card h3 {
    font-size: 1.5rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    font-family: 'TheEndFont', sans-serif;
}

.shows-section h2 {
    font-size: 2rem;
    margin-bottom: 25px;
}

/* Default Band Grid Styles (Desktop) */
.band-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.member-card {
    background: transparent;
    border: 2px solid #00ffff;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.member-photo {
    width: 100%;
    flex: 1;
    overflow: hidden;
    margin-bottom: 15px;
    border: 2px solid #00ffff;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
}



    .show-card {
        padding: 10px;
        background: transparent;
        flex-direction: row;
        text-align: left;
        gap: 10px;
        align-items: center;
        max-width: 100%;
        overflow: hidden;
    }
    
    .show-flyer {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }
    
    .show-flyer-placeholder {
        width: 40px;
        height: 40px;
    }
    
    .flyer-coming-soon {
        font-size: 0.6rem;
    }

/* Flyer Modals */
.flyer-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.flyer-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.flyer-modal .modal-content {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    border: 2px solid #00ffff;
    border-radius: 0;
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 255, 255, 0.3);
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    transition: all 0.3s ease;
}

.flyer-modal.active .modal-content {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.flyer-modal-content {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.full-flyer-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border: 1px solid #00ffff;
}

/* Mobile Flyer Modal Styles */
@media (max-width: 768px) {
    .flyer-modal .modal-content {
        max-width: 95vw;
        max-height: 95vh;
    }
    
    .flyer-modal-content {
        padding: 15px;
    }
    
    .full-flyer-image {
        max-height: 85vh;
    }
}

@media (max-width: 480px) {
    .flyer-modal .modal-content {
        max-width: 98vw;
        max-height: 98vh;
    }
    
    .flyer-modal-content {
        padding: 10px;
    }
    
    .full-flyer-image {
        max-height: 90vh;
    }
}

/* Simple Show Tooltips */
.show-date-hover {
    position: relative;
    cursor: pointer;
}

.show-date-hover:hover {
    background: rgba(0, 255, 255, 0.3);
    transition: background 0.3s ease;
}

.show-tooltip-modal {
    position: fixed;
    width: 350px;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.98), rgba(25, 25, 25, 0.98));
    border: 1px solid #00ffff;
    border-radius: 12px;
    padding: 20px;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    pointer-events: none;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    font-family: 'Orbitron', sans-serif;
}

.show-tooltip-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(-5px);
    pointer-events: auto;
    user-select: text;
}

.tooltip-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tooltip-flyer {
    width: 100%;
    height: 432px;
    overflow: hidden;
    border: 1px solid #00ffff;
    border-radius: 4px;
}

.tooltip-flyer img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.tooltip-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 255, 0.1);
    border: 1px dashed #00ffff;
    color: #00ffff;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tooltip-info h3 {
    color: #00ffff;
    font-size: 1.3rem;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.tooltip-info p {
    margin: 6px 0;
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 400;
}

.tooltip-date {
    color: #00ffff !important;
    font-weight: bold;
}

.tooltip-location {
    color: #ffffff !important;
}

.tooltip-time,
.tooltip-lineup,
.tooltip-cover {
    color: #cccccc !important;
}

.tooltip-tickets {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background: #00ffff;
    color: #000000;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.tooltip-tickets:hover {
    background: #ffffff;
    color: #000000;
    transform: scale(1.05);
}

/* Tooltip Arrow */
.show-tooltip-modal::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #00ffff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.show-tooltip-modal.below::after {
    top: -8px;
    bottom: auto;
    border-top: none;
    border-bottom: 8px solid #00ffff;
}

/* Mobile Tooltip Styles */
@media (max-width: 768px) {
    .show-tooltip-modal {
        width: 290px;
        padding: 16px;
    }
    
    .tooltip-flyer {
        height: 324px;
        margin-bottom: 12px;
    }
    
    .tooltip-info h3 {
        font-size: 1.1rem;
    }
    
    .tooltip-info p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .show-tooltip-modal {
        width: 260px;
        padding: 14px;
    }
    
    .tooltip-flyer {
        height: 288px;
        margin-bottom: 10px;
    }
    
    .tooltip-info h3 {
        font-size: 1rem;
    }
    
    .tooltip-info p {
        font-size: 0.8rem;
    }
    
    .tooltip-tickets {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
}

/* Hide mobile drawers on desktop */
.show-card-drawer {
    display: none;
}

/* Mobile show card drawer system */
@media (hover: none) and (pointer: coarse) {
    .show-card {
        transition: all 0.3s ease;
        cursor: pointer;
    }
    
    .show-card.expanded {
        transform: scale(1.02);
        box-shadow: 0 8px 25px rgba(0, 255, 255, 0.4);
    }
    
    .show-card-drawer {
        display: block;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
        background: linear-gradient(135deg, rgba(15, 15, 15, 0.95), rgba(25, 25, 25, 0.95));
        border-top: 1px solid #00ffff;
        padding: 0 20px;
    }
    
    .show-card.expanded .show-card-drawer {
        max-height: 380px;
        padding: 20px;
    }
    
    .drawer-content {
        font-family: 'Orbitron', sans-serif;
    }
    
    .drawer-content h3 {
        color: #00ffff;
        font-size: 1.2rem;
        margin: 0 0 12px 0;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 600;
        text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    }
    
    .drawer-content p {
        margin: 6px 0;
        color: #ffffff;
        font-size: 0.9rem;
        line-height: 1.5;
        font-weight: 400;
    }
    
    .drawer-date {
        color: #00ffff !important;
        font-weight: bold;
    }
    
    .drawer-location {
        color: #ffffff !important;
    }
    
    .drawer-time,
    .drawer-lineup,
    .drawer-cover {
        color: #cccccc !important;
    }
    
    .drawer-tickets {
        display: inline-block;
        margin-top: 12px;
        padding: 8px 15px;
        background: #00ffff;
        color: #000000;
        text-decoration: none;
        border-radius: 4px;
        font-weight: bold;
        text-transform: uppercase;
        font-size: 0.8rem;
        letter-spacing: 1px;
        transition: all 0.3s ease;
    }
    
    .drawer-tickets:hover {
        background: #ffffff;
        color: #000000;
        transform: scale(1.05);
    }
}

/* Band Section Styles */
.band-section {
    padding: 40px 20px;
    background: transparent;
    margin: 40px 0;
}

.band-heading {
    color: #00ffff;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    font-family: 'TheEndFont', sans-serif;
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.7);
}

.band-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}
