/* ===================================================================
   For: Web Dev PNW
   Author: Samantha
   Date Modified: 2025-09-14
   =================================================================== */


/* root variables & reset */
  :root {
    --clr-bg: #1a221e;
    --clr-text: #fff;
    --clr-accent: rgb(173,213,154); 
    /* above is #add59a */
    --clr-accent8: rgba(173,213,154,0.8);
    --clr-warning: rgb(208, 90, 48);
    --transition: 0.25s ease-out;
  }
  
  *,
  *::before,
  *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  /* GENERAL */
  html {
    scroll-behavior: smooth;
    font-size: 16px;
    background: var(--clr-bg);
    color: var(--clr-text);
  }
  
  body {
    font-family: 'Work Sans', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--clr-accent);
  }

  .flex {
    display: flex;
  }

  .container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  section:not(:first-of-type) {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
  }
  
  section.visible {
    opacity: 1;
    transform: translateY(0);
  }

  section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .section p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .big-space {
    padding-bottom: 20vh !important;
  }

  .small-space {
    padding-bottom: 5vh;
  }
  
  /* BUTTONS */
  .btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--clr-accent8);
    color: #fff;
    border-radius: 4px;
    transition: background var(--transition), transform var(--transition);
  }
  
  .btn:hover {
    background: var(--clr-accent);
    transform: translateY(-1px);
  }
  
  .site-header {
    top: 0;
    background: transparent;
    padding: 1rem 0;
  }

  .logo {
    height: 4rem;
    margin: auto 0 !important;
  }

  
  /* HERO */
  #hero {
    position: relative;
    overflow: hidden;
    justify-content: left;
  }

  #video {
    opacity: 0.2;
    padding: 0;
    margin: 0;
    min-width: 100vw !important;
    height: calc(100vh - 104px);
  }

  /* @media screen and (min-width: 1280px) { */
  @media screen and (min-width: 666px) {

    hr {
      display: none !important;
    }

    #video {
      display: none;
    }

    .hero-content {
      height: 100vh !important;
    }

    .hero-title {
      font-size: 5rem !important;
      position: relative !important;
      text-align: center !important;
      top: 15vh !important;
      left: 0 !important;
    }

    .hero-subtitle {
      position: relative !important;
      top: 25vh !important;
      left: 0 !important;
      text-align: center !important;
      font-size: 2rem !important;
    }

    .accessibility {
      height: 100vh;
      position: relative;
      padding: 2rem;
      text-align: center;
    }


    /* ICON LIST */
    .icon-list-item {
      display: flex;
      flex-direction: row;
      text-align: center;
    }

    .icon-list-item img {
      height: 100px !important;
      max-height: 200px !important;
      width: auto;
    }

    footer {
      font-size: 1rem !important;
    }
  }
  
  .hero-content {
    text-align: center;
    position: relative;
  }
  
  .hero-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.1;
    position: absolute;
    top: 100px;
    left: 35px;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    color: #fefefe;
    margin-bottom: 2rem;
    padding-right: 35px;
    position: absolute;
    top: 230px;
    left: 35px;
    text-align: left;
  }
  

  /* GALLERY */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
  }
  
  .gallery-grid img {
    max-width: 100%;
    max-height: 300px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border: 1px solid blanchedalmond;
    transition: transform var(--transition), box-shadow var(--transition);
  }
  
  .gallery-grid img:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  }

  /* ACCESSIBILITY */
  .accessibility {
    height: 100vh;
    position: relative;
    padding: 2rem;
    text-align: center;
    padding-top: 20vh;
  }

  .accessibility p,
  .icon-list-item {
    font-size: 1.5rem;
  }


  /* ICON LIST */
  .icon-list-item {
    display: flex;
    flex-direction: row;
    text-align: center;
  }

  .icon-list-item img {
    height: 50px;
    max-height: 80px;
    width: auto;
  }
  
  
  /* LIGHTBOX */
  .lightbox {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
  }

  .lightbox.visible {
    display: flex;
  }

  .lightbox-img {
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
  }

  .lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
  }
  

  /* FOOTER */
  .site-footer {
    padding: 2rem;
    /* background: var(--clr-warning); */
    color: #fff;
    font-size: 0.5rem;
    justify-content: space-between;
  }




  