* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #0a0a0a;
    color: #f0f0f0;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header with Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 50, 0, 0.2);
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: #ff3200;
    text-decoration: none;
    letter-spacing: -0.02em;
}

/* Header logo image */
.header-logo-img {
    height: 32px;
    width: auto;
}

/* Hide text logo when image is present */
.header-logo-img:not([src=""]) ~ .logo-text-header {
    display: none;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: #f0f0f0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ff3200;
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #ff3200;
    margin: 3px 0;
    transition: 0.3s;
}

/* Main content with padding for fixed header */
.main-wrapper {
    padding-top: 70px;
}

/* Hero Section */
.hero-section {
    padding: 40px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 50, 0, 0.2);
    background: linear-gradient(180deg, #0a0a0a 0%, rgba(10, 10, 10, 0.95) 100%);
}

/* Logo Image Styles */
.logo-img {
    max-width: 300px;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    animation: subtle-glow 3s ease-in-out infinite;
}

/* Fallback text logo (hidden when image is present) */
.logo-text {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    color: #ff3200;
    text-transform: lowercase;
    margin-bottom: 10px;
    animation: subtle-glow 3s ease-in-out infinite;
}

@keyframes subtle-glow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(255, 50, 0, 0.3)); }
    50% { filter: drop-shadow(0 0 30px rgba(255, 50, 0, 0.5)); }
}

.tagline {
    font-size: 0.9rem;
    color: #888;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Monthly Flyer Section */
.flyer-section {
    margin-bottom: 80px;
    text-align: center;
}

.flyer-container {
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid rgba(255, 50, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
}

.flyer-container:hover {
    border-color: #ff3200;
    box-shadow: 0 20px 40px rgba(255, 50, 0, 0.2);
    transform: translateY(-5px);
}

.flyer-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Fallback for missing flyer */
.flyer-placeholder {
    padding: 100px 20px;
    background: rgba(255, 50, 0, 0.05);
    color: #666;
    font-style: italic;
}

/* Schedule Section */
.schedule-section {
    margin-bottom: 80px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #ff3200;
    text-align: center;
    letter-spacing: -0.02em;
}

.schedule-grid {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

.event-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 50, 0, 0.2);
    padding: 25px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 50, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.event-card:hover::before {
    left: 100%;
}

.event-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
    border-color: #ff3200;
}

/* Special styling for tonight's event */
.event-card.tonight-event {
    border: 2px solid #ff3200;
    background: rgba(255, 50, 0, 0.08);
    box-shadow: 0 0 20px rgba(255, 50, 0, 0.2);
    animation: tonight-pulse 3s ease-in-out infinite;
}

.event-card.tonight-event:hover {
    background: rgba(255, 50, 0, 0.12);
    transform: translateX(5px) scale(1.02);
}

/* Pulsing animation for tonight's event */
@keyframes tonight-pulse {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(255, 50, 0, 0.2);
    }
    50% { 
        box-shadow: 0 0 30px rgba(255, 50, 0, 0.4);
    }
}

.event-info {
    flex: 1;
}

.event-date {
    font-size: 0.85rem;
    color: #ff3200;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Special styling for "Tonight" date text */
.event-date.tonight {
    color: #ff3200;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    animation: tonight-glow 2s ease-in-out infinite;
}

/* Glowing animation for "Tonight" text */
@keyframes tonight-glow {
    0%, 100% { 
        text-shadow: 0 0 10px rgba(255, 50, 0, 0.5);
    }
    50% { 
        text-shadow: 0 0 20px rgba(255, 50, 0, 0.8);
    }
}

.event-artists {
    font-size: 1.2rem;
    margin-top: 10px;
    font-weight: 500;
}

.event-time {
    font-size: 0.9rem;
    color: #888;
    margin-top: 5px;
}

.event-ticket-btn {
    padding: 10px 25px;
    background: #ff3200;
    color: #0a0a0a;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.event-ticket-btn:hover {
    background: #ff5033;
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(255, 50, 0, 0.3);
}

.event-ticket-btn.coming-soon {
    background: #333;
    color: #666;
    cursor: not-allowed;
}

.event-ticket-btn.coming-soon:hover {
    transform: none;
    box-shadow: none;
}

/* Enhanced button styling for tonight events */
.tonight-event .event-ticket-btn {
    background: linear-gradient(45deg, #ff3200, #ff5033);
    animation: button-pulse 2s ease-in-out infinite;
}

.tonight-event .event-ticket-btn:hover {
    background: linear-gradient(45deg, #ff5033, #ff6b50);
    box-shadow: 0 15px 30px rgba(255, 50, 0, 0.4);
}

@keyframes button-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* No events message */
.no-events-message {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    font-style: italic;
}

.no-events-message p {
    font-size: 1.2rem;
}

/* Loading state */
.loading-message {
    text-align: center;
    padding: 60px 20px;
    color: #ff3200;
}

.loading-spinner {
    border: 2px solid rgba(255, 50, 0, 0.2);
    border-top: 2px solid #ff3200;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Stay Connected Section */
.connect-section {
    text-align: center;
    margin-bottom: 80px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.connect-title {
    font-size: 1.5rem;
    color: #ff3200;
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.subscription-form {
    display: flex;
    gap: 12px;
    margin-bottom: 0;
}

.email-input {
    flex: 1;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 50, 0, 0.2);
    border-radius: 25px;
    color: #f0f0f0;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    outline: none;
}

.email-input::placeholder {
    color: #666;
}

.email-input:focus {
    border-color: #ff3200;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 50, 0, 0.1);
}

.subscribe-btn {
    padding: 14px 24px;
    background: #ff3200;
    color: #0a0a0a;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.subscribe-btn:hover {
    background: #ff5033;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 50, 0, 0.3);
}

/* Success Message */
.success-message {
    margin-top: 15px;
    padding: 12px;
    background: rgba(0, 255, 100, 0.1);
    border: 1px solid rgba(0, 255, 100, 0.3);
    color: #00ff64;
    border-radius: 8px;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.success-message.show {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */
footer {
    text-align: center;
    padding: 60px 20px;
    border-top: 1px solid rgba(255, 50, 0, 0.2);
    background: rgba(10, 10, 10, 0.8);
}

.footer-social-section {
    margin-bottom: 30px;
}

.footer-social-title {
    font-size: 1.2rem;
    color: #ff3200;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 2px solid #ff3200;
    border-radius: 50%;
    text-decoration: none;
    color: #ff3200;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: #ff3200;
    color: #0a0a0a;
    transform: translateY(-3px);
}

.footer-text {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-quote {
    font-style: italic;
    color: #888;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.95);
        flex-direction: column;
        padding: 20px;
        border-top: 1px solid rgba(255, 50, 0, 0.2);
    }

    .mobile-menu-btn {
        display: flex;
    }

    .logo-img {
        max-width: 200px;
    }
    
    .logo-text {
        font-size: 3rem;
    }
    
    .container {
        padding: 40px 20px;
    }
    
    .event-card {
        flex-direction: column;
        align-items: stretch;
    }
    
    .event-ticket-btn {
        width: 100%;
        text-align: center;
    }

    .subscription-form {
        flex-direction: column;
        gap: 15px;
    }

    .subscribe-btn {
        width: 100%;
    }
}

/* Hide elements when alternatives are present */
.logo-img:not([src=""]) ~ .logo-text {
    display: none;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}