/* Select Show Page Styles - Figma Design */

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

body {
    font-family: 'Mulish', sans-serif;
    background-color: #1A1A1A;
    color: #E6E6E6;
    overflow-x: hidden;
}

/* Header Navigation */
.top-navigation {
    background: linear-gradient(180deg, #1A1A1A 0%, rgba(26, 26, 26, 0) 100%);
    padding: 16px 120px;
    position: sticky;
    top: 0;
    z-index: 1000;
    overflow: hidden;
}

.nav-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
}

.nav-logo {
    width: 100px;
    height: 100px;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nav-center {
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.menu-divider {
    width: 100%;
    height: 1px;
    background: white;
}

.nav-text {
    color: white;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    text-align: center;
}

.nav-right {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.nav-link {
    color: white;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #C5A059;
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 2px;
    background: #4D4D4D;
    padding: 2px;
    border-radius: 800px;
}

.lang-item {
    padding: 2px;
    border-radius: 800px;
    opacity: 0.4;
    cursor: pointer;
    transition: opacity 0.3s;
}

.lang-item.active {
    background: #E6E6E6;
    opacity: 1;
}

.flag-icon {
    width: 30px;
    height: 20px;
    display: block;
    border-radius: 800px;
}

/* Show Details Section */
.show-details-section {
    background: #1A1A1A;
    padding: 0 120px;
}

.show-details-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 80px;
    max-width: 1440px;
    margin: 0 auto;
}

.show-poster {
    width: 383px;
    height: 526px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.show-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.poster-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #2E2E2E;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}

.show-info {
    flex: 1;
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.show-title {
    color: #C5A059;
    font-family: 'Decophile', serif;
    font-size: 64px;
    font-weight: 400;
    line-height: 72px;
}

.show-description {
    color: white;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}

.show-metadata {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.metadata-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.metadata-label {
    color: white;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
}

.metadata-value {
    color: #A6A6A6;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

/* Calendar Section */
.calendar-section {
    background: #1A1A1A;
    padding: 80px 120px;
    overflow: hidden;
}

.calendar-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.month-navigation {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-arrow {
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

.nav-arrow:hover {
    opacity: 0.7;
}

.current-month {
    color: #C5A059;
    font-family: 'Philosopher', serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 38px;
    text-align: center;
}

.availability-legend {
    display: flex;
    align-items: center;
    gap: 17px;
}

.legend-label {
    color: #808080;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
}

.legend-items {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
}

.availability-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.availability-dot.good {
    background: #99CCAD;
}

.availability-dot.limited {
    background: #FFC44E;
}

.availability-dot.sold-out {
    background: #C45652;
}

/* Calendar Grid */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.day-header {
    padding: 8px;
    text-align: center;
    color: #E6E6E6;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
}

.calendar-day {
    min-height: 160px;
    padding: 8px;
    background: #4D4D4D;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.calendar-day.disabled {
    background: #2E2E2E;
}

.calendar-day.disabled .day-number {
    color: #4D4D4D;
}

.day-number {
    color: #E6E6E6;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
}

.time-slots {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.time-slot {
    padding: 8px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 16px;
    font-family: 'Mulish', sans-serif;
    font-weight: 700;
    line-height: 24px;
    word-wrap: break-word;
    cursor: pointer;
    transition: background 0.3s;
}

.time-slot:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Footer */
.footer-section {
    width: 1440px;
    margin: 0 auto;
    padding: 40px 120px 24px;
    background: #1A1A1A;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.footer-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.footer-divider {
    width: 1200px;
    height: 1px;
    background: #2E2E2E;
}

.footer-title {
    text-align: center;
    color: #C5A059;
    font-family: 'Decophile', serif;
    font-size: 120px;
    font-weight: 400;
    line-height: 120px;
}

.footer-copyright {
    color: #9AA0A5;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1440px) {
    .top-navigation,
    .show-details-section,
    .calendar-section,
    .footer-section {
        padding-left: 60px;
        padding-right: 60px;
    }
    
    .footer-section {
        width: 100%;
    }
    
    .footer-divider {
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .show-details-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .show-info {
        padding: 40px 0;
    }
    
    .show-title {
        font-size: 48px;
        line-height: 56px;
    }
    
    
    .footer-title {
        font-size: 80px;
        line-height: 80px;
    }
}

@media (max-width: 768px) {
    .top-navigation,
    .show-details-section,
    .calendar-section,
    .footer-section {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .nav-container {
        flex-wrap: wrap;
    }
    
    .show-poster {
        width: 100%;
        max-width: 383px;
        height: auto;
        aspect-ratio: 383/526;
    }
    
    .show-title {
        font-size: 36px;
        line-height: 42px;
    }
    
    .calendar-header {
        flex-direction: column;
        gap: 16px;
    }
    
    .current-month {
        font-size: 24px;
        line-height: 30px;
    }
    
    .calendar-grid {
        gap: 2px;
    }
    
    .day-header {
        font-size: 11px;
        padding: 4px 0;
        overflow: hidden;
        text-overflow: clip;
    }
    
    .calendar-day {
        aspect-ratio: 1 / 1;
        min-height: 0 !important;
        padding: 4px 2px;
        gap: 2px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border-radius: 4px;
    }
    
    .day-number {
        font-size: 14px;
        line-height: 1;
        margin-bottom: 2px;
    }
    
    .time-slot {
        background: transparent !important;
        padding: 0;
        gap: 0;
        min-height: 0;
    }
    
    .time-slot span:not(.availability-dot) {
        display: none !important;
    }
    
    .availability-dot {
        width: 6px;
        height: 6px;
        margin: 0 auto;
    }
    
    .footer-title {
        font-size: 48px;
        line-height: 48px;
    }
}
