/* Homepage CSS */

/*  Variables */
:root {
  --primary: #0075b9;
  --secondary: #ff9000;
  --success: #16a085;
  --danger: #c0392b;
  --warning: #ff6702;
  --info: #2980b9;

  --white: #ffffff;
  --extralight: #f4f4f4;
  --light: #e5e5e5;
  --medium: #596373;
  --dark: #212529;
  --black: #000000;
  --transparent: #ffffff00;
  --gradient: linear-gradient(91.97deg, #af35a4 0.39%, #d42863 99.13%);

  --fontPrimary: "Montserrat", sans-serif;

  --spacingMobile: 20px;
  --spacingTablet: 50px;
  --spacingDesktop: 100px;
}

ul {
  padding: 0;
  list-style: none;
}

#rba {
  margin-bottom: 30px;

  h2 {
    margin-bottom: 5px;
  }

  a:link,
  a:visited {
    display: block;
    padding: 8px 5px;
    background-color: var(--primary);
    color: white;
    text-decoration: none;
    line-height: 1;
    margin-bottom: 5px;
    border-radius: 5px;
  }

  a:hover {
    color: white;
    background-color: var(--secondary);
  }
}

/* Where to go section */
.col-12.col-md-4.col-lg-3 > div:nth-child(2) {
  margin-bottom: 30px;
}

#visitorInfo {
  margin-bottom: 30px;

  #sponsorTextlinks {
    margin: 10px 0;
  }
}

#forums {
  margin-bottom: 30px;

  li {
    margin-bottom: 1rem;
  }

  p {
    margin-left: 40px;
  }

  .topics {
    margin-bottom: 30px;
  }
}

#sponsor {
  margin-bottom: 30px;
}

.news {
  margin-bottom: 30px;
}

#photogallery {
  clear: both;
  margin-bottom: 30px;

  p {
    text-align: center;
  }
}

.flickr-photos {
  display: flex;
  flex-wrap: wrap;
}

.feedphoto {
  flex: 33%;
  max-width: 170px;
  height: 100px;
  overflow: hidden;

  > img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    max-width: 100%;
    transition: 0.2s;

    &:hover {
      transform: scale(1.1);
    }
  }
}

@media screen and (max-width: 1024px) {
  .feedphoto {
    flex: 50%;
  }
}

@media screen and (max-width: 768px) {
  .feedphoto {
    flex: 100%;
  }
}

.flickr {
  color: #3993ff;
}

.flickr-r {
  color: #ff1c92;
}

.flickr:hover,
.flickr-r:hover {
  color: white;
}

/* Recommended Books */

#books {
  clear: both;
  background: var(--dark);
  color: white;

  h2 {
    color: var(--secondary);
  }
}

.books {
  display: block;
}

.book {
  padding: 10px 30px;
  text-align: center;
  max-width: 300px;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .books {
    display: flex;
    justify-content: space-around;
  }

  .book {
    flex: 1 1 33%;
  }
}

/* Birding Tips */
#tips {
  padding: 15px 20px 1px;
  border-radius: 10px;
  margin-bottom: 30px;
  line-height: 1.5;
  border: solid 1px var(--light);
  background: var(--extralight);

  ul li {
    list-style: square;
    margin-left: 15px;
    margin-bottom: 15px;
  }

  strong {
    color: var(--success);
  }
}

#ft {
  margin-top: 0;
  border-top: none;
}
