/* ============================================
   Rogers Cinema - Modern Elegant Theme
   ============================================ */

:root {
    /* Rogers Cinema Brand Colors */
    --rogers-red: #a03133;
    --rogers-yellow: #cd9700;

    /* Light Theme Color Palette */
    --cinema-white: #ffffff;
    --cinema-light-bg: #f5f5f5;
    --cinema-gray-light: #e8e8e8;
    --cinema-gray-medium: #d0d0d0;
    --cinema-gray-dark: #6a6a6a;
    --cinema-text-dark: #2a2a2a;
    --cinema-text-medium: #4a4a4a;

    /* Rogers Red variants */
    --cinema-red: #a03133;
    --cinema-red-light: rgba(160, 49, 51, 0.95);
    --cinema-red-transparent: rgba(160, 49, 51, 0.85);

    /* Rogers Yellow variants */
    --cinema-gold: #cd9700;
    --cinema-gold-dark: #a67800;

    --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-heavy: 0 8px 24px rgba(0, 0, 0, 0.15);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   Base Styles
   ============================================ */

* {
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    /* Light textured gray background */
    background-color: var(--cinema-light-bg);
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.02) 2px, rgba(0,0,0,0.02) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0,0,0,0.02) 2px, rgba(0,0,0,0.02) 4px);
    color: var(--cinema-text-medium);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
    color: var(--cinema-text-dark);
    font-weight: 700;
    letter-spacing: 0.5px;
}

h1 { font-size: 3rem; margin-bottom: 1.5rem; }
h2 { font-size: 2.25rem; margin-bottom: 1.25rem; }
h3 { font-size: 1.75rem; margin-bottom: 1rem; }

a {
    color: var(--cinema-gold);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--cinema-gold-dark);
}

/* ============================================
   Navigation Bar
   ============================================ */

.navbar {
    background: var(--rogers-red);
    border-bottom: 3px solid var(--rogers-yellow);
    box-shadow: var(--shadow-medium);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Raleway', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--cinema-white) !important;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.navbar-brand:hover {
    color: var(--rogers-yellow) !important;
    transform: scale(1.02);
}

.banner-logo {
    max-height: 60px;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.navbar-nav {
    display: flex;
    align-items: flex-end;
}

.navbar-right {
    align-items: flex-end;
}

.nav > li > a {
    color: var(--cinema-white) !important;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    padding: 0.75rem 1.5rem;
    transition: var(--transition-smooth);
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.nav > li > a:hover {
    color: var(--cinema-gold) !important;
    background: rgba(212, 175, 55, 0.1);
}

.dropdown-menu {
    background: var(--cinema-white);
    border: 2px solid var(--rogers-yellow);
    box-shadow: var(--shadow-medium);
    border-radius: 8px;
    padding: 0.5rem 0;
}

.dropdown-menu > li > a {
    color: var(--cinema-text-dark);
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    padding: 0.75rem 1.5rem;
    transition: var(--transition-smooth);
}

.dropdown-menu > li > a:hover {
    background: var(--rogers-red);
    color: var(--cinema-white);
}

/* ============================================
   Rogers Carousel / Jumbotron
   ============================================ */

.hero-section {
    position: relative;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.rogers-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow-heavy);
}

.rogers-carousel-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.rogers-carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

.rogers-carousel-item.active {
    opacity: 1;
    z-index: 1;
}

.rogers-carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.rogers-carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(160, 49, 51, 0.3) 0%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 2;
}

.rogers-carousel-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 3rem;
    color: var(--cinema-white);
}

.rogers-carousel-title {
    font-family: 'Raleway', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 1rem;
    color: var(--cinema-white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
    letter-spacing: 1px;
}

.rogers-carousel-description {
    font-family: 'Raleway', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin: 0 0 1.5rem;
    color: var(--cinema-white);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    max-width: 800px;
}

.rogers-carousel-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--rogers-yellow);
    color: var(--cinema-text-dark);
    font-family: 'Raleway', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.rogers-carousel-button:hover {
    background: var(--cinema-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

/* Carousel Controls */
.rogers-carousel-control-prev,
.rogers-carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    background: rgba(160, 49, 51, 0.8);
    border: none;
    color: var(--cinema-white);
    font-size: 4rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border-radius: 8px;
}

.rogers-carousel-control-prev {
    left: 2rem;
}

.rogers-carousel-control-next {
    right: 2rem;
}

.rogers-carousel-control-prev:hover,
.rogers-carousel-control-next:hover {
    background: var(--rogers-red);
    transform: translateY(-50%) scale(1.1);
}

.rogers-carousel-control-icon {
    display: block;
    line-height: 1;
}

/* Carousel Indicators */
.rogers-carousel-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.rogers-carousel-indicators li {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid var(--cinema-white);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.rogers-carousel-indicators li.active {
    background: var(--rogers-yellow);
    border-color: var(--rogers-yellow);
    transform: scale(1.3);
}

.rogers-carousel-indicators li:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Responsive */
@media (max-width: 768px) {
    .rogers-carousel {
        height: 280px;
    }

    .rogers-carousel-title {
        font-size: 2rem;
    }

    .rogers-carousel-description {
        font-size: 1.1rem;
    }

    .rogers-carousel-content {
        padding: 2rem;
    }

    .rogers-carousel-control-prev,
    .rogers-carousel-control-next {
        font-size: 3rem;
        padding: 0.5rem 1rem;
    }

    .rogers-carousel-control-prev {
        left: 1rem;
    }

    .rogers-carousel-control-next {
        right: 1rem;
    }
}

/* ============================================
   Filter Controls
   ============================================ */

.filter-section {
    background: rgba(160, 49, 51, 0.05);
    border: 2px solid rgba(160, 49, 51, 0.2);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: var(--shadow-soft);
}

.filter-controls {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 200px;
}

.filter-group label {
    font-size: 0.9rem;
    color: var(--cinema-text-medium);
    font-weight: 500;
}

.filter-group input,
.filter-group select {
    background: var(--cinema-gray-light);
    color: var(--cinema-text-dark);
    border: 1px solid var(--cinema-gray-medium);
    padding: 0.75rem;
    border-radius: 4px;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.filter-group input:focus,
.filter-group select:focus {
    outline: none;
    border-color: var(--cinema-gold);
    background: var(--cinema-white);
}

/* ============================================
   Movie Cards - Compact
   ============================================ */

.section-header {
    background: var(--cinema-red-transparent);
    backdrop-filter: blur(10px);
    margin: 3rem 0 2rem;
    padding: 0;
    border-radius: 8px;
    border-left: 6px solid var(--cinema-red);
    box-shadow: var(--shadow-medium);
    overflow: hidden;
}

.section-header h2 {
    margin: 0;
    padding: 1.5rem 2rem;
    color: var(--cinema-white);
    font-size: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.movies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.movie-card {
    background: var(--cinema-white);
    border: 1px solid var(--cinema-gray-medium);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
    cursor: pointer;
    box-shadow: var(--shadow-soft);
}

.movie-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--rogers-yellow);
}

.movie-card-poster-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 150%; /* 2:3 aspect ratio */
}

.movie-card-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.movie-card-body {
    padding: 1rem;
}

.movie-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--cinema-text-dark);
    margin: 0 0 0.5rem;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-card-meta {
    display: flex;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--cinema-gray-dark);
    flex-wrap: wrap;
}

.movie-badge {
    background: var(--rogers-red);
    color: var(--cinema-white);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* ============================================
   Movie Detail Page
   ============================================ */

/* Hero Section */
.movie-detail-hero {
    position: relative;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    overflow: hidden;
    margin: 2rem 0;
    box-shadow: var(--shadow-heavy);
}

.movie-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.4) 100%);
}

.movie-detail-content {
    position: relative;
    z-index: 1;
    padding: 3rem;
    display: flex;
    gap: 2.5rem;
    align-items: flex-end;
}

.movie-detail-poster {
    flex-shrink: 0;
}

.movie-detail-poster img {
    width: 250px;
    border-radius: 8px;
    box-shadow: var(--shadow-heavy);
}

.movie-detail-info {
    flex: 1;
    padding-bottom: 1rem;
}

.movie-detail-title {
    font-family: 'Raleway', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 1rem;
    color: var(--cinema-white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.movie-detail-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.movie-meta-item {
    font-size: 1.1rem;
    color: var(--cinema-white);
    font-weight: 500;
}

.movie-genres {
    font-size: 1rem;
    color: var(--rogers-yellow);
    font-weight: 600;
}

/* Layout */
.movie-detail-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
    margin: 2rem 0;
}

.movie-detail-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.movie-detail-section {
    background: var(--cinema-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.movie-detail-section .section-header {
    margin: 0;
    border-radius: 0;
}

.movie-detail-overview,
.movie-detail-cast {
    padding: 2rem;
}

.movie-detail-overview p,
.movie-detail-cast p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--cinema-text-medium);
    margin: 0;
}

/* Trailer */
.movie-detail-trailer {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.movie-detail-trailer iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Sidebar */
.movie-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.movie-detail-sidebar .section-header {
    margin: 0 0 1rem;
}

.showtimes-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.theater-showtimes {
    background: var(--cinema-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.theater-toggle {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: var(--cinema-white);
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: 'Raleway', sans-serif;
}

.theater-toggle:hover {
    background: var(--cinema-gray-light);
}

.theater-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--cinema-text-dark);
}

.toggle-icon {
    font-size: 1rem;
    color: var(--rogers-red);
    transition: var(--transition-smooth);
}

.theater-schedule {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: var(--cinema-light-bg);
}

.theater-schedule.active {
    max-height: 2000px;
    transition: max-height 0.5s ease-in;
}

.showtime-date-group {
    padding: 1.5rem;
    border-top: 1px solid var(--cinema-gray-medium);
}

.showtime-date-group:first-child {
    border-top: none;
}

.showtime-date {
    font-size: 1rem;
    font-weight: 700;
    color: var(--cinema-text-dark);
    margin: 0 0 1rem;
    text-transform: capitalize;
}

.showtime-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 0.75rem;
}

.showtime-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.75rem 0.5rem;
    background: var(--cinema-white);
    border: 2px solid var(--rogers-red);
    border-radius: 6px;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.showtime-button:hover {
    background: var(--rogers-red);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.showtime-time {
    font-size: 2rem;
    font-weight: 700;
    color: var(--rogers-red);
    transition: var(--transition-smooth);
}

.showtime-button:hover .showtime-time {
    color: var(--cinema-white);
}

.showtime-features {
    display: flex;
    gap: 0.25rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-badge {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.4rem;
    background: var(--rogers-yellow);
    color: var(--cinema-text-dark);
    border-radius: 3px;
}

/* Responsive */
@media (max-width: 1024px) {
    .movie-detail-layout {
        grid-template-columns: 1fr;
    }

    .movie-detail-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .movie-detail-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2rem;
    }

    .movie-detail-poster img {
        width: 200px;
    }

    .movie-detail-title {
        font-size: 2rem;
    }

    .showtime-list {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }
}

/* ============================================
   Showtimes
   ============================================ */

.showtimes-date-picker {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 2rem 0;
    margin: 2rem 0;
    scroll-behavior: smooth;
}

.showtimes-date-picker::-webkit-scrollbar {
    height: 8px;
}

.showtimes-date-picker::-webkit-scrollbar-track {
    background: var(--cinema-charcoal);
    border-radius: 4px;
}

.showtimes-date-picker::-webkit-scrollbar-thumb {
    background: var(--cinema-gold);
    border-radius: 4px;
}

.date-card {
    flex-shrink: 0;
    background: var(--cinema-charcoal);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 1.25rem;
    min-width: 120px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.date-card:hover {
    border-color: var(--cinema-gold);
    transform: translateY(-4px);
}

.date-card.active {
    background: var(--cinema-gold);
    color: var(--cinema-black);
    border-color: var(--cinema-gold-light);
}

.date-day {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.date-month {
    font-size: 0.85rem;
    opacity: 0.8;
}

.date-number {
    font-size: 2rem;
    font-weight: 700;
    margin: 0.5rem 0;
}

.showtime-card {
    background: var(--cinema-charcoal);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: var(--shadow-medium);
    display: flex;
    gap: 2rem;
}

.showtime-poster {
    width: 200px;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.showtime-info {
    flex: 1;
}

.showtime-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--cinema-gold);
}

.showtime-times {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
}

.showtime-time-button {
    background: var(--cinema-white);
    color: var(--rogers-red);
    border: 2px solid var(--rogers-red);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.showtime-time-button:hover {
    background: var(--rogers-red);
    color: var(--cinema-white);
    border-color: var(--rogers-yellow);
    transform: scale(1.05);
}

.feature-badges {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.feature-badge {
    background: var(--cinema-gold);
    color: var(--cinema-black);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* ============================================
   Footer
   ============================================ */

footer {
    background: var(--rogers-red);
    border-top: 3px solid var(--rogers-yellow);
    padding: 3rem 0 2rem;
    margin-top: 5rem;
}

footer p {
    color: var(--cinema-white);
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

footer a {
    color: var(--cinema-white);
    text-decoration: underline;
}

footer a:hover {
    color: var(--rogers-yellow);
}

/* ============================================
   Utilities
   ============================================ */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-gold {
    color: var(--cinema-gold);
}

.text-burgundy {
    color: var(--rogers-red);
}

.btn-primary {
    background: var(--cinema-gold);
    color: var(--cinema-black);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    background: var(--cinema-gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.loading-spinner {
    border: 4px solid var(--cinema-charcoal);
    border-top: 4px solid var(--cinema-gold);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 3rem auto;
}

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

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }

    .movies-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 1rem;
    }

    .movie-detail-content {
        flex-direction: column;
        padding: 2rem 1rem;
    }

    .movie-detail-poster img {
        width: 100%;
        max-width: 300px;
    }

    .showtime-card {
        flex-direction: column;
        padding: 1.5rem;
    }

    .showtime-poster {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
}

/* ============================================
   Tab Navigation
   ============================================ */

.tab-navigation {
    display: flex;
    gap: 0;
    margin: 0;
    border-bottom: 0;
    overflow-x: auto;
}

.section-header .tab-navigation {
    background: transparent;
}

.tab-button {
    flex: 1;
    min-width: 150px;
    padding: 1.25rem 2rem;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    border-bottom: 4px solid transparent;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Raleway', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.tab-button:hover {
    background: rgba(0, 0, 0, 0.3);
    color: var(--cinema-white);
}

.tab-button.active {
    background: rgba(0, 0, 0, 0.4);
    color: var(--cinema-white);
    border-bottom-color: var(--rogers-yellow);
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease-in;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   Special Cards (Posts/Events)
   ============================================ */

.specials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.special-card {
    background: var(--cinema-white);
    border: 1px solid var(--cinema-gray-medium);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
    cursor: pointer;
    box-shadow: var(--shadow-soft);
}

.special-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--rogers-yellow);
}

.special-card-image-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 60%; /* 5:3 aspect ratio for special images */
    background: var(--cinema-gray-light);
}

.special-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.special-card:hover .special-card-image {
    transform: scale(1.05);
}

.special-card-body {
    padding: 1.5rem;
}

.special-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cinema-text-dark);
    margin: 0 0 0.75rem;
    line-height: 1.3;
}

.special-card-excerpt {
    font-size: 0.95rem;
    color: var(--cinema-text-medium);
    line-height: 1.6;
    margin: 0 0 1rem;
}

.special-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--cinema-gray-dark);
    padding-top: 0.75rem;
    border-top: 1px solid var(--cinema-gray-light);
}

.special-date {
    font-weight: 600;
    color: var(--rogers-red);
}

/* ============================================
   Empty State
   ============================================ */

.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--cinema-gray-dark);
}

.empty-state p {
    font-size: 1.1rem;
    margin: 0;
}

/* ============================================
   Responsive Adjustments for Tabs
   ============================================ */

@media (max-width: 768px) {
    .tab-button {
        font-size: 1rem;
        padding: 0.75rem 1rem;
        min-width: 120px;
    }

    .specials-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Post Detail Page
   ============================================ */

.post-detail {
    max-width: 900px;
    margin: 3rem auto;
    background: var(--cinema-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.post-featured-image {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    background: var(--cinema-gray-light);
}

.post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.post-header {
    padding: 2.5rem 3rem 1.5rem;
    border-bottom: 2px solid var(--cinema-gray-light);
}

.post-header h1 {
    font-size: 2.5rem;
    margin: 0 0 1rem;
    color: var(--cinema-text-dark);
    line-height: 1.2;
}

.post-meta {
    font-size: 1rem;
    color: var(--cinema-gray-dark);
    margin: 0;
}

.post-content {
    padding: 2.5rem 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--cinema-text-medium);
}

.post-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--cinema-text-dark);
}

.post-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--cinema-text-dark);
}

.post-content p {
    margin-bottom: 1.25rem;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.post-content ul,
.post-content ol {
    margin-bottom: 1.25rem;
    padding-left: 2rem;
}

.post-content li {
    margin-bottom: 0.5rem;
}

.post-footer {
    padding: 2rem 3rem 2.5rem;
    border-top: 2px solid var(--cinema-gray-light);
}

.btn-back {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--rogers-red);
    color: var(--cinema-white);
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.btn-back:hover {
    background: var(--rogers-yellow);
    color: var(--cinema-text-dark);
    transform: translateX(-4px);
}

@media (max-width: 768px) {
    .post-detail {
        margin: 1.5rem;
    }

    .post-header {
        padding: 2rem 1.5rem 1rem;
    }

    .post-header h1 {
        font-size: 2rem;
    }

    .post-content {
        padding: 2rem 1.5rem;
        font-size: 1rem;
    }

    .post-footer {
        padding: 1.5rem;
    }
}

/* ============================================
   Showtimes Page
   ============================================ */

/* Date Picker */
.showtimes-date-picker {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    position: relative;
}

.date-picker-container {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
    background: var(--cinema-white);
    box-shadow: var(--shadow-soft);
}

.date-picker-scroll {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.date-picker-scroll::-webkit-scrollbar {
    display: none;
}

.date-card {
    flex-shrink: 0;
    min-width: 100px;
    padding: 1rem;
    background: var(--cinema-light-bg);
    border: 2px solid transparent;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.date-card:hover {
    background: var(--cinema-gray-light);
    border-color: var(--rogers-red);
}

.date-card.active {
    background: var(--rogers-red);
    border-color: var(--rogers-red);
}

.date-month {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--cinema-text-medium);
    text-transform: uppercase;
}

.date-card.active .date-month {
    color: var(--cinema-white);
}

.date-day {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--cinema-text-dark);
    line-height: 1;
    margin: 0.75rem 0;
}

.date-card.active .date-day {
    color: var(--cinema-white);
}

.date-weekday {
    font-size: 1.5rem;
    color: var(--cinema-gray-dark);
    text-transform: capitalize;
    font-weight: 600;
}

.date-card.active .date-weekday {
    color: var(--rogers-yellow);
}

.date-scroll-btn {
    width: 50px;
    height: 50px;
    background: var(--rogers-red);
    color: var(--cinema-white);
    border: none;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
}

.date-scroll-btn:hover {
    background: var(--rogers-yellow);
    color: var(--cinema-text-dark);
    transform: scale(1.1);
}

.showtimes-info {
    text-align: center;
    color: var(--cinema-text-medium);
    font-size: 0.95rem;
    margin: 1rem 0 2rem;
}

/* Movie List */
.showtimes-movie-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.showtime-movie-card {
    background: var(--cinema-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
}

.showtime-movie-card:hover {
    box-shadow: var(--shadow-heavy);
    transform: translateY(-4px);
}

.showtime-movie-backdrop {
    position: relative;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    padding: 2rem;
}

.showtime-movie-backdrop::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.3) 100%);
}

.showtime-movie-content {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.showtime-movie-poster {
    flex-shrink: 0;
}

.showtime-movie-poster img {
    width: 180px;
    border-radius: 8px;
    box-shadow: var(--shadow-heavy);
}

.showtime-movie-info {
    flex: 1;
    color: var(--cinema-white);
    display: flex;
    flex-direction: column;
    gap: 0;
}

.showtime-movie-title-section {
    background: linear-gradient(to right,
        #a03133 0%,
        #b8383a 50%,
        #a03133 67%,
        transparent 100%);
    padding: 1.5rem 2rem;
    border-radius: 8px 8px 0 0;
    box-shadow: var(--shadow-heavy);
}

.showtime-movie-title {
    font-family: 'Raleway', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    color: var(--cinema-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.showtime-movie-details {
    padding: 2rem;
}

.showtime-movie-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    align-items: center;
}

.showtime-meta-item {
    font-size: 1.5rem;
    color: var(--cinema-white);
    font-weight: 500;
}

.showtime-movie-cast {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.showtime-movie-cast strong {
    color: var(--rogers-yellow);
}

.showtime-movie-overview {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* Showtime Times Section */
.showtime-movie-times {
    padding: 2rem;
    background: linear-gradient(to right,
        #cd9700 0%,
        #e0a800 50%,
        #cd9700 67%,
        #000000 100%);
    border-top: 3px solid #a67800;
}

.showtime-times-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: -2rem -2rem 1.5rem -2rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(to right,
        #a03133 0%,
        #b8383a 50%,
        #a03133 67%,
        transparent 100%);
    border-radius: 0;
}

.showtime-times-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cinema-white);
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.showtime-details-link {
    color: var(--cinema-white);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.showtime-details-link:hover {
    color: var(--rogers-yellow);
}

.showtime-times-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.25rem;
}

.showtime-time-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1.25rem;
    background: var(--cinema-white);
    border: 3px solid var(--rogers-red);
    border-radius: 12px;
    text-decoration: none !important;
    transition: var(--transition-smooth);
    cursor: pointer;
    min-height: 100px;
}

.showtime-time-button:hover,
.showtime-time-button:focus,
.showtime-time-button:active {
    background: var(--rogers-red);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    text-decoration: none !important;
}

.showtime-time-button * {
    text-decoration: none !important;
}

.time-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--rogers-red);
    transition: var(--transition-smooth);
}

.showtime-time-button:hover .time-text {
    color: var(--cinema-white);
}

.time-features {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.feature-badge {
    font-size: 1.3rem;
    font-weight: 700;
    padding: 0.5rem 0.75rem;
    background: var(--rogers-yellow);
    color: var(--cinema-text-dark);
    border-radius: 4px;
    text-transform: uppercase;
    min-width: 50px;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

a .feature-badge {
    text-decoration: none;
}

.feature-badge.feature-icon {
    font-size: 2rem;
    padding: 0.5rem 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    min-height: 40px;
}

.showtime-time-button:hover .feature-badge {
    background: var(--rogers-yellow);
    color: var(--cinema-text-dark);
}

/* Showtimes Header Banner */
.showtimes-header-banner {
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.showtimes-header-content {
    background: linear-gradient(to right,
        #a03133 0%,
        #b8383a 50%,
        #a03133 67%,
        rgba(160, 49, 51, 0.8) 100%);
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.theater-info-section {
    flex: 1;
    min-width: 300px;
}

.showtimes-page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--cinema-white);
    margin: 0 0 1rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.theater-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--cinema-white);
    font-size: 1.1rem;
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--rogers-yellow);
    min-width: 20px;
}

.contact-item a {
    color: var(--cinema-white);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.contact-item a:hover {
    color: var(--rogers-yellow);
}

.ticket-pricing-section-header {
    flex-shrink: 0;
}

.ticket-pricing-toggle {
    background: rgba(255, 255, 255, 0.15);
    color: var(--cinema-white);
    border: 2px solid var(--cinema-white);
    padding: 1rem 2rem;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.ticket-pricing-toggle:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.ticket-pricing-toggle i {
    margin-right: 0.5rem;
}

.toggle-chevron {
    transition: transform 0.3s ease;
}

.ticket-pricing-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.ticket-pricing-dropdown.active {
    max-height: 2000px;
}

.ticket-pricing-content {
    background: var(--cinema-white);
    padding: 2rem;
    border-top: 3px solid var(--rogers-yellow);
}

.ticket-pricing-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--rogers-red);
    margin: 0 0 1.5rem 0;
    text-align: center;
}

.ticket-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.ticket-price-item {
    background: var(--cinema-light-bg);
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid var(--cinema-gray-light);
    transition: var(--transition-smooth);
}

.ticket-price-item:hover {
    border-color: var(--rogers-red);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.ticket-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--rogers-red);
    margin-bottom: 0.5rem;
}

.ticket-description {
    font-size: 1rem;
    color: var(--cinema-text-medium);
    margin-bottom: 1rem;
    font-style: italic;
}

.ticket-prices {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--cinema-text-dark);
}

.price-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--rogers-yellow);
}

/* Responsive */
@media (max-width: 768px) {
    .showtime-movie-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .showtime-movie-poster img {
        width: 150px;
    }

    .showtime-movie-title {
        font-size: 2rem;
    }

    .showtime-meta-item {
        font-size: 1.1rem;
    }

    .showtime-movie-cast {
        font-size: 1rem;
    }

    .showtime-movie-overview {
        font-size: 1rem;
    }

    .showtime-times-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }

    .date-scroll-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}
