/* Reset & Base Styles */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
  }
  
  body {
    display: flex;
    flex-direction: column;
    font-family: "times-new-roman", sans-serif;
    line-height: 1.5;
  }
  
  main {
    flex: 1; /* pushes footer down */
  }
  
  h1, h2 {
    padding: 30px;
    font-weight: 700;
  }
  
  p {
    font-weight: 400;
    font-size: 18px;
  }
  
  hr {
    border-top: 10px dashed #e0A800;
    margin: 20px 0;
  }
  
  /* ---------- NAV ---------- */
  nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #008C9E;
    color: #fff;
    padding: 10px 20px;
    text-align: center;
  }
  
  .navLeft {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .navName {
    font-size: 2em;
    font-family: hobeaux-rococeaux-background, sans-serif;
    font-weight: 400;
  }
  
  .navRight ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .navRight a {
    text-decoration: none;
    color: #fff;
    font-size: 1.2em;
  }
  
  a:hover {
    color: #e0A800;
  }
  
  /* ---------- IMAGES ---------- */
  .img {
    max-width: 25px;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* ---------- GALLERY ---------- */
  .gallery {
    column-count: 1;
    column-gap: 10px;
    margin: 0 auto;
    padding: 10px;
  }
  
  .gallery img {
    width: 100%;
    margin-bottom: 10px;
    break-inside: avoid;
  }
  
  /* ---------- HOME PARAGRAPH ---------- */
  .storyParagraph {
      margin: 20px;
      padding: 20px;
  }
  .storyHeader {
    text-align: center;
  }

  /* ---------- ABOUT PARAGRAPH ---------- */
  .aboutSection {
    display: flex;
    flex-direction: column; /* default = stacked on mobile */
    align-items: center;
    gap: 20px;
  }

  .aboutParagraph {
    margin: 0;
    padding: 20px;
  }

  /* ---------- WORK PARAGRAPH ---------- */
  .workParagraph {
    margin: 20px;
    padding: 20px;
  }
  .workH1 {
      text-align: center;
  }
  
  
  .image-link {
      display: inline-block;
      position: relative;
  }
  .image- link img {
      width: 100%;
      height: auto;
      display: block;
  }

  /* ---------- FOOTER ---------- */
  footer {
    text-align: center;
    background-color: #C04E21;
    color: beige;
    padding: 20px;
  }
  
  .footerLinks {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 15px;
    font-size: 1.5em;
  }
  
  .footerLinks a {
    color: #e0A800;
    text-decoration: none;
    font-weight: bold;
  }
  
  .footerLinks a:hover {
    color: #008C9E;
  }
  
  /* ---------- MEDIA QUERIES ---------- */
  @media screen and (min-width: 550px) {
  
    .img {
      max-width: 50px;
      padding: 10px;
    }
  
    .gallery {
      column-count: 2;
    }
    
  @media screen and (min-width: 768px) {
    .aboutSection {
      flex-direction: row; /* ✅ image and paragraph side by side */
      align-items: flex-start;
    }
  
    .aboutParagraph {
      max-width: 600px; /* Optional: limit text width */
    }
  
    .vOchoa {
      max-width: 50%; /* Image shrinks nicely */
    }

    nav {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
      }
    
      .navRight ul {
        flex-direction: row;
        gap: 20px;
        margin: 0;
      }

    .gallery {
      column-count: 3;
    }
  
    .section1 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
  }
  
  @media screen and (min-width: 860px) {
    .gallery {
      column-count: 4;
    }
  
    #paper {
      max-width: 960px;
      margin: 0 auto;
    }
  }
  