body {
  font-family: Arial, sans-serif;
  margin: 0;
  color: #000;
}

hr {
  margin-top: 20px;
  margin-bottom: 20px;
}

.main-content {
  background: white;
  margin: auto;
  width: 838px;
}

.header-wrapper {
  display: flex;
  flex-direction: column;
}

nav {
  order: 1;
}

.hero {
  position: relative;
  text-align: center;
  order: 0;

  img {
    width: 838px;
  }
}

.hero h1 {
  position: absolute;
  bottom: 10px;
  width: 100%;
  font-size: 2.5em;
  color: white;
  text-shadow: 2px 2px 5px black;
}

.menu-toggle {
  display: none;
}

.nav-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin: 0;
}

.nav-links a {
  display: block;
  color: black;
  text-decoration: none;
  padding: 0.75em 3em 0.75em 0;
  font-weight: bold;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 1em;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: white;
  margin: 4px 0;
  border-radius: 2px;
}

.announcement {
  text-align: center;
  margin: 1em;
  font-weight: bold;
}

.announcement a {
  color: #0000cc;
  text-decoration: underline;
}

.dog-profile {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
}

.dog-image {
  width: 433px;
}

.dog-image img {
  height: auto;
}

.dog-info {
  text-align: center;

  img {
    width: 345px;
    height: 91px;
  }
}

.dog-info h3 {
  font-size: 1.3rem;
  font-weight: normal;
  margin-bottom: 0.5rem;
}

.dog-info em {
  font-weight: bold;
  font-style: italic;
}

.dog-info hr {
  width: 60%;
  margin: 1rem auto;
  border: 0;
  border-top: 1px solid #ccc;
}

.page-content {
  padding: 10px 40px;
}

.kipperskids-list {
  display: flex;

  .image {
    display: flex;
    align-items: center;
    justify-content: center;
    /* horizontally center */
  }

  .content {
    padding-left: 5px;
  }
}

.family-list {
  display: flex;

  .image {
    display: flex;
    align-items: center;
    justify-content: center;
    /* horizontally center */
  }

  .content {
    padding-left: 5px;
  }
}

.litter-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
}

.kipper-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.item {
  padding: 1rem;
}

.item {
  flex: 1 1 50%;
  /* takes 50% width, can shrink/grow */
  box-sizing: border-box;
}

.litter-image {
  padding: 30px 0;
}

.align-left {
  text-align: left;
  padding: 30px 0;
}

.kipper-banner {
  width: 461px;
  height: 60px
}

.kipper-profile {
  width: 386px;
  height: 314px;
}

.kipper-nameplate {
  width: 120px;
  height: 43px;
}

.name-image {
  width: 492px;
  height: 108px;
}

.main-image {
  width: 570px;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .main-content {
    background: white;
    margin: auto;
    width: 100%;
  }

  .hamburger {
    display: flex;

    span {
      height: 3px;
      width: 25px;
      background: black;
      /* changed from white to black */
      margin: 4px 0;
      border-radius: 2px;
    }
  }

  .hero {
    position: relative;
    text-align: center;
    order: 0;

    img {
      width: 100%;
    }
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
  }

  .menu-toggle:checked+.hamburger+.nav-links {
    display: flex;
  }

  .nav-links a {
    color: black;
    text-decoration: none;
    padding: 0.75em 0;
  }

  .dog-profile {
    display: block;
    text-align: center;
  }

  .dog-image {
    width: 100%;

    img {
      width: 100%;
    }
  }

  .dog-image,
  .dog-info {
    flex: 1;

    img {
      width: 100%;
    }
  }

  .dog-info h3 {
    font-size: 1.5rem;
  }

  .dog-info {
    padding-left: 2rem;
  }

  .header-wrapper {
    flex-direction: column;
  }

  .hero {
    order: 2;
    /* Move hero below nav on mobile */
  }

  nav {
    order: 1;
  }

  .hero h1 {
    font-size: 1.8em;
  }

  .page-content {
    padding: 10px 10px;
  }

  .kipperskids-list {
    display: block;
    padding: 20px 0;

    .image {
      display: flex;
      align-items: center;
      justify-content: center;
      /* horizontally center */
    }

    .content {
      padding-left: 5px;
    }
  }

  .family-list {
    display: block;
    padding: 20px 0;

    .image {
      display: flex;
      align-items: center;
      justify-content: center;
      /* horizontally center */
    }

    .content {
      padding-left: 5px;
    }
  }

  .litter-list {
    grid-template-columns: 1fr;
  }

  .litter-image {
    padding: 20px 0;

    img {
      width: 100%;
    }
  }

  .kipper-list {
    grid-template-columns: repeat(1, 1fr);
    /* default: 1 column */
  }

  .kipper-banner {
    width: 100%;
  }

  .kipper-profile {
    width: 100%;
  }

  .kipper-nameplate {
    width: 100%;
  }

  .name-image {
    width: 100%;
  }

  .main-image {
    width: 100%;
  }
}

.sportmollylitter-item {
  /* display: flex; */
  align-items: center;
  justify-content: center;
  width: 100%;
}
