/* Core Layout Structure */
body {
    background-color: #000000 !important;
    color: #e5e7eb;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    margin: 0;
    padding: 0;
    line-height: 1.5;
}

/* Container Width Limiter */
.container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 16px;
}

/* Header Text Styles */
header {
    padding-top: 64px;
    padding-bottom: 32px;
    border-bottom: 1px solid #1f2937;
}

.logo{
	text-align: left;
	margin-top: 40px;
}
.logo img{
	width: 100%;
	height: auto;
}
.label-caps {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #3b82f6;
    font-weight: bold;
    display: block;
    margin-bottom: 4px;
}

h1 {
    font-size: 40px;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0 0 4px 0;
    text-shadow: 0 0 12px rgba(59, 130, 246, 0.5);
}

.sub-header {
    color: #9ca3af;
    margin: 0;
    font-size: 16px;
}

.venue-highlight {
    color: #3b82f6;
	font-size: 2em;
    font-weight: 500;
}

/* Navigation Tabs */
nav {
    margin-bottom: 32px;
    border-bottom: 1px solid #1f2937;
}

.tab-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tab-link {
    display: inline-block;
    padding: 12px 16px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b7280;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.15s ease;
}

.tab-link:hover {
    color: #d1d5db;
}

.tab-link.active-tab {
    border-color: #3b82f6;
    color: #ffffff;
    font-weight: bold;
}

/* Gig Layout Rows */
main {
    min-height: 40vh;
}

.gig-row {
    padding: 32px 8px;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #111827;
    transition: background-color 0.2s ease;
}

.gig-row:hover {
    background-color: #050505;
}

/* Typography Date block layout */
.date-block {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.date-num {
    font-size: 30px;
    font-weight: 900;
    color: #3b82f6;
    width: 40px;
    text-align: center;
}

.date-meta {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b7280;
    line-height: 1.2;
}

.date-meta .day-name {
    display: block;
    color: #ffffff;
    font-weight: bold;
}

/* Show details typography */
.show-details {
    flex: 1;
    margin-bottom: 16px;
}

h2 {
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    margin: 0 0 4px 0;
}

.description {
    color: #9ca3af;
    font-size: 14px;
    margin: 0 0 8px 0;
    max-width: 576px;
}

.doors-meta {
    font-size: 12px;
    color: #4b5563;
}

/* Pricing and actions layout */
.action-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-tag {
    font-size: 14px;
}

.price-tag span {
    color: #6b7280;
    font-size: 12px;
}

.price-tag strong {
    color: #ffffff;
}

.btn-ticket {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
    color: #9ca3af;
    background-color: #000000;
    border: 1px solid #374151;
    padding: 6px 16px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.btn-ticket:hover {
    color: #ffffff;
    border-color: #3b82f6;
    background-color: #1e3a8a;
}

.badge-soldout {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #ef4444;
    background-color: rgba(127, 29, 29, 0.2);
    border: 1px solid rgba(153, 27, 27, 0.5);
    padding: 6px 12px;
    border-radius: 4px;
}

/* Footer layout rules */
footer {
    margin-top: 64px;
    padding: 32px 0 48px 0;
    border-top: 1px solid #111827;
    font-size: 11px;
    color: #4b5563;
    letter-spacing: 0.05em;
    display: flex;
    flex-direction: column;
    gap: 16px;
}



.effect-shimmer {
    background: linear-gradient(to right, #ffffff 20%, #a1a1aa 40%, #ffffff 60%, #ffffff 80%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    transition: background-position 0.5s ease;
}
/* Trigger the light flash when hovering anywhere on the parent row */
.gig-row:hover .effect-shimmer {
    background-position: -200% center;
}

.effect-glitch {
    position: relative;
    color: #ffffff;
}
.gig-row:hover .effect-glitch {
    animation: glitchAction 0.3s linear;
}
@keyframes glitchAction {
    0% { transform: translate(0); text-shadow: none; }
    20% { transform: translate(-2px, 2px); text-shadow: -1px 0 #ef4444, 1px 0 #3b82f6; }
    40% { transform: translate(-2px, -2px); text-shadow: 1px -1px #ef4444, -1px 1px #3b82f6; }
    60% { transform: translate(2px, 2px); text-shadow: -1px 1px #ef4444, 1px -1px #3b82f6; }
    80% { transform: translate(2px, -2px); text-shadow: 1px 1px #ef4444, -1px -1px #3b82f6; }
    100% { transform: translate(0); text-shadow: none; }
}
@keyframes subtleFlicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        text-shadow: 0 0 4px rgba(255,255,255,0.4), 0 0 12px rgba(234,179,8,0.2);
        opacity: 1;
    }
    20%, 24%, 55% {
        text-shadow: none;
        opacity: 0.85;
    }
}
.effect-flicker {
    color: #ffffff;
    font-weight: 800;
    letter-spacing: -0.5px;
    animation: subtleFlicker 6s infinite;
}


.footer-left p {
    margin: 0;
}

.footer-left .venue-line {
    color: #374151;
    margin-top: 4px;
}

.footer-right {
    display: flex;
    gap: 16px;
}

.footer-right a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-right a:hover {
    color: #3b82f6;
}

/* Widescreen Media Breakpoints */
@mixin desktop { @media (min-width: 768px) { @content; } }

@media (min-width: 768px) {
    header {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
    }
    .header-right {
        text-align: right;
    }
    .gig-row {
        flex-direction: row;
        align-items: start;
    }
    .date-block {
        width: 25%;
        margin-bottom: 0;
    }
    .show-details {
        width: 50%;
        margin-bottom: 0;
    }
    .action-block {
        width: 25%;
        flex-direction: column;
        align-items: flex-end;
        gap: 8px;
    }
    footer {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
	/* Venue Info Layout */
.venue-info-section {
    padding: 48px 0;
    border-top: 1px solid #111827;
    margin-top: 44px;
}

.grid-two-col {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.venue-column h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #ffffff;
    margin: 0 0 16px 0;
    font-weight: bold;
}

.venue-column p {
    color: #9ca3af;
    font-size: 13px;
    margin: 0 0 12px 0;
    max-width: 440px;
}
	
	
	
@media (min-width: 768px) {
    .grid-two-col {
        flex-direction: row;
        justify-content: space-between;
    }
    .venue-column {
        width: 45%;
    }
}

}
