/* Event page styles */

.event-hero {
    padding: 60px 0 40px;
    text-align: center;
}
.event-hero .event-badge {
    display: inline-block;
    background: var(--primary-glow);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.event-hero h1 {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 8px;
    letter-spacing: -1px;
}
.event-hero .featuring {
    font-size: 20px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 24px;
}
.event-meta {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 32px;
    color: var(--text-muted);
    font-size: 15px;
}
.event-meta strong {
    color: var(--text);
}
.event-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Schedule */
.schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 8px;
}
.schedule-table th {
    text-align: left;
    padding: 12px 16px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.schedule-table td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 15px;
}
.schedule-table tr:hover {
    background: rgba(255,255,255,0.02);
}
.schedule-table .time {
    color: var(--text-muted);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
    width: 140px;
}
.schedule-table .artist-name {
    font-weight: 600;
}
.schedule-table .artist-name a {
    color: var(--text);
    text-decoration: none;
}
.schedule-table .artist-name a:hover {
    color: var(--primary);
}
.schedule-table .headliner .artist-name {
    color: var(--primary);
    font-size: 16px;
}
.schedule-table .set-length {
    color: var(--text-muted);
    text-align: right;
    white-space: nowrap;
}
.schedule-table .dj-row {
    background: rgba(255,255,255,0.02);
}
.schedule-table .dj-row .artist-name {
    color: var(--accent);
}

/* Venue info */
.venue-card {
    background: var(--surface);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    padding: 28px;
    margin-top: 24px;
}
.venue-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}
.venue-card .address {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 16px;
}
.venue-card .times {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}
.venue-card .time-item {
    font-size: 14px;
}
.venue-card .time-item .label {
    color: var(--text-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.venue-card .time-item .value {
    font-weight: 600;
    margin-top: 2px;
}

/* Artists page */
.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.artist-card {
    background: var(--surface);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    color: var(--text);
    display: block;
    transition: border-color 0.2s, transform 0.2s;
}
.artist-card:hover {
    border-color: rgba(242,201,76,0.4);
    transform: translateY(-3px);
}
.artist-card .artist-photo {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}
.artist-card .artist-info {
    padding: 20px;
    text-align: center;
}
.artist-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}
.artist-card .artist-role {
    font-size: 12px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}
.artist-card .artist-social {
    display: inline-block;
    font-size: 13px;
    color: var(--text-muted);
    transition: color 0.2s;
}
.artist-card:hover .artist-social {
    color: var(--primary);
}

.two-col {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
    align-items: start;
}

/* Gallery (moved from artists.php inline) */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 960px;
    margin: 0 auto;
}
.gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 3 / 4;
    text-decoration: none;
    color: #fff;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, filter 0.4s ease;
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 40%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    transition: background 0.3s ease;
}
.gallery-item:hover .gallery-overlay {
    background: linear-gradient(to top, rgba(242,201,76,0.9) 0%, rgba(242,201,76,0.2) 50%, transparent 100%);
}
.gallery-overlay h3 {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2px;
}
.gallery-overlay .gallery-handle {
    font-size: 13px;
    opacity: 0.7;
    transition: opacity 0.3s;
}
.gallery-item:hover .gallery-handle {
    opacity: 1;
}
@media (max-width: 640px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .gallery-overlay { padding: 14px; }
    .gallery-overlay h3 { font-size: 15px; }
    .gallery-overlay .gallery-handle { font-size: 12px; }
}
@media (max-width: 380px) {
    .gallery-grid { grid-template-columns: 1fr; max-width: 320px; }
}

@media (max-width: 768px) {
    .two-col { grid-template-columns: 1fr; }
    .event-meta { gap: 16px; }
    .schedule-table .time { width: auto; }
}
