/* --- EPK Layout & Sections --- */
.epk-container {
    background-color: #0b0b0b;
    color: #fff;
    padding-bottom: 80px;
}

.epk-section {
    padding: 60px 5%;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

/* --- Biography & Text Styling --- */
.bio-content {
    line-height: 1.8;
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #ddd;
}

.tagline {
    color: #ff0000;
    font-weight: bold;
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* --- The Lineup Grid --- */
.lineup-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.lineup-member {
    background: #151515;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #222;
    transition: border-color 0.3s ease;
}

.lineup-member:hover {
    border-color: #ff0000;
}

.lineup-member img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: top;
    border-radius: 6px;
    margin-bottom: 15px;
    filter: grayscale(30%);
    transition: filter 0.3s ease;
}

.lineup-member:hover img {
    filter: grayscale(0%);
}

.lineup-member h3 {
    color: #ff0000;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.role {
    font-weight: bold;
    color: #fff;
    margin-bottom: 5px;
}

.quote {
    font-style: italic;
    font-size: 0.9rem;
    color: #888;
}

/* --- Past Venues Section --- */
.venue-subtitle {
    color: #888;
    margin-bottom: 30px;
    font-style: italic;
    font-size: 0.95rem;
}

.venue-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.venue-item {
    position: relative;
    background: #151515;
    border: 1px solid #222;
    padding: 15px 25px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: help;
}

.venue-item:hover {
    border-color: #ff0000;
    background: #1a1a1a;
    transform: translateY(-3px);
}

.venue-name {
    color: #eee;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.venue-item:hover .venue-name {
    color: #ff0000;
}

/* Tooltip / Caption styling */
.venue-caption {
    visibility: hidden;
    opacity: 0;
    width: 220px;
    background-color: #ff0000;
    color: #fff;
    text-align: center;
    padding: 12px;
    position: absolute;
    z-index: 100;
    bottom: 130%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13px;
    font-weight: bold;
    line-height: 1.4;
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.6);
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.venue-caption::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -8px;
    border-width: 8px;
    border-style: solid;
    border-color: #ff0000 transparent transparent transparent;
}

.venue-item:hover .venue-caption {
    visibility: visible;
    opacity: 1;
}

/* --- Stage Plot & Input List Table --- */
.tech-content {
    text-align: left;
    margin-top: 30px;
}

.input-list {
    overflow-x: auto;
    margin: 30px 0;
    border: 1px solid #333;
    border-radius: 8px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: #111;
    min-width: 600px;
}

th {
    background-color: #ff0000;
    color: #fff;
    text-transform: uppercase;
    font-size: 0.85rem;
    padding: 15px;
    text-align: left;
}

td {
    padding: 12px 15px;
    border-bottom: 1px solid #222;
    color: #eee;
}

tbody tr:nth-child(even) {
    background-color: #1a1a1a;
}

tbody tr:hover {
    background-color: #252525;
}

/* --- Stage Requirements List --- */
.stage-requirements {
    background: #151515;
    padding: 30px;
    border-left: 4px solid #ff0000;
    margin-top: 30px;
}

.stage-requirements h3 {
    color: #ff0000;
    margin-top: 0;
}

.stage-requirements ul {
    list-style: none;
    padding: 0;
}

.stage-requirements li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.stage-requirements li::before {
    content: "»";
    position: absolute;
    left: 0;
    color: #ff0000;
    font-weight: bold;
}

/* --- Responsive Video Container --- */
.video-responsive {
    position: relative;
    padding-bottom: 56.25%; 
    height: 0;
    overflow: hidden;
    width: 100%;
    margin: 40px 0;
    border: 2px solid #333;
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* --- Press Quotes --- */
blockquote {
    font-size: 1.5rem;
    font-style: italic;
    border-left: none;
    padding: 0;
    margin: 40px 0 10px 0;
}

cite {
    color: #ff0000;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- STICKY BOOKING BUTTON (Bottom Left) --- */
.sticky-booking-container {
    position: fixed !important;
    bottom: 30px !important; 
    left: 30px !important; 
    right: auto !important; 
    width: auto !important;
    z-index: 99999 !important;
}

.sticky-booking-btn {
    background-color: #ff0000 !important; 
    color: #ffffff !important;
    padding: 16px 28px;
    border-radius: 50px;
    text-decoration: none !important;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.6);
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
    animation: buster-pulse 2s infinite;
}

/* --- STICKY BOOKING BUTTON (Minimalist Expansion) --- */
.sticky-booking-container {
    position: fixed !important;
    bottom: 30px !important; 
    left: 30px !important; 
    right: auto !important; 
    z-index: 99999 !important;
}

/* --- STICKY BOOKING BUTTON V2 --- */
.sticky-booking-container {
    position: fixed !important;
    bottom: 30px !important; 
    left: 30px !important; 
    right: auto !important; 
    z-index: 99999 !important;
    /* Ensure the container doesn't block clicks elsewhere */
    width: auto;
    height: auto;
}

.sticky-booking-btn {
    background-color: #ff0000 !important; 
    color: #ffffff !important;
    
    /* Perfect Circle Setup */
    width: 60px;
    height: 60px;
    padding: 0;
    border-radius: 60px; /* Keep it perfectly round */
    
    text-decoration: none !important;
    font-weight: 800;
    
    /* The Secret to Perfect Centering */
    display: flex;
    align-items: center;
    justify-content: center;
    
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.6);
    border: 2px solid rgba(255,255,255,0.3);
    
    /* Smooth Transition */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    white-space: nowrap;
}

.btn-icon {
    font-size: 1.6rem;
    /* Extra nudge if the emoji looks slightly high/low in your specific font */
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px; /* Matches the button width to stay centered */
}

.btn-text {
    opacity: 0;
    font-size: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: opacity 0.2s ease;
    margin-right: 0;
}

/* Desktop Hover Expansion */
@media (min-width: 601px) {
    .sticky-booking-btn:hover {
        width: 210px; /* Fixed width that fits the text perfectly */
        background-color: #cc0000 !important;
        padding-right: 20px;
    }

    .sticky-booking-btn:hover .btn-icon {
        min-width: 45px; /* Shrinks icon area slightly to make room for text */
    }

    .sticky-booking-btn:hover .btn-text {
        opacity: 1;
        font-size: 1.1rem;
    }
}

/* Mobile: Pure Circle, No Expansion */
@media (max-width: 600px) {
    .sticky-booking-container {
        bottom: 25px !important;
        left: 25px !important;
    }
    
    .sticky-booking-btn {
        width: 60px !important; /* Force circle size */
        height: 60px !important;
        display: flex !important; /* Ensure flex is active for centering */
    }
    
    .btn-text {
        display: none !important; /* Kill the text entirely on mobile */
    }

    /* Remove hover effects on mobile to prevent "sticky" hover states */
    .sticky-booking-btn:hover {
        width: 60px !important;
    }
}