@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Lato:wght@300;400&display=swap');
 
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
    body {
      font-family: 'Lato', sans-serif;
      background: #f5f0eb;
      min-height: 100dvh; 
      display: flex;
      flex-direction: column;
      margin: 0;
    }
 
    /* ── HEADER ── */
    .site-header {
      display: flex;
      flex-direction: row;
      align-items: center;
      width: 100%;
      /* Grows naturally with images up to 25vh, then locks.
         Change 25vh to 33vh if you prefer the "third" option. */
      max-height: 35vh;
      background: #1a1a2e;
      overflow: hidden;
    }
 
    /* ── IMAGE WRAPPERS ── */
    .header-img-wrap {
      flex: 1 1 0;
      min-width: 0;
      /* Match the header's max-height so the wrapper never taller than it */
      max-height: 30vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;         /* clips nothing — just keeps layout clean */
    }
 
    .header-img {
      /* Never wider than the wrapper, never taller than the capped header.
         Both constraints active at once = image shrinks to fit whichever
         limit it hits first, preserving aspect ratio. */
      max-width: 100%;
      max-height: 35vh;
      width: auto;
      height: auto;
      display: block;
      object-fit: contain;
      object-position: center;
      border-radius: 2px
    }

    #DutchMill{
      margin-right: auto;
    }

    #Stamp{
      margin-left: auto;
    }
 
    /* ── CENTER TEXT ── */
    .header-center {
      flex: 0 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: clamp(10px, 2vw, 36px) clamp(14px, 2.5vw, 48px);
      text-align: center;
      white-space: nowrap;
      gap: 0.3em;
    }
 
    .header-center .eyebrow {
      font-family: 'Lato', sans-serif;
      font-weight: 300;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      font-size: clamp(8px, 0.9vw, 13px);
      color: #c9a96e;
    }
 
    .header-center h1 {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-size: clamp(16px, 2.5vw, 48px);
      color: #f5f0eb;
      line-height: 1.1;
    }
 
    .header-center .tagline {
      font-family: 'Lato', sans-serif;
      font-weight: 300;
      font-size: clamp(8px, 0.9vw, 13px);
      color: #a09080;
      letter-spacing: 0.12em;
    }
 
    /* ── MOBILE: stack vertically below 500px ── */
    @media (max-width: 500px) {
      .site-header {
        flex-direction: column;
        max-height: none;
      }
      .header-img-wrap {
        width: 100%;
        max-height: none;
        flex: none;
      }
      .header-img {
        max-height: none;
      }
      .header-center {
        white-space: normal;
        padding: 20px 16px;
      }
    }

    .video {
      margin: 2%;
      width: 100%;
      max-width: 85vh;
      
    }

    .video iframe {
      width: 100%;
      aspect-ratio: 16 / 9;
      border-radius: 4px;
      box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
    }

  .bio {
    max-width: 800px;
    margin: 1% auto;
    font-family: Georgia, serif;
    line-height: 1.6;
    font-size: 18px;
  }

  .bio-img {
    float: left;
    width: 40vw;
    max-width: 40%;
    margin: 0 2% .5% 0;
    border-radius: 4%;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
  }

  /* ── ABOUT SECTION LAYOUT ── */

.about {
  display: flex;
  flex-direction: column; /* Mobile default */
  align-items: center;
  padding: 1vh;
}

@media (min-width: 500px) {
  .bio-paragraph{
    font-size: 23px;
  }
}

@media (min-width: 1024px) {
  .about {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 4%;
    padding: 2% 5%;
  }

  .bio {
    flex: 1;
    margin: 0;
  }
  
  

  .video {
    align-self: center;
    flex: 1;
    margin: 0;
    max-width: 85vh;
  }
}



.site-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  min-height: 20vh;
  background: #1a1a2e;
  overflow: hidden;
}

.footer-contact{
  margin: auto;
}

.icons{
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 2.5vh;
}

.youtube img{
  padding-top: 1vh;
  height: 8vh;
  width: auto;
}

.donate-button{
  display: inline-block;
  background-color: white;
  color: black;
  font-family: Arial, sans-serif;
  font-size: 5vh;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  box-shadow: 0px 4px 8px;
  padding: 1vh;
  margin: auto;
}

.facebook img {
  height: 7vh;
  width: auto;
}

.email{
  font-size: 18px;
  margin-left: 2vw;
  color: white;
  text-decoration: none;
}

@media (min-width: 1024px) {
  .email{
    font-size: 20px;
  }

  .facebook img{
    margin-left: 10%;
  }
}
