/**
 * CONCERTI BB - CSS MODERNO STILE BILLBOARD
 * Reset completo e design pulito per concerti
 */

/* ----------------------------------------- */
/* Reset e Base                               */
/* ----------------------------------------- */
.bb-concert-page {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ----------------------------------------- */
/* Header Concerto                           */
/* ----------------------------------------- */
.bb-concert-header {
    text-align: left;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e5e5e5;
}

.bb-header-meta {
    margin-bottom: 15px;
}

.bb-category-tag {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 15px;
}

.bb-date {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    font-weight: 500;
}

.bb-concert-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    margin: 15px 0;
    color: #000;
}

.bb-concert-subtitle {
    font-size: 18px;
    color: #666;
    margin: 0;
    font-weight: 400;
}

/* ----------------------------------------- */
/* CTA Biglietti                             */
/* ----------------------------------------- */
.bb-ticket-cta {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    padding: 30px;
    margin: 40px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.bb-btn-primary {
    background: #dc3545;
    color: #fff;
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 0;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.bb-btn-primary:hover {
    background: #c82333;
    color: #fff;
    text-decoration: none;
}

.bb-price-info {
    text-align: right;
}

.bb-price-label {
    display: block;
    font-size: 13px;
    color: #666;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 5px;
}

.bb-price-value {
    font-size: 24px;
    font-weight: 700;
    color: #000;
}

/* ----------------------------------------- */
/* Contenuto Principale                       */
/* ----------------------------------------- */
.bb-concert-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.bb-content-left {
    /* Contenuto principale */
}

.bb-content-right {
    /* Sidebar future */
}

.bb-hero-image {
    margin-bottom: 40px;
}

.bb-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
}

.bb-event-description {
    margin-bottom: 40px;
}

.bb-event-description h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
    border-bottom: 2px solid #000;
    padding-bottom: 10px;
}

.bb-event-description p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.bb-event-details {
    background: #fff;
    border: 1px solid #e9ecef;
    padding: 25px;
    margin: 25px 0;
}

.bb-detail-item {
    padding: 8px 0;
    border-bottom: 1px solid #f8f9fa;
    font-size: 15px;
}

.bb-detail-item:last-child {
    border-bottom: none;
}

.bb-detail-item strong {
    color: #000;
    font-weight: 600;
    margin-right: 10px;
}

/* ----------------------------------------- */
/* Pulsanti Secondari                        */
/* ----------------------------------------- */
.bb-btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid #000;
    background: transparent;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.3s ease;
}

.bb-btn-secondary:hover {
    background: #000;
    color: #fff;
    text-decoration: none;
}

.bb-more-dates {
    margin: 30px 0;
}

/* ----------------------------------------- */
/* Partner e Venue                           */
/* ----------------------------------------- */
.bb-partner-info {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 0;
    border-top: 1px solid #e9ecef;
    margin-top: 40px;
    font-size: 14px;
    color: #666;
}

.bb-partner-logo {
    max-height: 24px;
    width: auto;
}

.bb-venue-section {
    margin-top: 50px;
}

.bb-venue-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
    border-bottom: 2px solid #000;
    padding-bottom: 10px;
}

.bb-venue-info {
    background: #f8f9fa;
    padding: 20px;
    margin-bottom: 25px;
    border-left: 4px solid #000;
}

.bb-venue-info p {
    margin: 5px 0;
    font-size: 15px;
}

.bb-map {
    height: 400px;
    border: 1px solid #e9ecef;
}

.bb-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ----------------------------------------- */
/* Responsività                              */
/* ----------------------------------------- */
@media (max-width: 768px) {
    .bb-concert-page {
        padding: 0 15px;
    }
    
    .bb-concert-title {
        font-size: 32px;
    }
    
    .bb-concert-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .bb-ticket-cta {
        flex-direction: column;
        text-align: center;
    }
    
    .bb-price-info {
        text-align: center;
    }
}

/* ----------------------------------------- */
/* Archivio Concerti                         */
/* ----------------------------------------- */
.concerti-archive-header .search-form {
    display: flex;
    margin-bottom: 30px;
    border: 1px solid #e9ecef;
    background: #fff;
}

.concerti-archive-header .search-field {
    flex-grow: 1;
    border: none;
    padding: 15px 20px;
    font-size: 16px;
    outline: none;
}

.concerti-archive-header .search-submit {
    padding: 15px 25px;
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
}

.concerti-archive-header .page-title {
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    border-bottom: 3px solid #000;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.concerti-list-wrapper .concerto-item-archive {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
    gap: 30px;
}

.concerto-item-archive .date-col { 
    flex: 0 0 80px; 
    text-align: left; 
    font-size: 14px;
    font-weight: 600;
}

.concerto-item-archive .info-col { 
    flex: 1; 
}

.concerto-item-archive .info-col .artist-name { 
    margin: 0 0 5px 0; 
    font-size: 20px; 
    font-weight: 700; 
}

.concerto-item-archive .info-col .artist-name a { 
    color: #000; 
    text-decoration: none; 
}

.concerto-item-archive .info-col .artist-name a:hover { 
    text-decoration: underline; 
}

.concerto-item-archive .info-col .location,
.concerto-item-archive .info-col .venue { 
    display: block; 
    color: #666; 
    font-size: 14px;
    margin: 2px 0;
}

.concerto-item-archive .tickets-col .ticket-link {
    display: inline-block;
    padding: 10px 20px;
    background: #dc3545;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    transition: background-color 0.3s ease;
}

.concerto-item-archive .tickets-col .ticket-link:hover {
    background: #c82333;
    text-decoration: none;
}