/* --- RESET & BASIS --- */
* { box-sizing: border-box; }
body { margin: 0; padding: 0; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background: #f2f2f2; color: #262626; -webkit-font-smoothing: antialiased; display: flex; flex-direction: column; min-height: 100vh; }
a { text-decoration: none; color: inherit; transition: 0.2s; }
h1, h2, h3, h4 { margin: 0; }

/* --- HEADER --- */
header { background-color: #026cdf; color: white; height: 60px; display: flex; align-items: center; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
.header-inner { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.6em; font-weight: 800; letter-spacing: -0.5px; }
.search-bar { background: rgba(255,255,255,0.2); padding: 8px 15px; border-radius: 4px; border: 1px solid rgba(255,255,255,0.3); color: white; width: 350px; display: flex; justify-content: space-between; font-size: 0.9em; }
.user-menu { font-weight: 600; font-size: 0.9em; cursor: pointer; }
.user-menu:hover { text-decoration: underline; }

/* --- HERO --- */
.hero { 
    background: linear-gradient(rgba(0,30,60,0.4), rgba(0,30,60,0.8)), url('image_0.png'); 
    background-size: cover; background-position: center 30%; 
    height: 320px; display: flex; align-items: flex-end; color: white;
}
.hero-content { max-width: 1200px; width: 100%; margin: 0 auto; padding: 40px 20px; }
.hero-tag { font-size: 0.85em; letter-spacing: 1.5px; font-weight: 700; margin-bottom: 5px; color: #f0f0f0; }
.hero h1 { font-size: 3em; text-shadow: 0 4px 10px rgba(0,0,0,0.5); }

/* --- TABS --- */
.tabs-bar { background: white; border-bottom: 1px solid #ddd; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 4px rgba(0,0,0,0.05); }
.tabs-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; gap: 30px; }
.tab { padding: 20px 0; font-weight: 700; font-size: 0.95em; color: #666; border-bottom: 4px solid transparent; }
.tab:hover { color: #026cdf; }
.tab.active { color: #262626; border-bottom: 4px solid #262626; }

/* --- CONTENT GRID & GENERAL --- */
.container { max-width: 1200px; margin: 40px auto; padding: 0 20px; display: grid; grid-template-columns: 2fr 1fr; gap: 40px; flex: 1; }
.full-width { grid-column: 1 / -1; } /* Voor pagina's zonder zijbalk */

/* --- CARD STYLING --- */
.card { background: white; border-radius: 8px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); overflow: hidden; margin-bottom: 20px; }
.card-header { padding: 25px 30px; border-bottom: 1px solid #eee; display: flex; justify-content: space-between; align-items: center; }
.card-body { padding: 30px; }

/* --- TICKETS (Specifiek) --- */
.secure-badge { background: #e8f4fd; color: #026cdf; padding: 5px 10px; border-radius: 4px; font-size: 0.8em; font-weight: bold; }
.ticket-row { padding: 25px 30px; border-bottom: 1px solid #f0f0f0; display: flex; justify-content: space-between; align-items: center; transition: background 0.2s; }
.ticket-row:hover { background: #fafafa; }
.ticket-name { display: block; font-weight: 700; font-size: 1.1em; margin-bottom: 4px; color: #222; }
.stock-label { display: inline-block; font-size: 0.75em; color: #d90000; font-weight: 700; background: #ffe6e6; padding: 2px 6px; border-radius: 3px; margin-bottom: 5px; }
.ticket-price-breakdown { font-size: 0.85em; color: #777; }
.ticket-action { display: flex; align-items: center; gap: 15px; }
.price-tag { font-size: 1.2em; font-weight: 700; color: #333; }
.qty-input { width: 50px; padding: 8px; font-size: 1.1em; text-align: center; border: 1px solid #ccc; border-radius: 4px; }

/* --- TOTAL BOX --- */
.total-box { background: #f8f9fa; padding: 30px; border-top: 1px solid #eee; display: none; }
.receipt-row { display: flex; justify-content: space-between; font-size: 0.95em; color: #555; margin-bottom: 8px; }
.transaction-fee-row { border-top: 1px dashed #ccc; padding-top: 10px; margin-top: 10px; color: #333; }
.grand-total-row { display: flex; justify-content: space-between; font-size: 1.3em; font-weight: 800; color: #026cdf; margin-top: 15px; padding-top: 15px; border-top: 2px solid #ddd; }
.btn-primary { background: #026cdf; color: white; width: 100%; padding: 16px; font-size: 1.1em; font-weight: 700; border: none; border-radius: 6px; cursor: pointer; margin-top: 20px; transition: background 0.2s; }
.btn-primary:hover { background: #0056b3; }

/* --- LINE UP GRID --- */
.artist-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; }
.artist-card { background: #333; color: white; border-radius: 8px; overflow: hidden; position: relative; height: 300px; }
.artist-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.artist-card:hover .artist-img { transform: scale(1.05); }
.artist-name { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.9)); padding: 20px; font-weight: bold; font-size: 1.2em; }

/* --- SIDEBAR & INFO --- */
.info-card { background: white; border-radius: 8px; padding: 25px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); border-left: 5px solid #026cdf; margin-bottom: 20px; }
.info-header { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid #eee; }
.info-icon { width: 24px; height: 24px; }
.info-item { margin-bottom: 20px; }
.info-item strong { display: block; color: #333; margin-bottom: 4px; font-size: 0.95em; }
.info-item p { margin: 0; font-size: 0.85em; color: #666; line-height: 1.5; }
.sponsor-footer { text-align: center; font-size: 0.8em; color: #aaa; margin-top: 30px; border-top: 1px solid #eee; padding-top: 15px; }

/* --- LOCATION --- */
.map-container { width: 100%; height: 400px; background: #eee; border-radius: 8px; overflow: hidden; margin-bottom: 20px; }

/* --- FOOTER --- */
footer { background: #1f1f1f; color: #fff; padding: 60px 20px 20px; margin-top: auto; font-size: 0.9em; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid #333; }
.f-col h4 { margin-bottom: 15px; text-transform: uppercase; font-size: 0.8em; letter-spacing: 1px; opacity: 0.7; }
.f-col ul { list-style: none; padding: 0; margin: 0; }
.f-col li { margin-bottom: 8px; color: #aaa; }
.f-col a:hover { color: white; text-decoration: underline; }
.footer-bottom { max-width: 1200px; margin: 20px auto 0; color: #666; font-size: 0.8em; text-align: center; }

@media (max-width: 800px) {
    .container { grid-template-columns: 1fr; }
    .hero { background-position: center; }
}