/* Event Ticketing Styles - uses the site brand palette
   #990012 (primary), #083B9A (secondary), #000000 (dark), #E5FFDE (light), #CBFF8C (accent) */

.evt-section {
    padding: 60px 0 80px;
    min-height: 60vh;
}

.evt-header {
    text-align: center;
    margin-bottom: 3rem;
}

.evt-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--ind2-primary, #990012);
    margin-bottom: 0.5rem;
}

.evt-subtitle {
    color: #555;
    font-size: 1.1rem;
}

.evt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.evt-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid #eee;
}

.evt-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(153, 0, 18, 0.18);
    color: inherit;
}

.evt-card-image-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--ind2-dark, #000);
}

.evt-card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.evt-card-date-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--ind2-primary, #990012);
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    text-align: center;
    line-height: 1.1;
}

.evt-card-body {
    padding: 1.25rem 1.5rem 1.5rem;
}

.evt-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--ind2-dark, #000);
}

.evt-card-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.evt-card-meta i {
    color: var(--ind2-secondary, #083B9A);
    width: 18px;
}

.evt-card-price {
    display: inline-block;
    font-weight: 700;
    color: var(--ind2-primary, #990012);
    background: var(--ind2-light, #E5FFDE);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.evt-empty {
    text-align: center;
    padding: 4rem 1rem;
    color: #777;
}

/* Detail page */
.evt-detail-hero {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 2rem;
    max-height: 420px;
}

.evt-detail-hero img,
.evt-detail-hero video {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
}

.evt-detail-video {
    margin-bottom: 2rem;
}

.evt-detail-video-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--ind2-dark, #000000);
    margin-bottom: 0.75rem;
}

.evt-detail-video-title i {
    color: var(--ind2-primary, #990012);
    margin-right: 0.4rem;
}

.evt-detail-video video {
    width: 100%;
    max-height: 420px;
    border-radius: 16px;
    background: #000;
    display: block;
}

.evt-detail-meta-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.evt-detail-meta-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.evt-detail-meta-list i {
    color: var(--ind2-primary, #990012);
    width: 22px;
    text-align: center;
}

.evt-buy-btn {
    background: var(--ind2-primary, #990012);
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.2s ease;
}

.evt-buy-btn:hover {
    background: var(--ind2-secondary, #083B9A);
    color: #fff;
}

/* Buy ticket form */
.evt-form-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    max-width: 560px;
    margin: 0 auto;
}

.evt-form-card .form-label {
    font-weight: 600;
    color: var(--ind2-dark, #000);
}

.evt-form-summary {
    background: var(--ind2-light, #E5FFDE);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
}
