/* Navigation Component Styles */
.top-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-image {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.1);
}

.nav-links {
    display: flex;
    gap: 20px;
    margin: 0 auto;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
    position: relative;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 70%;
}

.nav-links a.active {
    
    color: #fff;

}



/* Next Show Calendar Styles */
.next-show-calendar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
    padding-left: 20px;
    cursor: pointer;
}

.calendar-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.calendar-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.calendar-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 12px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
}

.calendar-header {
    font-size: 8px;
    font-weight: 600;
    color: #666;
    text-align: center;
    margin-top: 14px;
    line-height: 1;
    letter-spacing: 0.5px;
}

.calendar-date {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-top: 2px;
    line-height: 1;
}

.show-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
    transition: opacity 0.3s ease;
}

.next-show-calendar:hover .show-details {
    opacity: 0.8;
}

.show-title {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.show-info {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    line-height: 1.2;
}

/* Responsive adjustments for calendar */
@media (max-width: 768px) {
    .next-show-calendar {
        display: none;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-container {
        justify-content: center;
    }
}

@media (max-width: 1024px) {
    .nav-links {
        gap: 15px;
    }
    
    .nav-links a {
        font-size: 14px;
        padding: 6px 12px;
    }
    
    .calendar-icon {
        width: 38px;
        height: 38px;
    }
    
    .calendar-header {
        font-size: 7px;
        margin-top: 12px;
    }
    
    .calendar-date {
        font-size: 14px;
    }
    
    .show-details {
        gap: 1px;
    }
    
    .show-title {
        font-size: 11px;
    }
    
    .show-info {
        font-size: 13px;
    }
}

/* Mobile hamburger menu - you can expand this later */
@media (max-width: 768px) {
    .top-nav {
        padding: 10px 0;
    }
    
    .logo-image {
        height: 35px;
    }
}

/* Event Modal Styles */
.event-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.event-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.event-modal {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.event-modal-overlay.active .event-modal {
    transform: scale(1);
}

.event-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px 20px 0 0;
}

.event-modal-header h2 {
    color: #fff;
    font-size: 1.5em;
    margin: 0;
    font-weight: 600;
}

.event-modal-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2em;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.event-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.event-modal-content {
    padding: 0;
}

.event-image-container {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.event-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 20px;
}

.event-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 0.9em;
    font-weight: 500;
}

.event-badge i {
    font-size: 0.8em;
}

.event-details-container {
    padding: 25px;
}

.event-main-info {
    margin-bottom: 25px;
}

.event-title {
    color: #fff;
    font-size: 1.6em;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.event-title i {
    color: #ff6b6b;
    font-size: 0.9em;
}

.event-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
    font-size: 1em;
}

.event-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.event-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.event-info-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.event-info-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 107, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6b6b;
    font-size: 1.1em;
    flex-shrink: 0;
}

.event-info-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.event-info-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8em;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-info-value {
    color: #fff;
    font-size: 1em;
    font-weight: 600;
}

.event-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.event-action-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    font-size: 0.95em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-action-btn.primary {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    color: #fff;
}

.event-action-btn.primary:hover {
    background: linear-gradient(135deg, #ff5252 0%, #ff1744 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.event-action-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.event-action-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Responsive Modal Styles */
@media (max-width: 768px) {
    .event-modal {
        width: 95%;
        max-height: 95vh;
        margin: 10px;
    }
    
    .event-modal-header {
        padding: 15px 20px;
    }
    
    .event-modal-header h2 {
        font-size: 1.3em;
    }
    
    .event-image-container {
        height: 200px;
    }
    
    .event-details-container {
        padding: 20px;
    }
    
    .event-title {
        font-size: 1.4em;
    }
    
    .event-info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .event-info-item {
        padding: 12px;
    }
    
    .event-info-icon {
        width: 35px;
        height: 35px;
    }
    
    .event-actions {
        flex-direction: column;
    }
    
    .event-action-btn {
        padding: 14px 20px;
    }
}

@media (max-width: 480px) {
    .event-modal {
        width: 98%;
        border-radius: 15px;
    }
    
    .event-modal-header {
        border-radius: 15px 15px 0 0;
    }
    
    .event-image-container {
        height: 180px;
    }
    
    .event-title {
        font-size: 1.2em;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .event-description {
        font-size: 0.9em;
    }
    
    .event-info-item {
        padding: 10px;
    }
    
    .event-info-icon {
        width: 30px;
        height: 30px;
        font-size: 1em;
    }
    
    .event-info-value {
        font-size: 0.9em;
    }
} 