@font-face {
  font-family: 'Mundial';
  src: url('fonts/Mundial-Black.woff2') format('woff2'),
      url('fonts/Mundial-Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Mundial';
  src: url('fonts/Mundial-BlackItalic.woff2') format('woff2'),
      url('fonts/Mundial-BlackItalic.woff') format('woff');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Mundial';
  src: url('fonts/Mundial-Regular.woff2') format('woff2'),
      url('fonts/Mundial-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

 /* Basic reset and styling */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    html, body {
      width: 100%;
      height: 100%;
      font-family:'Mundial', Arial, sans-serif;
      color: #000;
    }
    body {
      /* display: flex;
      flex-direction: column; */
    }
    img {
      max-width: 100%;
    }
    .contain {
      max-width: 1200px;
      margin: 0 auto;
    }
    .tight-contain {
      max-width: 600px;
      margin: 0 auto;
    }

    /* Typography */
    h1, h2 {
      line-height: .85;
    }
    h1 {
      font-size: 8vw;
      font-style: italic;
      font-weight: 700;
      letter-spacing: -3px;
      margin-bottom: 0;
      font-weight: 700;
    }
    h2 {
      font-size: 32px;
      font-style: italic;
      letter-spacing: 0;
      margin-bottom: 20px;
     
    }
    h3 {
      color: #000;
      font-size: 21px;
      text-transform: uppercase;
      line-height: 1;
      margin-bottom: 12px;
      font-style: italic;
    }
    p {
      margin-bottom: 20px;
      line-height: 1.6;
    }
    a {
      color: #000;
      text-decoration: underline;
    }

    /* Top Navigation */
    header {
      width: 100%;
      background-color: #fff;
      color: #000;
    }
    .nav-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1200px;
      margin: 0 auto;
      padding: 15px 20px;
    }
    .nav-title {
      text-transform: uppercase;
    }
    nav ul {
      list-style: none;
      display: flex;
      gap: 20px;
    }
    nav ul li a {
      color: #000;
      text-decoration: none;
      text-transform: uppercase;
    }
    nav ul li a:hover {
      text-decoration: underline;
    }

    .title-container {
      padding-top: 40px;
      text-align: center;
    }

    /* Full-page hero video container */
    /* .hero-video-container {
      width: 100%;
      aspect-ratio: 16 / 9; 
      position: relative;
    }
    
    .hero-video-container iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: 0;
    } */
    /* Content section below the video */
    .content-section {
      background: #ffffff;
      /* max-width: 1200px; */
      margin: 0 auto;
      padding: 40px 20px;
      text-align: center;
    }

    .black-wrap {
      position: relative;
      background: #000;
    }
    .hero-video-container {
      max-width: 1200px;
      margin: 0 auto;
    }
    .example {
      margin-top: 40px;
    }

    /* Download link styling */
    /* .download-link {
      display: inline-block;
      margin: 20px 0;
      padding: 12px 24px;
      background-color: #000;
      color: #fff;
      text-decoration: none;
      border-radius: 4px;
      font-weight: 600;
    }
    .download-link:hover {
      background-color: #444;
    }
    .even .download-link {
      display: inline-block;
      margin: 20px 0;
      padding: 12px 24px;
      background-color: #fff;
      color: #000;
      text-decoration: none;
      border-radius: 4px;
      font-weight: 600;
      text-transform: uppercase;
    }
    .even .download-link:hover {
      background-color: #bfbaba;
    } */

    .download-link {
      background: none;
      color: #fff;
      display: block;
      padding: 0;
      text-align: right;
      text-decoration: underline;
      font-weight: 600;
      font-style: italic;
    }
    .download-link:hover {
      color: #ccc;
    }

    .dl-link-black {
      background: none;
      color: #000;
      display: inline-block;
      font-size: 17px;
      margin: 40px 0 40px;
      padding: 0;
      text-align: center;
      text-decoration: underline;
      font-weight: 600;
      font-style: italic;
    }
    .dl-link-black:hover {
      background: yellow;
    }

    .download-link:hover {
      color: #ccc;
    }
    

    /* Round icons section */
    .round-icons {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin: 40px 0;
    }
    .round-icon {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      background: #ccc;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      font-size: 14px;
      font-weight: bold;
      color: #000;
      flex-shrink: 0;
    }

    /* Share section */
    .share-video h3 {
      margin-bottom: 10px;
    }


    /* Resource Section */
    .resource-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      padding: 0 20px 40px;
      max-width: 1200px;
      margin: 60px auto 0;
    }
    .resource {
      padding: 0 0 30px 0;
      border-left: 1px solid #fff;
      padding-left: 20px;
      text-align: left;
      transition: border-color 0.3s;
    }
    
    .resource:hover {
      border-color: #ccc;
    }


    .content-section.even {
      background: #000;
      color: #fff;
    }
    .content-section.even h1, 
    .content-section.even h2,
    .content-section.even h3 {
      color: #fff;
    }

    footer {
      background: #000;
      padding-top:60px;
      padding-bottom: 60px;
    }

    footer p {
      color: #fff;
    }
    .legal {
        max-width: 800px;
        padding: 0 20px;
        text-align: center;
        margin: 0 auto;
    }
    .lang {
      text-align: right;
      padding-top: 10px;
      padding-right: 20px;
    }
    .lang a:hover {
      background: yellow;
    }
    /* Responsive: stack into one column below 900px */
    @media (max-width: 900px) {
      .resource-list {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 600px) {
      h1 {
        font-size: 36px;
        letter-spacing: 0;
      }
    }