/* Show Header */
.show-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #a4133c, #800f2f);
    color: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(166, 29, 69, 0.3);
}

.show-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.show-tagline {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-style: italic;
}

.show-meta {
    display: flex;
    justify-content: center;
    gap: 25px;
    font-size: 1.1rem;
}

.show-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Content Layout */
.selection-content {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.show-info-column {
    flex: 0 0 70%; /* Takes 60% width */
    max-width: 70%;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
}

.calendar-column {
    flex: 0 0 30%; /* Takes 40% width */
    max-width: 30%;
}

/* Video Placeholder */
.video-placeholder {
    height: 200px;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url('https://images.unsplash.com/photo-1531058020387-3be344556be6?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-overlay {
    color: white;
    text-align: center;
    padding: 20px;
    background-color: rgba(0,0,0,0.5);
    border-radius: 8px;
    cursor: pointer;
}

.video-overlay i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.video-overlay span {
    font-weight: 600;
}

/* Show Info */
.show-description {
    padding: 25px;
    line-height: 1.6;
    color: #555;
    font-size: 1.1rem;
    border-bottom: 1px solid #eee;
}

.know-before {
    padding: 20px 25px;
    background-color: #fff9f9;
    border-bottom: 1px solid #eee;
}

.know-before h3 {
    color: #a4133c;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.know-before i {
    color: #a4133c;
}

.show-details {
    display: flex;
    gap: 30px;
    margin: 20px 0;
}

.details-column {
    flex: 1;
}

.left-column {
    padding-right: 15px;
}

.right-column {
    padding-left: 15px;
}

.detail-section {
    display: flex;
    margin-bottom: 20px;
    gap: 15px;
}

.detail-icon {
    color: #a4133c;
    font-size: 1.2rem;
    margin-top: 3px;
}

.detail-content h4 {
    margin-bottom: 5px;
    color: #333;
    font-size: 1rem;
}

.detail-content p {
    color: #555;
    margin: 0;
}

.category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background-color: #ffe6e6;
    color: #a4133c;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .show-details {
        flex-direction: column;
        gap: 15px;
    }
    
    .left-column,
    .right-column {
        padding: 0;
    }
    .show-info-column{
        max-width: 100%;
    }
    .calendar-column{
       max-width: 100%; 
    }
}

.category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background-color: #ffe6e6;
    color: #a4133c;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* .read-more {
    padding: 20px 25px;
    border-top: 1px solid #eee;
    text-align: center;
}

.read-more a {
    color: #a4133c;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
} */

/* Calendar Styling */
.calendar-wrapper {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.section-title {
    font-size: 1.5rem;
    color: #a4133c;
    margin-bottom: 20px;
    font-weight: 600;
}

.ui-datepicker {
    width: 100%;
    border: none;
    border-radius: 8px;
    padding: 10px;
    box-shadow: none;
}

.ui-datepicker-header {
    background: #a4133c;
    color: white;
    border: none;
    border-radius: 6px 6px 0 0;
    font-weight: 600;
}

.ui-datepicker-prev, .ui-datepicker-next {
    cursor: pointer;
    top: 8px;
}

.ui-datepicker-prev:hover, .ui-datepicker-next:hover {
    background: transparent;
    border: none;
}

.ui-datepicker-calendar th {
    color: #a4133c;
    font-weight: 600;
}

.ui-datepicker-calendar td a {
    text-align: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.ui-datepicker-calendar td a:hover {
    background: #ffe6e6;
}

.ui-datepicker-calendar .ui-state-active {
    background: #a4133c;
    color: white;
}

/* Time Slots */
/* Timeslots Wrapper */
.timeslots-wrapper {
    margin-top: 25px;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.section-title {
    color: #a4133c;
    font-size: 1.4rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.selected-date {
    font-size: 1rem;
    color: #666;
    font-weight: normal;
}

/* Time Slots Grid */
.time-slots {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

/* Individual Time Slot */
.time-slot {
    position: relative;
    padding: 18px 20px;
    border-radius: 10px;
    background: white;
    border: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.time-slot:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(164, 19, 60, 0.12);
    border-color: #ff758f;
}

.time-slot.active {
    background: #a4133c;
    border-color: #a4133c;
    color: white;
}

.time-slot.premium {
    border: 2px solid #ffc107;
}

/* Time Info Section */
.time-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.time-info .time {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-left: 20px;
}

.time-slot.active .time {
    color: white;
}

.show-type {
    font-size: 0.75rem;
    padding: 3px 8px;
    border-radius: 12px;
    font-weight: 600;
    align-self: flex-start;
}

.matinee {
    background: #e3f2fd;
    color: #1976d2;
}

.evening {
    background: #fff8e1;
    color: #ff8f00;
}

.time-slot.active .show-type {
    background: rgba(255,255,255,0.2);
    color: white;
}

/* Price Info Section */
.price-info {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.price-info .price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #a4133c;
}

.time-slot.active .price {
    color: white;
}

.seat-availability {
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
}

.time-slot.active .seat-availability {
    color: rgba(255,255,255,0.8);
}

/* Badges and Tags */
.time-badge {
    position: absolute;
    left: 5px;
    transform: translateY(-50%);
    background: #a4133c;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.time-slot.active .time-badge {
    background: white;
    color: #a4133c;
}

.popular-tag {
    position: absolute;
    top: 4px;
    right: -19px;
    background: #ffc107;
    color: #333;
    padding: 3px 15px;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 12px;
    transform: rotate(40deg);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .time-slot {
        /* flex-direction: column; */
        align-items: flex-start;
        gap: 15px;
    }
    
    .price-info {
        /* text-align: left; */
        width: 100%;
    }
    
    .time-badge {
        top: 15px;
        transform: none;
    }

    .time-info{
        display: block;
    }
}

/* Navigation Buttons */
.navigation-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .selection-content {
        flex-direction: column;
    }
    
    .show-header h1 {
        font-size: 1.8rem;
    }
    
    .show-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .time-slots {
        grid-template-columns: 1fr;
    }
    
    .category-tags {
        justify-content: center;
    }
}

/* Calendar Styling modified Modern Flat Design */
.flat-design .ui-datepicker {
    border: none;
    border-radius: 8px;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
}

.flat-design .ui-datepicker-header {
    background: #a4133c;
    color: white;
    border: none;
    border-radius: 8px 8px 0 0;
    padding: 12px;
}

.flat-design .ui-datepicker-title {
    font-weight: 500;
    letter-spacing: 0.5px;
}

.flat-design .ui-datepicker-prev,
.flat-design .ui-datepicker-next {
    color: white;
    top: 12px;
}

.flat-design .ui-datepicker-calendar {
    margin-top: 0;
    border-spacing: 0;
}

.flat-design .ui-datepicker-calendar th {
    color: #a4133c;
    padding: 10px 0;
    font-weight: 500;
}

.flat-design .ui-datepicker-calendar td {
    padding: 2px;
}

.flat-design .ui-datepicker-calendar td a {
    border-radius: 4px;
    padding: 8px 0;
    transition: all 0.2s;
}

/* .flat-design .ui-datepicker-calendar td a:hover {
    background: #ffe6e6;
} */

.flat-design .ui-datepicker-calendar .ui-state-active {
    background: #a4133c;
    color: white;
    font-weight: 500;
}
/* End Calendar Styling modified Modern Flat Design */