/* Shows Page Specific Styles */

.page-content {
    width: 90vw;
    max-width: 700px;
    text-align: center;
    margin-bottom: 30px;
}

.page-content h1 {
    font-size: 1.3rem;
    letter-spacing: 2px;
    color: #333;
    margin-bottom: 16px;
}

.page-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Show Cards */
.shows-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}

.show-card {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 18px 20px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.show-card .show-date {
    font-weight: bold;
    color: #333;
    font-size: 0.95rem;
}

.show-card .show-venue {
    color: #666;
    font-size: 0.9rem;
}

.show-card .show-bands {
    color: #888;
    font-size: 0.85rem;
    margin-top: 4px;
    font-style: italic;
}

.show-card .ticket-link {
    display: inline-block;
    padding: 8px 16px;
    background: #333;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: background 0.2s;
}

.show-card .ticket-link:hover {
    background: #e63946;
}

.show-card .ticket-info {
    display: inline-block;
    padding: 8px 16px;
    background: #666;
    color: white;
    border-radius: 4px;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Merch link styles */
.merch-link {
    color: #e63946;
    text-decoration: underline;
    cursor: pointer;
    transition: opacity 0.2s;
}

.merch-link:hover {
    opacity: 0.8;
}

/* Merch modal styles */
.merch-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.merch-modal.show {
    display: flex;
}

.merch-modal-content {
    background: white;
    border-radius: 8px;
    padding: 20px;
    max-width: 90vw;
    max-height: 90vh;
    overflow: auto;
    position: relative;
    text-align: center;
}

.merch-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.merch-modal-close:hover {
    color: #e63946;
}

.merch-modal h3 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 1.2rem;
}

.merch-modal img {
    max-width: 100%;
    max-height: 70vh;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 480px) {
    .merch-modal-content {
        padding: 15px;
        margin: 10px;
    }

    .merch-modal h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .merch-modal img {
        max-height: 60vh;
    }
}