@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900&subset=latin-ext');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #ffffff;
  color: #2d3035;
  line-height: 1.6;
  overflow-x: hidden;
}

p { font-size: 16px; line-height: 1.8; }
a { color: #007cbd; text-decoration: none; transition: color 0.2s; }
a:hover { color: #005a8c; text-decoration: underline; }
img { max-width: 100%; height: auto; }
h1, h2, h3, h4 { font-weight: 300; }

/* ========== HEADER ========== */
.header {
  background: #ffffff;
  padding: 25px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  position: relative;
  border-bottom: 1px solid #e8e8e8;
}

.header-inner {
  width: 100%;
  max-width: 1200px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 60px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav a {
  font-size: 16px;
  font-weight: 400;
  color: #2d3035;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #007cbd;
  transition: width 0.3s ease;
}

.nav a:hover {
  color: #007cbd;
  text-decoration: none;
}

.nav a:hover::after {
  width: 100%;
}

/* ========== LANGUAGE SWITCH ========== */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 6px;
}

.lang-btn {
  background: none;
  border: none;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  color: #a0a3a8;
  cursor: pointer;
  padding: 2px 2px;
  transition: color 0.2s;
}

.lang-btn:hover { color: #007cbd; }

.lang-btn.active { color: #007cbd; }

.lang-sep { color: #d0d3d6; font-size: 13px; }

/* ========== SUB HEADER ========== */
.sub-header {
  background-color: #2d3035;
  color: #fff;
  height: 55px;
  display: flex;
  align-items: center;
  padding: 0 40px;
  justify-content: space-between;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  position: relative;
  z-index: 10;
}

.sub-header p {
  font-weight: 300;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  margin: 0;
  letter-spacing: 0.3px;
}

.sub-header-social {
  display: flex;
  gap: 8px;
  align-items: center;
}

.sub-header-social a {
  color: #fff;
  font-size: 15px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  text-decoration: none;
  transition: all 0.3s;
}

.sub-header-social a:hover {
  background: #007cbd;
  transform: scale(1.1);
}

/* ========== CAROUSEL ========== */
.carousel-section {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: #1a1d21;
}

.carousel-bg {
  position: absolute;
  top: -30px;
  left: -30px;
  right: -30px;
  bottom: -30px;
  background-size: cover;
  background-position: center;
  background-color: #1a1d21;
  filter: blur(30px) brightness(0.6);
  transition: background-image 0.8s ease;
  z-index: 0;
}

.carousel-track-wrapper {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 50px 0 20px;
}

/* Edge fade overlays */
.carousel-track-wrapper::before,
.carousel-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 5;
  pointer-events: none;
}

.carousel-track-wrapper::before {
  left: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.5), transparent);
}

.carousel-track-wrapper::after {
  right: 0;
  background: linear-gradient(to left, rgba(0,0,0,0.5), transparent);
}

.carousel-track {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 20px;
  transition: transform 0.5s ease;
  will-change: transform;
}

.carousel-slide {
  flex-shrink: 0;
  width: 180px;
  padding: 15px 7px;
  opacity: 0.5;
  transition: all 0.5s ease;
  cursor: pointer;
  transform: scale(0.9);
}

.carousel-slide img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 3px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.carousel-slide.active {
  width: 310px;
  padding: 0 10px;
  opacity: 1;
  z-index: 10;
  transform: scale(1);
}

.carousel-slide.active img {
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}

.carousel-text {
  text-align: center;
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 40px 20px 45px;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.4));
}

.carousel-text h2 {
  color: #fff;
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 6px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  letter-spacing: 0.5px;
}

.carousel-text p {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 300;
}

.carousel-text a {
  color: #7dc8ef;
  text-decoration: none;
}

.carousel-text a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Carousel navigation arrows */
.carousel-nav {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.3s;
  z-index: 100;
  user-select: none;
  background: rgba(0,0,0,0.3);
  border: none;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  backdrop-filter: blur(4px);
}

.carousel-nav:hover {
  opacity: 1;
  background: rgba(0,124,189,0.7);
}

.carousel-prev { left: 15px; }
.carousel-next { right: 15px; }

/* ========== SECTIONS ========== */
.section {
  padding: 50px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 26px;
  font-weight: 300;
  margin-bottom: 8px;
  color: #2d3035;
}

.section-separator {
  border: none;
  border-top: 2px solid #007cbd;
  margin-bottom: 30px;
  width: 100%;
}

/* ========== FILM GRID ========== */
.film-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.film-card {
  text-decoration: none;
  color: #222;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 4px;
  overflow: hidden;
}

.film-card:hover {
  transform: translateY(-5px);
  text-decoration: none;
}

.film-card .film-poster {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  display: block;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: box-shadow 0.3s ease;
}

.film-card:hover .film-poster {
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.film-card .film-info {
  padding: 12px 4px;
  text-align: center;
}

.film-card .film-title {
  font-size: 15px;
  font-weight: 500;
  color: #2d3035;
}

.film-card .film-meta {
  font-size: 13px;
  font-weight: 300;
  color: #888;
  margin-top: 3px;
  display: block;
}

.placeholder-poster {
  width: 100%;
  aspect-ratio: 2/3;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  padding: 15px;
  border-radius: 4px;
}

/* ========== UPCOMING ========== */
.upcoming-section {
  background-color: #f5f5f5;
  padding: 50px 0;
}

.upcoming-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 320px));
  gap: 40px;
  justify-content: center;
}

.upcoming-card {
  text-decoration: none;
  color: #222;
  transition: transform 0.3s ease;
}

.upcoming-card:hover {
  text-decoration: none;
  transform: translateY(-4px);
}

.upcoming-card .film-poster {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  transition: box-shadow 0.3s ease;
}

.upcoming-card:hover .film-poster {
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.upcoming-card .upcoming-info {
  padding: 15px 0;
  text-align: center;
}

.upcoming-card .upcoming-title {
  font-size: 17px;
  font-weight: 500;
  color: #2d3035;
}

.upcoming-card .upcoming-status {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #007cbd;
  margin-bottom: 5px;
  display: block;
}

.upcoming-card .upcoming-meta {
  font-size: 13px;
  font-weight: 300;
  color: #888;
}

/* ========== FOOTER ========== */
#footer {
  background-color: #f2f2f2;
  color: #2d3035;
  padding: 45px 40px;
  border-top: 3px solid #007cbd;
}

#footer a {
  color: #007cbd;
  text-decoration: none;
}

#footer a:hover {
  text-decoration: underline;
}

.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-width: 200px;
}

.footer-logo-img {
  height: 50px;
  width: auto;
  max-width: 200px;
  display: block;
  object-fit: contain;
}

.footer-email {
  font-size: 14px;
  color: #007cbd;
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 500;
  color: #2d3035;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: #007cbd;
  margin-bottom: 8px;
}

.footer {
  background-color: #2c2f35;
  padding: 18px 40px;
  color: #6a6c6f;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

.footer-credit {
  color: #6a6c6f;
  font-size: 12px;
}

/* ========== PAGE HERO (About / Contact) ========== */
.page-hero {
  background: linear-gradient(135deg, #007cbd, #005a8c);
  color: #fff;
  padding: 60px 40px;
  text-align: center;
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: 40px;
  font-weight: 300;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.page-hero p {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.9);
}

.page-content {
  padding-top: 50px;
  padding-bottom: 60px;
}

.prose p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
  color: #444;
  margin-bottom: 18px;
  max-width: 820px;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 10px;
}

.about-card {
  background: #f7f9fb;
  border-left: 3px solid #007cbd;
  padding: 25px;
  border-radius: 4px;
}

.about-card h3 {
  font-size: 19px;
  font-weight: 400;
  color: #2d3035;
  margin-bottom: 10px;
}

.about-card p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: #555;
}

/* ========== CONTACT ========== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-info p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: #444;
  margin-bottom: 25px;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 18px;
}

.contact-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999;
}

.contact-detail a,
.contact-detail span:not(.contact-label) {
  font-size: 16px;
  color: #2d3035;
}

.contact-detail a { color: #007cbd; }

.contact-form-wrap {
  background: #f7f9fb;
  padding: 30px;
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.form-row {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
}

.form-row label {
  font-size: 13px;
  font-weight: 500;
  color: #555;
  margin-bottom: 6px;
}

.form-row input,
.form-row textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 11px 14px;
  border: 1px solid #d5dde3;
  border-radius: 4px;
  background: #fff;
  color: #2d3035;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: #007cbd;
  box-shadow: 0 0 0 3px rgba(0,124,189,0.12);
}

.form-submit {
  background: #007cbd;
  color: #fff;
  border: none;
  padding: 13px 30px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}

.form-submit:hover {
  background: #005a8c;
}

.form-note {
  font-size: 12px;
  color: #999;
  margin-top: 14px;
}

/* ========== FILM DETAIL ========== */
.film-detail-hero {
  background-color: #1a1d21;
  position: relative;
  overflow: hidden;
  padding: 60px 0 140px;
}

.film-detail-hero .hero-bg {
  position: absolute;
  top: -30px; left: -30px;
  width: calc(100% + 60px);
  height: calc(100% + 60px);
  object-fit: cover;
  filter: blur(20px) brightness(0.5);
  opacity: 0.7;
}

.film-detail-hero .hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.5));
}

.film-detail-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px 60px;
}

.film-detail-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
}

.film-detail-poster-wrap {
  margin-top: -100px;
  position: relative;
  z-index: 2;
}

.film-detail-poster {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

.film-detail-info { padding-top: 20px; }

.film-detail-info h1 {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 10px;
  color: #2d3035;
}

.film-detail-info .film-genre {
  font-size: 13px;
  font-weight: 600;
  color: #007cbd;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.film-detail-info .film-cast {
  font-size: 15px;
  font-weight: 300;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.6;
}

.film-detail-meta {
  background-color: #f7f9fb;
  padding: 25px;
  margin-bottom: 30px;
  border-radius: 4px;
  border-left: 3px solid #007cbd;
}

.meta-item {
  padding: 8px 0;
  display: flex;
  gap: 15px;
  align-items: baseline;
}

.meta-item .meta-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #999;
  min-width: 80px;
}

.meta-item .meta-value {
  font-size: 14px;
  color: #2d3035;
}

.film-synopsis h3 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #2d3035;
}

.film-synopsis p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: #555;
}

.film-video {
  margin-top: 35px;
}

.film-video h3 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #2d3035;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  border: none;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #007cbd;
  padding: 20px 0;
  text-decoration: none;
  font-weight: 400;
  transition: gap 0.2s;
}

.back-btn:hover {
  text-decoration: none;
  color: #005a8c;
  gap: 12px;
}

.back-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  transition: transform 0.2s;
}

.back-btn:hover svg {
  transform: translateX(-3px);
}

/* ========== BUTTONS ========== */
.view-all {
  text-align: center;
  margin-top: 40px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  border: 2px solid #007cbd;
  color: #007cbd;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.25s ease;
}

.btn-outline:hover {
  background: #007cbd;
  color: #fff;
  text-decoration: none;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 34px;
  background: #007cbd;
  color: #fff;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.25s ease;
}

.btn-primary:hover {
  background: #fff;
  color: #1a1d21;
  text-decoration: none;
}

/* ========== HOME ABOUT BAND ========== */
.home-about {
  background: linear-gradient(135deg, #1a1d21, #2d3035);
  color: #fff;
  padding: 80px 40px;
  text-align: center;
}

.home-about-inner {
  max-width: 760px;
  margin: 0 auto;
}

.home-about-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #4ca6d6;
  margin-bottom: 18px;
}

.home-about h2 {
  font-size: 32px;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 22px;
  letter-spacing: 0.3px;
}

.home-about p {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  line-height: 1.9;
  margin-bottom: 34px;
}

/* ========== FILM CREW BLOCK ========== */
.film-crew {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #ddd;
}

/* ========== FILM STILLS GALLERY ========== */
.film-stills {
  margin-top: 35px;
}

.film-stills h3 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #2d3035;
}

.stills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.stills-grid .still {
  display: block;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  background: #1a1d21;
}

.stills-grid .still img {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.2s ease;
}

.stills-grid .still:hover img {
  transform: scale(1.06);
  opacity: 0.92;
}

/* ========== LIGHTBOX ========== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 92%;
  max-height: 88%;
  border-radius: 4px;
  box-shadow: 0 10px 50px rgba(0,0,0,0.6);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 28px;
  color: #fff;
  font-size: 40px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.lightbox-close:hover { opacity: 1; }

/* ========== NEWS ========== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.news-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #eceef0;
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.news-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.news-card-body {
  padding: 22px 24px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-date {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #007cbd;
  margin-bottom: 8px;
}

.news-card h3 {
  font-size: 19px;
  font-weight: 400;
  color: #2d3035;
  margin-bottom: 10px;
  line-height: 1.35;
}

.news-card p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: #555;
  margin-bottom: 14px;
}

.news-readmore {
  margin-top: auto;
  font-size: 13px;
  font-weight: 500;
  color: #007cbd;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .film-grid { grid-template-columns: repeat(3, 1fr); }
  .carousel-slide { width: 140px; }
  .carousel-slide.active { width: 200px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 768px) {
  .header-inner { padding: 0 20px; }
  .nav { gap: 16px; }
  .nav a { font-size: 14px; }
  .sub-header { padding: 0 20px; height: auto; padding: 12px 20px; }
  .sub-header p { font-size: 12px; }
  .film-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
  .section { padding: 35px 20px; }
  .carousel-text h2 { font-size: 22px; }
  .carousel-slide { width: 100px; }
  .carousel-slide.active { width: 160px; }
  .carousel-nav { width: 36px; height: 36px; font-size: 18px; }
  .film-detail-layout { grid-template-columns: 1fr; }
  .film-detail-poster-wrap { margin-top: -60px; max-width: 220px; margin-left: auto; margin-right: auto; }
  .upcoming-grid { grid-template-columns: minmax(0, 300px); }
  .about-cards { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 35px; }
  .news-grid { grid-template-columns: 1fr; }
  .stills-grid { grid-template-columns: repeat(2, 1fr); }
  .lang-switch { margin-left: 0; }
  .home-about { padding: 55px 24px; }
  .home-about h2 { font-size: 25px; }
  .page-hero h1 { font-size: 32px; }
  .footer-main { grid-template-columns: 1fr; gap: 25px; text-align: center; }
  .footer-brand { align-items: center; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .logo img { height: 45px; }
  .nav { gap: 12px; }
  .nav a { font-size: 13px; }
  .film-grid { grid-template-columns: 1fr; gap: 20px; }
  .carousel-slide { width: 80px; }
  .carousel-slide.active { width: 130px; }
}
