/* ===================================================================
   For: Web Dev PNW
   Author: Samantha
   Date Modified: 2025-08-27
   =================================================================== */
/* root variables & reset */
:root {
    --clr-bg: #eee;
    --clr-text: #222222;
    --clr-accent: #324d32;
    --clr-secondary: #476c47;
    --clr-warning: #BF94E4;
    --transition: 0.25s ease-out;
  }
  
  *,
  *::before,
  *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* base typography & layout */
  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);
  }

  /* need to fix pop up, and make imgs not download-able */
  /* img {
    pointer-events: none; 
  } */

  .flex {
    display: flex;
  }

  /* .full-height {
    height: 100vh;
  } */
  
  /* utility container */
  .container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .component {
    background-color: var(--clr-bg);
    text-align: center;
    padding: 10px 15px;
    margin-bottom: 25vh;
    border: 2px solid #111;
    box-shadow: 5px 5px 0px var(--clr-accent);
  }

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

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

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

  .title {
    padding-left: 15px;
    font-size: 3rem;
    letter-spacing: 2px;
    line-height: 0.8;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
  }

  .sub-title {
    padding-left: 15px;
    /* font-size: 3rem; */
    letter-spacing: 2px;
  }
  
  /* hero section */
  .hero {
    position: relative;
    padding: 8rem 0 6rem;
    overflow: hidden;
    background: var(--clr-accent);
  }
  
  /* .hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -25%;
    width: 150vw;
    height: 150vh;
    background: var(--clr-accent);
    transform: rotate(30deg);
    clip-path: polygon(0 0, 100% 0, 100% 60%, 0 40%);
    z-index: -1;
  } */
  
  .hero-content {
    max-width: 570px;
    margin: 0 auto;
    text-align: center;
  }
  
  .hero-title {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.1;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
    color: #fefefe;
    margin-bottom: 2rem;
  }
  
  /* callout box */
  /* .callout {
    position: absolute;
    left: 50%;
    bottom: -1.5rem;
    transform: translateX(-50%);
    background: #fff;
    padding: 1rem 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 8px;
    font-weight: 500;
    max-width: 90%;
  } */
  
.section-title {
  font-size: 2rem;;
}

  .section-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }
  
  .section h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
  }
  
  .section p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  /* gallery grid */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
  }
  
  .gallery-grid img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    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 section */
  .accessibility {
    height: 100vh;
    position: relative;
    padding: 2rem;
    text-align: center;
    padding-top: 20vh;
  }
  
  /* sale section */
  .sale {
    min-height: 100vh;
    position: relative;
    padding: 2rem;
    border: 3px solid var(--clr-accent);
    border-radius: 4px;
  }

  .sale-title {
    font-size: 2rem;
    color: var(--clr-warning);
  }
  
  .sale .section-bg {
    background: #222222;
    clip-path: polygon(0 0, 100% 0, 100% 30%, 0 50%);
    opacity: 0.15;
  }
  
  .sale .section-content {
    color: var(--clr-text);
  }
  
  .sale-features {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
  }
  
  .sale-features li {
    padding-left: 1.25em;
    position: relative;
  }
  
  .sale-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--clr-accent);
  }
  
  .sale-price {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
  }
  
  .sale-per {
    font-size: 1rem;
    color: var(--clr-text);
  }
  
  .sale-urgency {
    font-size: 0.9rem;
    color: var(--clr-warning);
    margin-top: 1rem;
  }
  
  /* lightbox & footer */
  .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;
  }
  
  .site-footer {
    /* text-align: center; */
    padding: 2rem;
    background: var(--clr-accent);
    color: #fff;
    justify-content: space-between;
  }




  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);
  }