/* Custom styles to complement Tailwind CSS */

/* 70s Festival Background Enhancements */
body {
    background: linear-gradient(135deg, #FFE4B5 0%, #87CEEB 100%);
    min-height: 100vh;
}

/* Backdrop blur support for browsers */
.backdrop-blur-sm {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Enhanced glass morphism effects */
.glass-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

/* Fallback styles for logo display */
.fallback-title {
    display: none;
}

/* Additional custom animations and styles */
.schedule-row:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Small caps styling for events */
.event-smallcaps {
    font-variant: small-caps;
    letter-spacing: 0.08em;
    font-weight: 600;
    font-family: 'Nunito Sans', sans-serif;
}

/* Ensure smooth transitions for all interactive elements */
* {
    transition-property: transform, box-shadow;
    transition-duration: 0.2s;
    transition-timing-function: ease;
}

/* Custom gradient background for better browser support */
.schedule-table {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Print styles for better accessibility */
@media print {
    body {
        background: white !important;
    }
    
    .schedule-table {
        background: white !important;
        border: 2px solid #333 !important;
    }
    
    .schedule-row {
        border-left: 4px solid #333 !important;
        background: white !important;
    }
}