* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      background: url('images/bkg/The-Etiquette-of-Dying--blue-background.png') center center / cover no-repeat;
    }

    body {
      background-color: #000;
      color: #fff;
      font-family: 'Century Gothic', sans-serif;
      overflow-x: hidden;
    }

    section {
      width: 100%;
      overflow: hidden;
      position: relative;
    }

    h2 {
      font-weight: 200;
    }

    h3 {
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: 200;
    }

    a {
      text-decoration: none;
    }

    /* ---------------- NAV ---------------- */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 8%;
      z-index: 1000;
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    nav .logo {
      font-size: 1.5rem;
      font-weight: 800;
      color: #fff;
      letter-spacing: 3px;
      text-transform: uppercase;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 25px;
    }

    nav ul li a {
      color: #ddd;
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: 500;
      transition: color 0.3s ease;
    }

    nav ul li a:hover {
      color: #0687f5;
    }

    .menu-toggle {
      display: none;
      font-size: 1.8rem;
      cursor: pointer;
      color: #fff;
    }

    /* Scroll progress bar */
    .scroll-indicator {
      position: fixed;
      top: 0;
      left: 0;
      height: 3px;
      width: 0%;
      background-color: #0687f5;
      z-index: 1500;
      transition: width 0.2s ease-out;
    }

    @media (max-width: 768px) {
      nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 0;
        background: rgba(0, 0, 0, 1);
        padding: 20px;
        width: 100%;
        text-align: right;
        text-align: center;
      }

      nav ul.active {
        display: flex;
      }

      .menu-toggle {
        display: block;
      }
    }

    /* ---------------- HERO ---------------- */
    .hero {
      position: relative;
      width: 100%;
      height: 80vh;
      background: url('images/bkg/The-Etiquette-of-Dying--blue-background.png') center center / cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      overflow: hidden;
    }

    .hero iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
    }

    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.55);
      z-index: 2;
    }

    .hero-content {
      position: relative;
      z-index: 3;
      animation: fadeInUp 2s ease forwards;
    }

    .hero-logo {
      width: 40vw;           /* scales based on screen width */
      max-width: 620px;      /* prevents it from getting too large on desktop */
      min-width: 460px;      /* prevents it from getting too tiny on mobile */
      height: auto;
      display: block;
      margin: 0 auto 15px auto;
      animation: fadeInUp 2s ease forwards;
    }

    .hero h1 {
      font-size: 4.5rem;
      letter-spacing: 4px;
      font-weight: 800;
    }

    .hero h2 {
      margin-top: 60px;
      font-size: 1.3rem;
      letter-spacing: 3px;
      color: #0687f5;
    }

    .hero h3 {
      margin: 10px 0;
    }

    /* ---------------- FADE IN ---------------- */
    [data-fade] {
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.8s ease-out;
    }

    [data-fade].visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ---------------- PARALLAX ---------------- */
    .parallax {
      background-attachment: fixed;
      background-size: cover;
      background-position: center;
    }

    /* ---------------- FILM DESCRIPTION ---------------- */
    .film-description {
      padding: 100px 10%;
      text-align: center;
      background: #000;
    }

    .film-description h2 {
      font-size: 2.2rem;
      margin-bottom: 20px;
      color: #0687f5;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .film-description p {
      font-size: 1.1rem;
      color: #ddd;
      max-width: 800px;
      margin: 0 auto;
      line-height: 1.7;
    }

    /* ---------------- TYPOGRAPHY HIGHLIGHT ---------------- */
    .typography-highlight {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      padding: 120px 10%;
      align-items: center;
      Background: url('images/bkg/background.png') center center / cover no-repeat;
    }

    .typography-highlight h2 {
      font-size: 3rem;
      color: #fff;
      letter-spacing: 2px;
      line-height: 1.2;
    }

    .typography-highlight p {
      font-size: 1.1rem;
      color: #ccc;
      line-height: 1.8;
    }

    /* ---------------- VIDEO EMBED ---------------- */
    .video-embed {
      padding: 80px 10%;
      text-align: center;
      background: #000;
    }

    .video-embed h2 {
      color: #0687f5;
      margin-bottom: 30px;
      text-transform: uppercase;
      letter-spacing: 1.5px;
    }

    .video-embed iframe {
      width: 100%;
      /*max-width: 960px;*/
      height: 60vh;
      border: none;
      border-radius: 12px;
    }

    /* ---------------- GALLERY ---------------- */

    /* Desktop-only uniform thumbnail sizing */
    @media (min-width: 900px) {
      .gallery-thumb {
        width: 100%;
        height: 180px;          /* Set the uniform height */
        object-fit: cover;      /* Crop to maintain clean composition */
        border-radius: 6px;
        display: block;
      }
    }

    @media (max-width: 600px) {
      .gallery-thumb {
        aspect-ratio: 1 / 1;
      }
    }

    .gallery {
      padding: 100px 10%;
      text-align: center;
      background: #0a0a0a;
    }

    .gallery h2 {
      color: #0687f5;
      margin-bottom: 40px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 15px;
    }

    .gallery-grid img {
      width: 100%;
      border-radius: 8px;
      transition: transform 0.3s ease, opacity 0.3s ease;
      cursor: pointer;
    }

    .gallery-grid img:hover {
      transform: scale(1.05);
      opacity: 0.8;
    }

    /* Lightbox */
    #lightbox {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.85);
      display: none;
      justify-content: center;
      align-items: center;
      padding: 40px 20px;
      z-index: 9999;
    }

    #lightbox.active {
      display: flex;
    }

    .lightbox-content {
      text-align: center;
      max-width: 90%;
      max-height: 90%;
    }

    #lightbox-img {
      max-width: 100%;
      max-height: 80vh;
      object-fit: contain;
      border-radius: 8px;
    }

    #lightbox-caption {
      margin-top: 15px;
      font-family: 'Century Gothic', sans-serif;
      color: #fff;
      font-size: 1rem;
      opacity: 0.85;
    }

    /* ---------------- NEWS ---------------- */
  .news {
      padding: 100px 10%;
      text-align: center;
      Background: url('images/bkg/background.png') center center / cover no-repeat;
    }

    .news h2 {
      color: #0687f5;
      margin-bottom: 40px;
      text-transform: uppercase;
      letter-spacing: 1.5px;
    }

    .news-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .news-item {
      display: block;
      padding: 20px;
      background: #111;
      border: 1px solid #222;
      border-radius: 8px;
      color: #fff;
      text-decoration: none;
      transition: background 0.3s ease, transform 0.3s ease;
    }


    .news-item h3 {
      margin-bottom: 8px;
      font-size: 1.25rem;
      color: #fff;
    }

    .news-item p {
      font-size: 0.95rem;
      color: #ccc;
      opacity: 0.85;
      line-height: 1.5;
    }    

    /* NEWS SECTION IMAGE BOX */
    .news-image-container {
      width: 100%;
      aspect-ratio: 16 / 9;        /* Ensures all thumbnails are uniform */
      overflow: hidden;
      border-radius: 8px 8px 0 0;  /* Sleek top-rounded corners */
      background: #111;            /* Fallback color while loading */
    }

    .news-image {
      width: 100%;
      height: 100%;
      object-fit: cover;           /* Cropped beautifully */
      display: block;
    }

    /* NEWS ITEM CARD */
    .news-item {
      display: block;
      background: #0a0a0a;
      border: 1px solid #222;
      border-radius: 8px;
      padding: 0 0 20px 0;         /* Image is at the top, so remove top padding */
      color: #fff;
      text-decoration: none;
      transition: background 0.3s ease, transform 0.3s ease;
    }

    .news-item h3 {
      margin: 18px 20px 8px 20px;
      font-size: 1.25rem;
    }

    .news-item p {
      margin: 0 20px;
      opacity: 0.85;
      line-height: 1.5;
    }  

    /* ---------------- CREDITS / MUSICIANS ---------------- */
    .musicians {
      padding: 100px 10%;
      background: #000;
      text-align: left;
    }

    .musicians h2 {
      color: #0687f5;
      letter-spacing: 1.5px;
      margin-bottom: 30px;
      text-align: center;
      text-transform: uppercase;
    }

    .credits {
      max-width: 900px;
      margin: 0 auto;
      letter-spacing: 0.5px;
      color: #ccc;
    }

    .credit-item {
      display: flex;
      /*justify-content: space-between;*/
      border-bottom: 1px solid rgba(255,255,255,0.05);
      padding: 10px 0;
      flex-wrap: wrap;
      margin: 0 auto;
      width: 50%;
    }



    .credit-name {
      font-size: 0.95rem;
      font-weight: 600;
      color: #fff;
    }

    .credit-role {
      font-size: 0.9rem;
      color: #999;
      padding: 0 10px;
    }

    .credit-social {
      font-size: 0.85rem;
      color: #0687f5;
      text-decoration: none;
    }

    .credit-social:hover {
      color: #fff;
    }

    /* =============== GRANT SUPPORT SECTION =============== */

    #grant-support {
      padding: 80px 20px;
      background: #000;
      text-align: center;
      color: #fff;
      font-family: 'Century Gothic', sans-serif;
    }

    .grant-wrapper {
      max-width: 900px;
      margin: 0 auto;
    }

    .grant-title {
      font-size: 1.6rem;
      letter-spacing: 1.5px;
      margin-bottom: 40px;
      text-transform: uppercase;
      color: #fff;
    }

    .grant-main {
      margin-bottom: 40px;
    }

    .grant-secondary {
      /*display: flex;*/
      gap: 40px;
      justify-content: center;
      /*align-items: center;*/
      /*flex-wrap: wrap;*/
    }

    .grant-secondary a{
      padding: 50px;
    }

    .grant-divider {
      width: 60%;
      margin: 40px auto;
      border: none;
      border-top: 1px solid #333;
    }

    /* LOGO STYLES — GREYSCALE TO COLOR */
    .grant-logo {
      filter: grayscale(100%);
      opacity: 0.85;
      transition: filter 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
    }

    .grant-logo:hover {
      filter: grayscale(0%);
      opacity: 1;
      transform: scale(1.05);
    }

    /* SIZE RULES */
    .main-grant {
      max-width: 300px;     /* main logo larger */
      width: 70%;
    }

    .small-grant {
      max-width: 100px;     /* smaller supporting logos */
      width: 20%;
    }

    /* MOBILE BREAKPOINTS */
    @media (max-width: 600px) {
      .main-grant {
        width: 70%;
      }
      .small-grant {
        width: 45%;
      }
    }

    /* ---------------- CTA ---------------- */
    .cta {
      /*background: ;*/
      background:  linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 1)), url('images/bkg/The-Etiquette-of-Dying--Ron-Samworth-Melissa-Hubert-flight-embrace.jpg') center center / cover no-repeat;
      text-align: center;
      padding: 100px 10%;
      color: #fff;
    }

    .cta h2 {
      font-size: 2rem;
      margin-bottom: 20px;
      text-transform: uppercase;
    }

    .cta p {
      font-size: 1.1rem;
      margin-bottom: 30px;
    }

    .cta a {
      background: #fff;
      color: #000;
      padding: 15px 40px;
      border-radius: 50px;
      text-decoration: none;
      text-transform: uppercase;
      font-weight: 600;
      transition: background 0.3s ease, color 0.3s ease;
    }

    .cta a:hover {
      background: #000;
      color: #fff;
    }


        /* ---------- Header ---------- */
    .blog-header {
      padding: 120px 10% 80px 10%;
      text-align: center;
      background: #020202;
    }

    .blog-header h1 {
      font-size: 3.2rem;
      letter-spacing: 2px;
      margin-bottom: 15px;
      font-weight: 700;
    }

    .blog-header p {
      color: #ccc;
      font-size: 1.1rem;
      max-width: 700px;
      margin: 0 auto;
    }

    /* ---------- Blog Body ---------- */
    .blog-body {
      padding: 60px 10%;
      max-width: 900px;
      margin: 0 auto;
      color: #ddd;
    }

    .blog-body h2 {
      font-size: 2rem;
      margin: 50px 0 20px 0;
      line-height: 1.3;
      color: #0687f5;
    }

    .blog-body h3 {
      font-size: 1.5rem;
      margin: 40px 0 15px 0;
      color: #fff;
    }

    .blog-body p {
      margin-bottom: 24px;
      font-size: 1.1rem;
    }

    /* ---------- Responsive Images ---------- */
    .blog-body img {
      width: 100%;
      height: auto;
      border-radius: 8px;
      margin: 40px 0;
      display: block;
      box-shadow: 0 0 30px rgba(6,135,245,0.15);
    }

    /* Pull Quote */
    .pull-quote {
      font-size: 1.6rem;
      font-weight: 600;
      line-height: 1.4;
      margin: 50px 0;
      padding-left: 25px;
      border-left: 3px solid #0687f5;
      color: #fff;
    }

    @media (max-width: 768px) {
      .blog-header {
        padding: 90px 8% 60px 8%;
      }
      .blog-header h1 {
        font-size: 2.4rem;
      }
      .blog-body {
        padding: 40px 8%;
      }
    }

    /* ---------------- FOOTER ---------------- */
    footer {
      background: #000;
      text-align: center;
      padding: 40px 10%;
      color: #777;
    }

    .socials {
      margin-bottom: 20px;
    }

    .socials a {
      color: #c1c3c4;
      margin: 0 10px;
      font-size: 1rem;
      text-decoration: none;
      text-transform: uppercase;
      transition: color 0.3s ease;
    }

    .socials a:hover {
      color: #fff;
    }

    footer p {
      font-size: 0.9rem;
    }

    @keyframes fadeInUp {
      from {opacity: 0; transform: translateY(40px);}
      to {opacity: 1; transform: translateY(0);}
    }

    @media (max-width: 768px) {
      .hero h1 { font-size: 3rem; }
      .typography-highlight { grid-template-columns: 1fr; padding: 80px 8%; }
      .film-description, .news, .musicians, .cta { padding: 60px 5%; }
      .credit-item {  width: 100%; }
    }

