/* ═══════════════════════════════════════════════════════════
   977Cinema — Main Stylesheet
   Dark cinematic theme with red/gold accents
   ═══════════════════════════════════════════════════════════ */

/* ─── CSS Reset ────────────────────────────────────────── */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

/* ─── CSS Variables ────────────────────────────────────── */
:root {
	/* Colors */
	--color-bg: #0d0d0f;
	--color-bg-alt: #141418;
	--color-bg-card: #1a1a20;
	--color-bg-elevated: #22222a;
	--color-surface: rgba(255, 255, 255, 0.04);
	--color-border: rgba(255, 255, 255, 0.08);
	--color-border-hover: rgba(255, 255, 255, 0.15);

	--color-text: #f0f0f2;
	--color-text-muted: #9a9aaa;
	--color-text-subtle: #6a6a7a;

	--color-accent: #e53935;
	--color-accent-hover: #ff5252;
	--color-accent-glow: rgba(229, 57, 53, 0.25);
	--color-gold: #f5a623;
	--color-gold-hover: #ffc042;

	--color-success: #4caf50;
	--color-warning: #ff9800;
	--color-danger: #f44336;

	/* Typography */
	--font-display: 'Poppins', sans-serif;
	--font-body: 'Inter', sans-serif;

	--text-xs: 0.75rem;
	--text-sm: 0.875rem;
	--text-base: 1rem;
	--text-lg: 1.125rem;
	--text-xl: 1.25rem;
	--text-2xl: 1.5rem;
	--text-3xl: 2rem;
	--text-4xl: 2.75rem;
	--text-5xl: 3.5rem;

	/* Spacing */
	--space-xs: 0.25rem;
	--space-sm: 0.5rem;
	--space-md: 1rem;
	--space-lg: 1.5rem;
	--space-xl: 2rem;
	--space-2xl: 3rem;
	--space-3xl: 4rem;
	--space-4xl: 6rem;

	/* Radius */
	--radius-sm: 6px;
	--radius-md: 10px;
	--radius-lg: 16px;
	--radius-xl: 24px;
	--radius-full: 9999px;

	/* Shadows */
	--shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
	--shadow-md: 0 4px 14px rgba(0, 0, 0, 0.5);
	--shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.6);
	--shadow-glow: 0 0 30px var(--color-accent-glow);

	/* Transitions */
	--transition-fast: 150ms ease;
	--transition-base: 250ms ease;
	--transition-smooth: 400ms cubic-bezier(0.4, 0, 0.2, 1);

	/* Layout */
	--container-max: 1280px;
	--header-height: 72px;
}


/* ─── Base ─────────────────────────────────────────────── */
html {
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	font-family: var(--font-body);
	font-size: var(--text-base);
	line-height: 1.6;
	color: var(--color-text);
	background-color: var(--color-bg);
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--color-accent);
	text-decoration: none;
	transition: color var(--transition-fast);
}

a:hover {
	color: var(--color-accent-hover);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-display);
	font-weight: 700;
	line-height: 1.2;
	color: var(--color-text);
}


/* ─── Container ────────────────────────────────────────── */
.container {
	width: 100%;
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 var(--space-lg);
}


/* ─── Buttons ──────────────────────────────────────────── */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-sm);
	font-family: var(--font-display);
	font-weight: 600;
	font-size: var(--text-sm);
	padding: 0.65em 1.5em;
	border-radius: var(--radius-md);
	border: 2px solid transparent;
	cursor: pointer;
	transition: all var(--transition-base);
	text-decoration: none;
	line-height: 1.4;
	white-space: nowrap;
}

.btn-primary {
	background: linear-gradient(135deg, var(--color-accent), #c62828);
	color: #fff;
	border-color: var(--color-accent);
	box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
	background: linear-gradient(135deg, var(--color-accent-hover), var(--color-accent));
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 0 40px var(--color-accent-glow);
}

.btn-outline {
	background: transparent;
	color: var(--color-text);
	border-color: var(--color-border-hover);
}

.btn-outline:hover {
	background: var(--color-surface);
	border-color: var(--color-text-muted);
	color: #fff;
}

.btn-lg {
	font-size: var(--text-base);
	padding: 0.8em 2em;
}

.btn-sm {
	font-size: var(--text-xs);
	padding: 0.5em 1em;
}

.btn-xs {
	font-size: 0.7rem;
	padding: 0.4em 0.8em;
}

.btn-block {
	width: 100%;
}

.btn-disabled {
	opacity: 0.5;
	pointer-events: none;
}

.btn-text {
	background: none;
	border: none;
	color: var(--color-accent);
	font-family: var(--font-display);
	font-weight: 600;
	font-size: var(--text-sm);
	cursor: pointer;
	transition: color var(--transition-fast);
	padding: 0;
}

.btn-text:hover {
	color: var(--color-accent-hover);
}


/* ═══════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════ */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: var(--header-height);
	z-index: 1000;
	background: rgba(13, 13, 15, 0.85);
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	transition: background var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.site-header.scrolled {
	background: rgba(13, 13, 15, 0.95);
	backdrop-filter: blur(24px) saturate(200%);
	-webkit-backdrop-filter: blur(24px) saturate(200%);
	border-bottom-color: var(--color-border-hover);
	box-shadow: var(--shadow-md);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
	gap: var(--space-lg);
}

.header-logo a {
	display: flex;
	align-items: center;
}

.site-logo-text {
	font-family: var(--font-display);
	font-size: var(--text-xl);
	font-weight: 700;
	text-decoration: none;
	letter-spacing: -0.5px;
}

.logo-977 {
	color: var(--color-accent);
}

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

.header-nav {
	flex: 1;
	display: flex;
	justify-content: center;
}

.nav-list {
	display: flex;
	list-style: none;
	gap: var(--space-xs);
}

.nav-list li a {
	display: block;
	padding: var(--space-sm) var(--space-md);
	color: var(--color-text-muted);
	font-size: var(--text-sm);
	font-weight: 500;
	border-radius: var(--radius-sm);
	transition: all var(--transition-fast);
}

.nav-list li a:hover,
.nav-list li.current-menu-item a {
	color: var(--color-text);
	background: var(--color-surface);
}

.header-cta {
	flex-shrink: 0;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 32px;
	height: 32px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
}

.mobile-menu-toggle span {
	display: block;
	height: 2px;
	width: 100%;
	background: var(--color-text);
	border-radius: 2px;
	transition: all var(--transition-fast);
}

.mobile-menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -5px);
}


/* ═══════════════════════════════════════════════════════════
   HERO MOVIE SLIDER
   ═══════════════════════════════════════════════════════════ */
.hero-slider {
	position: relative;
	width: 100%;
	height: 100vh;
	min-height: 600px;
	max-height: 1000px;
	overflow: hidden;
	/* No margin-top — header overlaps */
}

.slider-track {
	position: relative;
	width: 100%;
	height: 100%;
}

.slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center top;
	opacity: 0;
	transition: opacity 1s ease;
	display: flex;
	align-items: center;
}

.slide--active {
	opacity: 1;
	z-index: 1;
}

.slide--fallback {
	background: linear-gradient(135deg, #0a0a1a 0%, #1a1035 40%, #0d1b2a 100%);
}

.slide-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to top, rgba(13, 13, 15, 1) 0%, rgba(13, 13, 15, 0.4) 40%, transparent 70%),
		linear-gradient(to right, rgba(13, 13, 15, 0.85) 0%, rgba(13, 13, 15, 0.4) 45%, transparent 75%),
		linear-gradient(to bottom, rgba(13, 13, 15, 0.5) 0%, transparent 15%);
}

.slide-content {
	position: relative;
	z-index: 2;
	max-width: 580px;
	padding-top: var(--header-height);
}

/* Movie Title */
.slide-title {
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 700;
	margin-bottom: var(--space-lg);
	text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
	line-height: 1.1;
	letter-spacing: -0.5px;
}

/* Genre Pills */
.slide-genres {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-sm);
	margin-bottom: var(--space-md);
}

.slide-genre-pill {
	display: inline-block;
	padding: 5px 16px;
	font-family: var(--font-display);
	font-size: 0.7rem;
	font-weight: 700;
	color: #fff;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: var(--radius-full);
	letter-spacing: 0.1em;
	backdrop-filter: blur(4px);
}

/* Meta Line: Language • Release Date • Duration */
.slide-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0;
	margin-bottom: var(--space-lg);
	font-size: var(--text-sm);
	color: var(--color-text-muted);
}

.slide-meta span {
	position: relative;
	padding-right: var(--space-lg);
}

.slide-meta span:not(:last-child)::after {
	content: '•';
	position: absolute;
	right: 8px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--color-text-subtle);
	font-size: 0.7em;
}

/* Short Description */
.slide-description {
	font-size: var(--text-base);
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.7;
	margin-bottom: var(--space-lg);
	max-width: 500px;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Ticket Price */
.slide-price {
	display: inline-flex;
	align-items: center;
	gap: var(--space-sm);
	padding: var(--space-sm) var(--space-md);
	background: rgba(245, 166, 35, 0.12);
	border: 1px solid rgba(245, 166, 35, 0.3);
	border-radius: var(--radius-sm);
	color: var(--color-gold);
	font-family: var(--font-display);
	font-size: var(--text-sm);
	font-weight: 600;
	margin-bottom: var(--space-xl);
}

.slide-price svg {
	fill: var(--color-gold);
}

/* Hero Action Buttons (reference image style — pill with icon circle) */
.slide-actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-md);
	margin-top: var(--space-sm);
}

.btn-hero {
	display: inline-flex;
	align-items: center;
	gap: var(--space-sm);
	padding: 6px 8px 6px 20px;
	border-radius: var(--radius-full);
	font-family: var(--font-display);
	font-size: var(--text-sm);
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: all var(--transition-base);
	border: 2px solid transparent;
}

.btn-hero__text {
	white-space: nowrap;
}

.btn-hero__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	transition: all var(--transition-base);
}

/* Primary (filled red/gradient — "Book Tickets") */
.btn-hero--primary {
	background: linear-gradient(135deg, #e53935, #c62828);
	color: #fff;
	border-color: #e53935;
	box-shadow: 0 4px 20px rgba(229, 57, 53, 0.35);
}

.btn-hero--primary .btn-hero__icon {
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
}

.btn-hero--primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 30px rgba(229, 57, 53, 0.5);
	background: linear-gradient(135deg, #ff5252, #e53935);
	color: #fff;
}

/* Outline ("Watch Trailer") */
.btn-hero--outline {
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(4px);
}

.btn-hero--outline .btn-hero__icon {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
}

.btn-hero--outline:hover {
	background: rgba(255, 255, 255, 0.14);
	border-color: rgba(255, 255, 255, 0.5);
	color: #fff;
	transform: translateY(-2px);
}

/* Slider Controls */
.slider-controls {
	position: absolute;
	bottom: var(--space-2xl);
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	display: flex;
	align-items: center;
	gap: var(--space-lg);
}

.slider-arrow {
	width: 44px;
	height: 44px;
	border-radius: var(--radius-full);
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: var(--color-text);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all var(--transition-base);
}

.slider-arrow:hover {
	background: rgba(255, 255, 255, 0.18);
	border-color: rgba(255, 255, 255, 0.3);
}

.slider-dots {
	display: flex;
	gap: var(--space-sm);
}

.slider-dot {
	width: 10px;
	height: 10px;
	border-radius: var(--radius-full);
	background: rgba(255, 255, 255, 0.3);
	border: none;
	cursor: pointer;
	transition: all var(--transition-base);
}

.slider-dot--active {
	background: #fff;
	width: 32px;
}


/* ═══════════════════════════════════════════════════════════
   SECTIONS (common)
   ═══════════════════════════════════════════════════════════ */
.section {
	padding: var(--space-4xl) 0;
}

.section-header {
	text-align: center;
	margin-bottom: var(--space-3xl);
}

.section-title {
	font-size: var(--text-3xl);
	font-weight: 700;
	margin-bottom: var(--space-sm);
}

.section-title__accent {
	color: var(--color-accent);
}

.section-subtitle {
	font-size: var(--text-lg);
	color: var(--color-text-muted);
}

.empty-state {
	text-align: center;
	padding: var(--space-3xl);
	color: var(--color-text-muted);
}

.empty-state p {
	font-size: var(--text-lg);
}


/* ═══════════════════════════════════════════════════════════
   MOVIE CARDS GRID
   ═══════════════════════════════════════════════════════════ */
.movie-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--space-xl);
}

.movie-card {
	background: var(--color-bg-card);
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--color-border);
	transition: all var(--transition-smooth);
}

.movie-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
	border-color: var(--color-border-hover);
}

.movie-card__poster {
	position: relative;
	aspect-ratio: 2 / 3;
	overflow: hidden;
	background: var(--color-bg-alt);
}

.movie-card__poster img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--transition-smooth);
}

.movie-card:hover .movie-card__poster img {
	transform: scale(1.05);
}

.movie-card__poster-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-bg-elevated);
	color: var(--color-text-subtle);
}

.movie-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(13, 13, 15, 0.9), transparent 60%);
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: var(--space-sm);
	padding: var(--space-lg);
	opacity: 0;
	transition: opacity var(--transition-base);
}

.movie-card:hover .movie-card__overlay {
	opacity: 1;
}

.movie-card__badge {
	position: absolute;
	top: var(--space-md);
	left: var(--space-md);
	padding: var(--space-xs) var(--space-sm);
	background: var(--color-gold);
	color: #000;
	font-family: var(--font-display);
	font-size: var(--text-xs);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	border-radius: var(--radius-sm);
}

.movie-card__body {
	padding: var(--space-md) var(--space-lg) var(--space-lg);
}

.movie-card__title {
	font-size: var(--text-base);
	font-weight: 600;
	margin-bottom: var(--space-sm);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.movie-card__title a {
	color: var(--color-text);
}

.movie-card__title a:hover {
	color: var(--color-accent);
}

.movie-card__genres {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-xs);
	margin-bottom: var(--space-sm);
}

.genre-pill {
	display: inline-block;
	padding: 2px 8px;
	font-size: 0.7rem;
	font-weight: 600;
	color: var(--color-accent);
	background: var(--color-accent-glow);
	border-radius: var(--radius-full);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.genre-pill--light {
	color: #fff;
	background: rgba(255, 255, 255, 0.15);
}

.movie-card__meta {
	display: flex;
	align-items: center;
	gap: var(--space-md);
	color: var(--color-text-muted);
	font-size: var(--text-sm);
}

.meta-item {
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.meta-item svg {
	fill: var(--color-text-subtle);
}

.meta-item--price {
	font-weight: 600;
	color: var(--color-gold);
}


/* ═══════════════════════════════════════════════════════════
   SECTION: NOW SHOWING / COMING SOON backgrounds
   ═══════════════════════════════════════════════════════════ */
.section-now-showing {
	background: var(--color-bg);
}

.section-coming-soon {
	background: var(--color-bg-alt);
}


/* ═══════════════════════════════════════════════════════════
   BLOG CARDS
   ═══════════════════════════════════════════════════════════ */
.section-blog {
	background: var(--color-bg);
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-xl);
}

.blog-card {
	background: var(--color-bg-card);
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--color-border);
	transition: all var(--transition-smooth);
}

.blog-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
	border-color: var(--color-border-hover);
}

.blog-card__thumb {
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

.blog-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--transition-smooth);
}

.blog-card:hover .blog-card__thumb img {
	transform: scale(1.05);
}

.blog-card__body {
	padding: var(--space-lg);
}

.blog-card__date {
	font-size: var(--text-xs);
	color: var(--color-accent);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.blog-card__title {
	font-size: var(--text-lg);
	margin: var(--space-sm) 0;
}

.blog-card__title a {
	color: var(--color-text);
}

.blog-card__title a:hover {
	color: var(--color-accent);
}

.blog-card__excerpt {
	color: var(--color-text-muted);
	font-size: var(--text-sm);
	margin-bottom: var(--space-md);
	line-height: 1.7;
}


/* ═══════════════════════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════════════════════ */
.section-contact {
	background: var(--color-bg-alt);
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-3xl);
	align-items: start;
}

.contact-map {
	border-radius: var(--radius-lg);
	overflow: hidden;
	min-height: 400px;
}

.contact-map iframe {
	display: block;
}

.map-placeholder {
	height: 400px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: var(--space-md);
	background: var(--color-bg-card);
	border-radius: var(--radius-lg);
	border: 1px dashed var(--color-border);
	color: var(--color-text-muted);
}

.contact-info-cards {
	display: flex;
	flex-direction: column;
	gap: var(--space-md);
	margin-bottom: var(--space-xl);
}

.info-card {
	display: flex;
	gap: var(--space-md);
	align-items: flex-start;
	padding: var(--space-md);
	background: var(--color-bg-card);
	border-radius: var(--radius-md);
	border: 1px solid var(--color-border);
}

.info-card__icon {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-accent-glow);
	color: var(--color-accent);
	border-radius: var(--radius-sm);
}

.info-card h4 {
	font-size: var(--text-sm);
	margin-bottom: 2px;
}

.info-card p {
	font-size: var(--text-sm);
	color: var(--color-text-muted);
}

.info-card a {
	color: var(--color-text-muted);
}

.info-card a:hover {
	color: var(--color-accent);
}


/* ─── Contact Form ─────────────────────────────────────── */
.contact-form {
	background: var(--color-bg-card);
	padding: var(--space-xl);
	border-radius: var(--radius-lg);
	border: 1px solid var(--color-border);
	margin-bottom: var(--space-xl);
}

.contact-form h3 {
	font-size: var(--text-lg);
	margin-bottom: var(--space-lg);
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-md);
}

.form-group {
	margin-bottom: var(--space-md);
}

.form-group label {
	display: block;
	font-size: var(--text-sm);
	font-weight: 600;
	color: var(--color-text-muted);
	margin-bottom: var(--space-xs);
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: var(--space-sm) var(--space-md);
	background: var(--color-bg-elevated);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	color: var(--color-text);
	font-family: var(--font-body);
	font-size: var(--text-sm);
	transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--color-accent);
	box-shadow: 0 0 0 3px var(--color-accent-glow);
}

.form-group textarea {
	resize: vertical;
}

.form-help {
	display: block;
	font-size: var(--text-xs);
	color: var(--color-text-subtle);
	margin-top: var(--space-xs);
}

/* Social links in contact */
.contact-social h4 {
	font-size: var(--text-sm);
	margin-bottom: var(--space-sm);
}

.social-links {
	display: flex;
	gap: var(--space-md);
}

.social-link {
	display: inline-flex;
	align-items: center;
	gap: var(--space-sm);
	padding: var(--space-sm) var(--space-md);
	background: var(--color-bg-card);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	color: var(--color-text-muted);
	font-size: var(--text-sm);
	transition: all var(--transition-fast);
}

.social-link:hover {
	color: var(--color-text);
	border-color: var(--color-border-hover);
	background: var(--color-bg-elevated);
}


/* ═══════════════════════════════════════════════════════════
   CTA BAND
   ═══════════════════════════════════════════════════════════ */
.section-cta-band {
	position: relative;
	padding: var(--space-4xl) 0;
	background: linear-gradient(135deg, #1a0a0a 0%, #2d0a0a 50%, #0d0d0f 100%);
	overflow: hidden;
}

.cta-band__overlay {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 30% 50%, var(--color-accent-glow), transparent 60%);
	opacity: 0.4;
}

.cta-band__content {
	position: relative;
	z-index: 1;
	text-align: center;
}

.cta-band__content h2 {
	font-size: var(--text-3xl);
	margin-bottom: var(--space-md);
}

.cta-band__content p {
	font-size: var(--text-lg);
	color: var(--color-text-muted);
	margin-bottom: var(--space-xl);
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}


/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.site-footer {
	background: var(--color-bg-alt);
	border-top: 1px solid var(--color-border);
	padding-top: var(--space-3xl);
}

.footer-inner {
	display: grid;
	grid-template-columns: 2fr 1fr 1.5fr;
	gap: var(--space-3xl);
	padding-bottom: var(--space-3xl);
}

.footer-brand .site-logo-text {
	font-size: var(--text-xl);
	margin-bottom: var(--space-md);
	display: inline-block;
}

.footer-desc {
	color: var(--color-text-muted);
	font-size: var(--text-sm);
	line-height: 1.7;
	margin-bottom: var(--space-lg);
	margin-top: var(--space-md);
	max-width: 320px;
}

.footer-social {
	display: flex;
	gap: var(--space-md);
}

.footer-social a {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--radius-full);
	background: var(--color-bg-elevated);
	border: 1px solid var(--color-border);
	color: var(--color-text-muted);
	transition: all var(--transition-fast);
}

.footer-social a:hover {
	color: var(--color-accent);
	border-color: var(--color-accent);
	background: var(--color-accent-glow);
}

.footer-links h4,
.footer-contact h4 {
	font-size: var(--text-sm);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--color-text-muted);
	margin-bottom: var(--space-lg);
}

.footer-nav-list {
	list-style: none;
}

.footer-nav-list li {
	margin-bottom: var(--space-sm);
}

.footer-nav-list li a {
	color: var(--color-text-muted);
	font-size: var(--text-sm);
	transition: color var(--transition-fast);
}

.footer-nav-list li a:hover {
	color: var(--color-text);
}

.footer-contact .contact-item {
	display: flex;
	align-items: center;
	gap: var(--space-sm);
	color: var(--color-text-muted);
	font-size: var(--text-sm);
	margin-bottom: var(--space-sm);
}

.footer-contact .contact-item svg {
	fill: var(--color-accent);
	flex-shrink: 0;
}

.footer-contact .contact-item a {
	color: var(--color-text-muted);
}

.footer-contact .contact-item a:hover {
	color: var(--color-accent);
}

.footer-bottom {
	border-top: 1px solid var(--color-border);
	padding: var(--space-lg) 0;
}

.footer-bottom p {
	text-align: center;
	font-size: var(--text-sm);
	color: var(--color-text-subtle);
}


/* ═══════════════════════════════════════════════════════════
   SINGLE MOVIE PAGE
   ═══════════════════════════════════════════════════════════ */
.movie-hero {
	position: relative;
	margin-top: var(--header-height);
	padding: var(--space-4xl) 0;
	min-height: 500px;
	display: flex;
	align-items: center;
}

.movie-hero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	filter: blur(20px) brightness(0.3);
	transform: scale(1.1);
}

.movie-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(13, 13, 15, 0.6), var(--color-bg));
}

.movie-hero__content {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: var(--space-3xl);
	align-items: start;
}

.movie-hero__poster {
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}

.movie-hero__poster img {
	width: 100%;
	aspect-ratio: 2 / 3;
	object-fit: cover;
}

.movie-hero__title {
	font-size: var(--text-4xl);
	margin-bottom: var(--space-md);
}

.movie-hero__genres {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-sm);
	margin-bottom: var(--space-lg);
}

.movie-hero__meta-row {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-md);
	margin-bottom: var(--space-lg);
}

.meta-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: var(--space-sm) var(--space-md);
	background: var(--color-bg-elevated);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	font-size: var(--text-sm);
	color: var(--color-text-muted);
}

.meta-badge svg {
	fill: var(--color-text-subtle);
}

.meta-badge--price {
	color: var(--color-gold);
	border-color: rgba(245, 166, 35, 0.2);
	background: rgba(245, 166, 35, 0.1);
}

.movie-hero__desc {
	font-size: var(--text-lg);
	color: var(--color-text-muted);
	line-height: 1.7;
	margin-bottom: var(--space-xl);
	max-width: 600px;
}

.movie-hero__actions {
	display: flex;
	gap: var(--space-md);
	flex-wrap: wrap;
}

/* Movie Body Sections */
.movie-body {
	padding: var(--space-3xl) var(--space-lg);
}

.movie-body .section-title {
	font-size: var(--text-2xl);
	margin-bottom: var(--space-xl);
	padding-bottom: var(--space-sm);
	border-bottom: 2px solid var(--color-border);
}

.movie-description {
	margin-bottom: var(--space-3xl);
}

.entry-content {
	font-size: var(--text-base);
	color: var(--color-text-muted);
	line-height: 1.8;
}

.entry-content p {
	margin-bottom: var(--space-md);
}

.trailer-embed {
	position: relative;
	padding-bottom: 56.25%;
	/* 16:9 */
	height: 0;
	overflow: hidden;
	border-radius: var(--radius-lg);
	margin-bottom: var(--space-3xl);
}

.trailer-embed iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: none;
	border-radius: var(--radius-lg);
}

.movie-trailer {
	margin-bottom: var(--space-3xl);
}

/* Showtimes Table */
.movie-showtimes {
	margin-bottom: var(--space-3xl);
}

.showtimes-table-wrap {
	overflow-x: auto;
	border-radius: var(--radius-lg);
	border: 1px solid var(--color-border);
}

.showtimes-table {
	width: 100%;
	border-collapse: collapse;
}

.showtimes-table th {
	padding: var(--space-md) var(--space-lg);
	background: var(--color-bg-elevated);
	font-size: var(--text-sm);
	font-weight: 600;
	text-align: left;
	color: var(--color-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.showtimes-table td {
	padding: var(--space-md) var(--space-lg);
	font-size: var(--text-sm);
	border-top: 1px solid var(--color-border);
}

.showtimes-table tr:hover td {
	background: var(--color-surface);
}

.showtime-row--disabled td {
	opacity: 0.4;
}

.seats-badge {
	display: inline-block;
	padding: 2px 10px;
	border-radius: var(--radius-full);
	font-size: var(--text-xs);
	font-weight: 600;
}

.seats-badge--available {
	background: rgba(76, 175, 80, 0.15);
	color: var(--color-success);
}

.seats-badge--full {
	background: rgba(244, 67, 54, 0.15);
	color: var(--color-danger);
}


/* ═══════════════════════════════════════════════════════════
   ARCHIVE HERO
   ═══════════════════════════════════════════════════════════ */
.archive-hero {
	margin-top: var(--header-height);
	padding: var(--space-4xl) 0 var(--space-xl);
	background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
	text-align: center;
}

.archive-hero__title {
	font-size: var(--text-4xl);
	margin-bottom: var(--space-sm);
}

.archive-hero__subtitle {
	font-size: var(--text-lg);
	color: var(--color-text-muted);
}


/* ═══════════════════════════════════════════════════════════
   BOOKING PAGE
   ═══════════════════════════════════════════════════════════ */
.booking-hero {
	margin-top: var(--header-height);
	padding: var(--space-3xl) 0 var(--space-xl);
	background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
	text-align: center;
}

.booking-hero__title {
	font-size: var(--text-4xl);
	margin-bottom: var(--space-sm);
}

.booking-hero__subtitle {
	font-size: var(--text-lg);
	color: var(--color-text-muted);
}

.section-booking {
	padding: var(--space-3xl) 0 var(--space-4xl);
}

.booking-form-wrap {
	max-width: 700px;
	margin: 0 auto;
}

.booking-form {
	position: relative;
}

.booking-step {
	background: var(--color-bg-card);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	padding: var(--space-xl);
	margin-bottom: var(--space-xl);
	position: relative;
	animation: fadeSlideUp 0.4s ease;
}

.step-number {
	position: absolute;
	top: -14px;
	left: var(--space-xl);
	width: 28px;
	height: 28px;
	background: var(--color-accent);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--radius-full);
	font-family: var(--font-display);
	font-size: var(--text-xs);
	font-weight: 700;
}

.booking-step h3 {
	font-size: var(--text-lg);
	margin-bottom: var(--space-lg);
}

/* Showtime selection cards */
.showtime-options {
	display: grid;
	gap: var(--space-md);
}

.showtime-option {
	display: flex;
	align-items: center;
	gap: var(--space-md);
	padding: var(--space-md);
	background: var(--color-bg-elevated);
	border: 2px solid var(--color-border);
	border-radius: var(--radius-md);
	cursor: pointer;
	transition: all var(--transition-fast);
}

.showtime-option:hover {
	border-color: var(--color-border-hover);
}

.showtime-option.selected {
	border-color: var(--color-accent);
	background: var(--color-accent-glow);
}

.showtime-option input[type="radio"] {
	accent-color: var(--color-accent);
	width: 18px;
	height: 18px;
}

.showtime-option__info {
	flex: 1;
}

.showtime-option__info strong {
	display: block;
	font-size: var(--text-sm);
}

.showtime-option__info span {
	font-size: var(--text-xs);
	color: var(--color-text-muted);
}

.showtime-option__seats {
	font-size: var(--text-xs);
}

.showtimes-loading {
	text-align: center;
	padding: var(--space-xl);
	color: var(--color-text-muted);
}

.spinner {
	width: 32px;
	height: 32px;
	border: 3px solid var(--color-border);
	border-top: 3px solid var(--color-accent);
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
	margin: 0 auto var(--space-md);
}

/* Booking Summary */
.booking-summary {
	background: var(--color-bg-elevated);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	padding: var(--space-lg);
	margin: var(--space-xl) 0;
}

.booking-summary h4 {
	font-size: var(--text-base);
	margin-bottom: var(--space-md);
}

.summary-row {
	display: flex;
	justify-content: space-between;
	padding: var(--space-xs) 0;
	font-size: var(--text-sm);
	color: var(--color-text-muted);
}

.summary-row strong {
	color: var(--color-text);
}

.summary-row--total {
	border-top: 1px solid var(--color-border);
	margin-top: var(--space-sm);
	padding-top: var(--space-sm);
	font-size: var(--text-base);
	font-weight: 600;
}

.summary-row--total span,
.summary-row--total strong {
	color: var(--color-gold);
}

/* Booking Result */
.booking-result {
	text-align: center;
	padding: var(--space-3xl);
	animation: fadeSlideUp 0.5s ease;
}

.booking-result__icon {
	color: var(--color-success);
	margin-bottom: var(--space-lg);
}

.booking-result h3 {
	font-size: var(--text-2xl);
	margin-bottom: var(--space-md);
}

.booking-result p {
	color: var(--color-text-muted);
	margin-bottom: var(--space-xl);
}


/* ═══════════════════════════════════════════════════════════
   BLOG INDEX (fallback)
   ═══════════════════════════════════════════════════════════ */
.page-content {
	margin-top: calc(var(--header-height) + var(--space-3xl));
	padding-bottom: var(--space-4xl);
}

.posts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: var(--space-xl);
}

.post-card {
	background: var(--color-bg-card);
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--color-border);
}

.post-card__thumb {
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

.post-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.post-card__body {
	padding: var(--space-lg);
}

.post-card__title {
	font-size: var(--text-lg);
	margin-bottom: var(--space-sm);
}

.post-card__title a {
	color: var(--color-text);
}

.post-card__meta {
	font-size: var(--text-xs);
	color: var(--color-text-muted);
	margin-bottom: var(--space-sm);
}

.post-card__excerpt {
	font-size: var(--text-sm);
	color: var(--color-text-muted);
	margin-bottom: var(--space-md);
}

.pagination {
	margin-top: var(--space-3xl);
	text-align: center;
}

.pagination .nav-links {
	display: flex;
	justify-content: center;
	gap: var(--space-sm);
}

.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	height: 36px;
	padding: 0 var(--space-sm);
	background: var(--color-bg-card);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	color: var(--color-text-muted);
	font-size: var(--text-sm);
	transition: all var(--transition-fast);
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
	background: var(--color-accent);
	border-color: var(--color-accent);
	color: #fff;
}

.no-results {
	text-align: center;
	padding: var(--space-4xl);
	color: var(--color-text-muted);
}


/* ═══════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════ */
@keyframes fadeSlideUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

/* Scroll reveal */
.reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
	opacity: 1;
	transform: translateY(0);
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
	.movie-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.footer-inner {
		grid-template-columns: 1fr 1fr;
	}

	.footer-brand {
		grid-column: 1 / -1;
	}
}

/* Small Tablet */
@media (max-width: 768px) {
	:root {
		--text-5xl: 2.5rem;
		--text-4xl: 2rem;
		--text-3xl: 1.5rem;
	}

	.mobile-menu-toggle {
		display: flex;
	}

	.header-nav {
		position: fixed;
		top: var(--header-height);
		right: -100%;
		width: 280px;
		height: calc(100vh - var(--header-height));
		background: var(--color-bg-alt);
		border-left: 1px solid var(--color-border);
		flex-direction: column;
		justify-content: flex-start;
		padding: var(--space-xl);
		transition: right var(--transition-smooth);
		z-index: 999;
	}

	.header-nav.open {
		right: 0;
	}

	.nav-list {
		flex-direction: column;
		gap: 0;
	}

	.nav-list li a {
		padding: var(--space-md);
		font-size: var(--text-base);
	}

	.header-cta {
		display: none;
	}

	.hero-slider {
		height: 85vh;
		min-height: 500px;
	}

	.slide-description {
		-webkit-line-clamp: 3;
		font-size: var(--text-sm);
	}

	.btn-hero {
		padding: 5px 6px 5px 16px;
		font-size: var(--text-xs);
	}

	.btn-hero__icon {
		width: 28px;
		height: 28px;
	}

	.movie-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: var(--space-md);
	}

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

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

	.movie-hero__content {
		grid-template-columns: 200px 1fr;
		gap: var(--space-xl);
	}

	.form-row {
		grid-template-columns: 1fr;
	}

	.footer-inner {
		grid-template-columns: 1fr;
		gap: var(--space-xl);
	}
}

/* Mobile */
@media (max-width: 480px) {
	.movie-grid {
		grid-template-columns: 1fr;
		max-width: 320px;
		margin: 0 auto;
	}

	.movie-hero__content {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.movie-hero__poster {
		max-width: 200px;
		margin: 0 auto;
	}

	.movie-hero__genres,
	.movie-hero__meta-row,
	.movie-hero__actions {
		justify-content: center;
	}

	.hero-slider {
		height: 100vh;
		min-height: 500px;
	}

	.slide-content {
		max-width: 100%;
	}

	.slide-description {
		display: none;
	}

	.slide-genres {
		gap: 4px;
	}

	.slide-genre-pill {
		padding: 3px 10px;
		font-size: 0.6rem;
	}

	.slide-price {
		font-size: var(--text-xs);
	}

	.slide-actions {
		flex-direction: column;
		gap: var(--space-sm);
	}

	.slider-controls {
		gap: var(--space-md);
	}

	.slide-title {
		font-size: 1.8rem;
	}
}


/* ═══════════════════════════════════════════════════════════
   SITE MAIN spacer
   ═══════════════════════════════════════════════════════════ */
.site-main {
	min-height: calc(100vh - var(--header-height));
}


/* ═══════════════════════════════════════════════════════════
   CUSTOM WP CLASSES
   ═══════════════════════════════════════════════════════════ */
.custom-logo {
	max-height: 42px;
	width: auto;
}

.footer-logo .custom-logo {
	max-height: 36px;
}

/* WordPress Alignments */
.alignwide {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.alignfull {
	width: 100%;
	max-width: none;
}

.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/* ═══════════════════════════════════════════════════════════
   HERO MOVIES SLIDER SECTION
   ═══════════════════════════════════════════════════════════ */

/* Main Container */
.hero-movies-slider {
	position: relative;
	width: 100%;
	min-height: 100vh;
	background: var(--color-bg);
	overflow: hidden;
	display: flex;
	align-items: center;
}

.movies-slider-container {
	position: relative;
	width: 100%;
	height: 100%;
}

/* Movies Slider Track */
.movies-slider {
	display: flex;
	width: 100%;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Individual Movie Slide */
.movie-hero-slide {
	flex: none;
	width: 100%;
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: var(--header-height) 0 var(--space-4xl);
	position: relative;
}

/* Movie Poster (Left Side) */
.movie-hero__poster {
	flex: none;
	width: 450px;
	height: 600px;
	position: relative;
	border-radius: var(--radius-xl);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	margin-right: var(--space-4xl);
	margin-left: var(--space-4xl);
}

.movie-hero__poster img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--transition-smooth);
}

.movie-hero-slide:hover .movie-hero__poster img {
	transform: scale(1.02);
}

.movie-hero__poster-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: var(--space-md);
	background: var(--color-bg-elevated);
	color: var(--color-text-subtle);
	text-align: center;
}

.movie-hero__badge {
	position: absolute;
	top: var(--space-lg);
	left: var(--space-lg);
	padding: var(--space-sm) var(--space-lg);
	background: var(--color-gold);
	color: #000;
	font-family: var(--font-display);
	font-size: var(--text-sm);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	border-radius: var(--radius-sm);
	z-index: 2;
}

/* Movie Content (Right Side) */
.movie-hero__content {
	flex: 1;
	max-width: 650px;
	padding-right: var(--space-4xl);
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: var(--space-xl);
}

.movie-hero__header {
	margin-bottom: var(--space-lg);
}

.movie-hero__title {
	font-family: var(--font-display);
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 700;
	color: var(--color-text);
	margin-bottom: var(--space-lg);
	line-height: 1.1;
	letter-spacing: -0.02em;
}

.movie-hero__genres {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-sm);
}

.genre-pill--hero {
	background: var(--color-accent-glow);
	color: var(--color-accent);
	border: 1px solid rgba(229, 57, 53, 0.3);
	padding: var(--space-sm) var(--space-lg);
	font-size: var(--text-sm);
	font-weight: 600;
}

/* Meta Information */
.movie-hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-xl);
	margin-bottom: var(--space-lg);
}

.movie-hero__meta .meta-item {
	display: inline-flex;
	align-items: center;
	gap: var(--space-sm);
	font-size: var(--text-base);
	color: var(--color-text-muted);
	font-weight: 500;
}

.movie-hero__meta .meta-item svg {
	fill: var(--color-text-subtle);
	flex-shrink: 0;
}

/* Description */
.movie-hero__description {
	font-size: var(--text-lg);
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.7;
	margin-bottom: var(--space-xl);
}

/* Price and Rating Row */
.movie-hero__info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: var(--space-xl);
	flex-wrap: wrap;
	gap: var(--space-lg);
}

.movie-hero__price {
	display: inline-flex;
	align-items: center;
	gap: var(--space-sm);
	padding: var(--space-md) var(--space-lg);
	background: rgba(245, 166, 35, 0.15);
	border: 1px solid rgba(245, 166, 35, 0.3);
	border-radius: var(--radius-md);
	color: var(--color-gold);
	font-family: var(--font-display);
	font-size: var(--text-lg);
	font-weight: 600;
}

.movie-hero__price svg {
	fill: var(--color-gold);
}

.movie-hero__rating {
	display: flex;
	align-items: center;
	gap: var(--space-sm);
}

.movie-hero__rating .rating-stars {
	display: flex;
	gap: 3px;
}

.movie-hero__rating .star {
	color: var(--color-text-subtle);
	font-size: 18px;
}

.movie-hero__rating .star.filled {
	color: var(--color-gold);
}

.movie-hero__rating .rating-text {
	font-size: var(--text-base);
	font-weight: 600;
	color: var(--color-text-muted);
	margin-left: var(--space-sm);
}

/* Action Buttons */
.movie-hero__actions {
	display: flex;
	gap: var(--space-lg);
	flex-wrap: wrap;
}

.btn-hero--ghost {
	background: transparent;
	color: var(--color-text-muted);
	border: 1px solid var(--color-border);
	padding: 8px 12px 8px 20px;
}

.btn-hero--ghost:hover {
	background: var(--color-surface);
	color: var(--color-text);
	border-color: var(--color-border-hover);
}

/* Slider Navigation */
.movies-slider-controls {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	display: flex;
	justify-content: space-between;
	pointer-events: none;
	padding: 0 var(--space-xl);
	z-index: 10;
}

.slider-btn {
	width: 60px;
	height: 60px;
	border-radius: var(--radius-full);
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(12px) saturate(180%);
	-webkit-backdrop-filter: blur(12px) saturate(180%);
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: var(--color-text);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all var(--transition-base);
	pointer-events: all;
}

.slider-btn:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.3);
	transform: scale(1.05);
}

.slider-btn:active {
	transform: scale(0.95);
}

.slider-btn:disabled {
	opacity: 0.3;
	cursor: not-allowed;
	pointer-events: none;
}

/* Slider Dots */
.movies-slider-dots {
	position: absolute;
	bottom: var(--space-3xl);
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: var(--space-md);
	z-index: 10;
}

.movies-slider-dots .slider-dot {
	width: 12px;
	height: 12px;
	border-radius: var(--radius-full);
	background: rgba(255, 255, 255, 0.3);
	border: none;
	cursor: pointer;
	transition: all var(--transition-base);
}

.movies-slider-dots .slider-dot--active {
	background: var(--color-accent);
	width: 40px;
}

/* Fallback Hero */
.hero-fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	text-align: center;
	background: linear-gradient(135deg, #0a0a1a 0%, #1a1035 40%, #0d1b2a 100%);
}

.hero-fallback__title {
	font-size: var(--text-4xl);
	margin-bottom: var(--space-lg);
}

.hero-fallback__description {
	font-size: var(--text-lg);
	color: var(--color-text-muted);
	margin-bottom: var(--space-xl);
	max-width: 600px;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE: Hero Movies Slider
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 1200px) {
	.movie-hero__poster {
		width: 400px;
		height: 550px;
		margin-right: var(--space-3xl);
	}
	
	.movie-hero__content {
		max-width: 600px;
		padding-right: var(--space-3xl);
	}
}

@media (max-width: 1024px) {
	.movie-hero-slide {
		flex-direction: column;
		text-align: center;
		padding: calc(var(--header-height) + var(--space-xl)) var(--space-lg) var(--space-3xl);
		justify-content: center;
	}
	
	.movie-hero__poster {
		width: 320px;
		height: 450px;
		margin: 0 auto var(--space-3xl);
	}
	
	.movie-hero__content {
		max-width: 100%;
		padding-right: 0;
	}
	
	.movie-hero__title {
		font-size: var(--text-3xl);
	}
	
	.movies-slider-controls {
		display: none;
	}
}

@media (max-width: 768px) {
	.movie-hero__poster {
		width: 280px;
		height: 400px;
	}
	
	.movie-hero__title {
		font-size: var(--text-2xl);
	}
	
	.movie-hero__actions {
		flex-direction: column;
		gap: var(--space-md);
	}
	
	.movie-hero__actions .btn-hero {
		width: 100%;
		justify-content: center;
	}
	
	.movie-hero__info {
		flex-direction: column;
		align-items: center;
		gap: var(--space-md);
	}
}

@media (max-width: 480px) {
	.movie-hero__poster {
		width: 240px;
		height: 340px;
	}
	
	.movie-hero__meta {
		gap: var(--space-md);
		justify-content: center;
	}
	
	.movies-slider-dots {
		bottom: var(--space-xl);
	}
}