/* Shows Section - New Creative Design */
.shows-section {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f0606 0%, #1a1a1a 100%);
}

.shows-background-container {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.shows-bg-image {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('../../assets/graphics/photo_concert.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    filter: blur(2px);
    transform: scale(1.1);
    transition: all 1s cubic-bezier(0.4,0,0.2,1);
}

.shows-bg-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, rgba(15,6,6,0.3) 0%, rgba(15,6,6,0.8) 100%);
    z-index: 1;
}

.shows-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.shows-card-unified {
    background: rgba(236, 217, 217, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transform: translateY(60px) scale(0.9);
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.4,0,0.2,1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(220,220,225,0.3);
    display: flex;
    flex-direction: row;
    min-height: 400px;
}

.shows-card-unified.visible {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.shows-card-image {
    position: relative;
    flex: 1;
    min-height: 400px;
    overflow: hidden;
}

.concert-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4,0,0.2,1);
    filter: grayscale(20%) contrast(1.1);
}

.shows-card-unified:hover .concert-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(45deg, rgba(15,6,6,0.4) 0%, rgba(0,0,0,0.2) 100%);
    opacity: 0.6;
    transition: opacity 0.5s ease;
}

.shows-card-unified:hover .image-overlay {
    opacity: 0.3;
}

.shows-card-content {
    flex: 1;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    color: #0f0606;
}

/* Show Content Styles */
.show-content, .no-show-content {
    transition: opacity 0.3s ease;
}

.show-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.show-date {
    font-family: 'Special Elite', cursive;
    font-size: 1rem;
    color: #666;
    font-weight: bold;
}

.show-tag {
    background: #0f0606;
    color: rgb(222, 220, 220);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.show-title {
    font-family: 'Special Elite', cursive;
    font-size: 3rem;
    font-weight: bold;
    margin: 10px 0 20px 0;
    color: #0f0606;
    line-height: 1.1;
}

.show-location {
    font-size: 1.3rem;
    color: #444;
    margin-bottom: 8px;
    font-weight: 500;
}

.show-venue {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    font-style: italic;
}

.show-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* No Show Content Styles */
.no-show-header {
    text-align: center;
    margin-bottom: 25px;
}

.no-show-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.7;
}

.no-show-title {
    font-family: 'Special Elite', cursive;
    font-size: 2.5rem;
    font-weight: bold;
    color: #0f0606;
    line-height: 1.2;
    margin: 0;
}

.no-show-description {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin: 20px 0 30px 0;
    font-style: italic;
}

.no-show-actions {
    display: flex;
    justify-content: center;
}

/* Button Styles */
.primary-button, .secondary-button {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Special Elite', cursive;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    text-align: center;
    cursor: pointer;
}

.primary-button {
    background: #0f0606;
    color: rgb(217, 217, 217);
    border: 2px solid #0f0606;
}

.primary-button:hover {
    background: transparent;
    color: #0f0606;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(15,6,6,0.3);
}

.secondary-button {
    background: transparent;
    color: #0f0606;
    border: 2px solid #0f0606;
}

.secondary-button:hover {
    background: #0f0606;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(15,6,6,0.3);
}

/* No Shows Mode Styling */
.shows-card-unified.no-shows-mode {
    background: rgba(245, 245, 248, 0.95);
}

.shows-card-unified.no-shows-mode .concert-image {
    filter: grayscale(60%) blur(1px) brightness(0.7);
}

.shows-card-unified.no-shows-mode .image-overlay {
    background: linear-gradient(45deg, rgba(100,100,120,0.6) 0%, rgba(80,80,100,0.4) 100%);
    opacity: 0.8;
}

/* Animation on scroll */
.shows-section.active .shows-bg-image {
    transform: scale(1);
    opacity: 0.25;
}

.shows-section.active .shows-card-unified {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .shows-card-unified {
        flex-direction: column;
        min-height: auto;
    }
    
    .shows-card-image {
        min-height: 250px;
        flex: none;
    }
    
    .shows-card-content {
        padding: 30px 25px;
    }
    
    .show-title {
        font-size: 2.2rem;
    }
    
    .no-show-title {
        font-size: 2rem;
    }
    
    .show-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .show-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .primary-button, .secondary-button {
        text-align: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .shows-container {
        padding: 20px 10px;
    }
    
    .shows-card-content {
        padding: 25px 20px;
    }
    
    .show-title {
        font-size: 1.8rem;
    }
    
    .no-show-title {
        font-size: 1.6rem;
    }
    
    .show-location {
        font-size: 1.1rem;
    }
    
    .show-venue {
        font-size: 1rem;
    }
}

/* Prevent horizontal scroll */
html, body {
    overflow-x: hidden;
    width: 100vw;
    max-width: 100vw;
}

* {
    box-sizing: border-box;
}