/*======== Main Page Start ========== */

:root {
  --hero-overlay: rgba(0,0,0,.55);
  --accent: #f6c36a; /* suggestion: warm cinema amber. Change to your brand colour any time */
  --panel: rgba(255,255,255,.04);
  --panel-border: rgba(255,255,255,.08);
}

html { scroll-behavior: smooth; }
body { background: #0b0b0c; }
section, main { scroll-margin-top: 92px; }

.glass-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
  backdrop-filter: blur(10px);
  background: rgba(0,0,0,.28);
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.navbar .nav-link {
  letter-spacing: .2px;
  font-weight: 500;
}

.navbar .nav-link:hover { color: var(--accent) !important; }

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: #fff;
}

.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(0,0,0,.10), rgba(0,0,0,.25)),
              linear-gradient(to bottom, rgba(0,0,0,.20), rgba(0,0,0,.20));
  pointer-events: none;
}

/* The contents top of Video*/
.hero-content{
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 6.5rem 16px 2.5rem 16px;
  text-align: left;
  margin: 0;
}

/* Desktop / larger screens */
@media (min-width: 786px){
  .hero-content{
    max-width: 980px;
    margin-left: 100px;
  }
}
/* The contents top of Video*/

.hero-kicker {
  opacity: .92;
  font-size: 1.05rem;
  max-width: 52ch;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: .6rem 0 1rem 0;
}

.muted-note { color: rgba(255,255,255,.72); }

.btn-ghost {
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
  background: rgba(0,0,0,.15);
}
.btn-ghost:hover { background: rgba(255,255,255,.12); color: #fff; }

.section-pad { padding: 4.5rem 0; }

.section-head {
  padding-top: .5rem;
  padding-bottom: 1.25rem;
}

.section-title {
  color: #fff;
  margin-bottom: .25rem;
}

.section-subtitle {
  color: rgba(255,255,255,.68);
  margin: 0;
  max-width: 70ch;
}

.film-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  transition: transform .25s ease, border-color .25s ease;
}

.film-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.18);
}

.film-thumb {
  aspect-ratio: 16 / 9;
  width: 100%;
  object-fit: cover;
  background: #111;
}

.badge-soft {
  background: rgba(246,195,106,.18);
  border: 1px solid rgba(246,195,106,.35);
  color: rgba(255,255,255,.92);
  font-weight: 600;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.10), rgba(255,255,255,0));
}

.reveal { opacity: 0; transform: translateY(10px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* Back to top button */
.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1200;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(10px);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, border-color .2s ease;
}
.back-to-top:hover { border-color: rgba(246,195,106,.55); color: #fff; }
.back-to-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top svg { width: 18px; height: 18px; }

@media (prefers-reduced-motion: reduce) {
  .hero video { display: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .back-to-top { transition: none; }
}
/*======== Main Page End ========== */
/*======== Post Page Start ========== */
body { background: #0b0b0c; color: #fff; }

    .glass-nav {
      backdrop-filter: blur(10px);
      background: rgba(0,0,0,.35);
      border-bottom: 1px solid rgba(255,255,255,.12);
    }

    .post-hero {
      position: relative;
      min-height: 80vh;
      display: grid;
      align-items: end;
      overflow: hidden;
      border-bottom: 1px solid rgba(255,255,255,.10);
      isolation: isolate;
    }

    .post-hero::before{
      content:"";
      position:absolute;
      inset:0;
      background-size: cover;
      background-position: center;
      transform: scale(1.03);
      filter: saturate(1.05);
      z-index: -2;
    }

    .post-hero::after{
      content:"";
      position:absolute;
      inset:0;
      background: radial-gradient(circle at 20% 20%, rgba(0,0,0,.10), rgba(0,0,0,.5)),
                linear-gradient(to bottom, rgba(0,0,0,.25), rgba(0,0,0,.92));
      z-index: -1;
    }

    .hero-inner { position: relative; z-index: 2; padding: 6rem 0 2rem 0; }

    .hero-inner h1 {
        margin-top:-200px;
        font-size: 4.2em;}
    .meta { color: rgba(255,255,255,.72); }

    .panel {
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 18px;
    }

    .link-soft { color: rgba(255,255,255,.78); text-decoration: none; }
    .link-soft:hover { color: #fff; }

    .mini-card {
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 18px;
      overflow: hidden;
      height: 100%;
      transition: transform .25s ease, border-color .25s ease;
    }
    .mini-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.18); }
    .mini-thumb { width:100%; aspect-ratio:16/9; object-fit:cover; background:#111; }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
    }
    @media (min-width: 992px){
      .gallery-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    }

    .gallery-btn {
      border: 0;
      padding: 0;
      border-radius: 16px;
      overflow: hidden;
      background: transparent;
      cursor: pointer;
      position: relative;
      outline: none;
    }

    .gallery-btn::after{
      content:"";
      position:absolute;
      inset:0;
      background: linear-gradient(to top, rgba(0,0,0,.28), rgba(0,0,0,0));
      opacity: 0;
      transition: opacity .18s ease;
      pointer-events:none;
    }
    .gallery-btn:hover::after { opacity: 1; }

    .gallery-img {
      width: 100%;
      aspect-ratio: 16 / 10;
      object-fit: cover;
      display: block;
      background: #111;
      border: 1px solid rgba(255,255,255,.10);
      border-radius: 16px;
    }

    .modal-content {
      background: rgba(12,12,13,.92);
      border: 1px solid rgba(255,255,255,.12);
      backdrop-filter: blur(10px);
      border-radius: 18px;
      overflow: hidden;
    }

    .carousel-item img {
      width: 100%;
      max-height: 80vh;
      object-fit: contain;
      background: #0b0b0c;
      display: block;
    }

    .modal-header, .modal-footer {
      border-color: rgba(255,255,255,.10);
    }

    .btn-close { filter: invert(1); opacity: .85; }

    .carousel-control-prev-icon,
    .carousel-control-next-icon { filter: invert(1); }

    .ratio iframe { border: 0; }
    
    /*======== Post Page End ========== */