/*general*/
section {
  margin: 10px 10px 100px;

  @media (max-width: 430px) {
    margin: 10px 10px 50px;
  }
}

@keyframes shadowPulse {
  33% {
    background: #FFF;
    box-shadow: -36px 0 var(--accent-red-color), 36px 0 #FFF;
  }
  66% {
    background: var(--accent-red-color);
    box-shadow: -36px 0 #FFF, 36px 0 #FFF;
  }
  100% {
    background: #FFF;
    box-shadow: -36px 0 #FFF, 36px 0 var(--accent-red-color);
  }
}

.video-container {
  max-width: 360px;
  margin-left: 60px;

  @media (max-width: 1024px) {
    max-width: 300px;
    margin: 50px auto 0;
    /*display: none;*/
  }

  h2 {
    font-family: "Patua One", serif;
    font-weight: 100;
    font-size: 1.6em;
    text-transform: uppercase;
  }

  video {
    width: 100%;
    height: auto;
  }
}

section.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;

  .article-preview-container {
    position: relative;
    max-width: 760px;
    width: 100%;
    height: min(88vw, 670px);
    background-repeat: no-repeat;
    background-position: center 0;
    background-size: cover;
    display: block;

    .section-title {
      max-width: 45%;
    }

    .button-container {
      position: absolute;
      right: 0;
      bottom: 0;
      transform: translateY(100%);
    }
  }
}

section.follow-us {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;

  ul {
    max-width: 1100px;
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;

    li {
      margin: 15px;

      a {
        text-decoration: none;
        display: flex;
        align-items: center;

        img {
          width: min(9vw, 45px);
        }

        div {
          padding: 10px;
          font-family: Antonio, serif;
          font-weight: 100;
          font-size: min(9vw, 28px);
          color: var(--contrast-color);
        }
      }
    }
  }
}

section.category-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;

  .section-title {
    width: 100%;
    text-align: right;
  }

  .section-container {
    margin-bottom: 75px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;

    .article-preview {
      position: relative;
      max-width: 760px;
      width: 100%;
      height: min(88vw, 670px);
      margin-bottom: 20px;
      background-repeat: no-repeat;
      background-position: center 0;
      background-size: cover;
      display: block;

      h2 {
        max-width: 45%;
        font-family: "Patua One", serif;
        font-weight: 100;
        font-size: min(4vw, 30px);
        text-transform: uppercase;
      }
    }

    .button-container {
      position: absolute;
      right: 0;
      bottom: 0;
      transform: translateY(100%);
    }
  }

  &.men-section {
  }

  &.women-section {
    .caption {
      h4 {
        position: relative;
        max-width: 560px;
        padding: 20px;
        border: solid 2px var(--accent-red-color);
        background-color: white;
      }

      p {
        position: absolute;
        max-width: 540px;
        bottom: 0;
        right: 0;
        left: auto;
        padding: 20px;
        background-color: white;
      }
    }
  }

  &.pets-section {
  }
}
