/* Google Font API imports - found at https://fonts.google.com/ */
@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@300&family=Secular+One&display=swap');


/*****************************************************************************
  Heading, Link, and Misc. Styles
*****************************************************************************/
* {
  box-sizing: border-box;
}


body {
  margin: 0;
}


h1,
h2,
h3,
a {
  font-family: 'Secular One', sans-serif;
  /* color: #FA367E; */
  color: #FA3680;
}


h4,
p {
  font-family: 'Assistant', sans-serif;
}


h1 {
  font-size: 60px;
  margin-bottom: 0;
}


h4 {
  font-size: 18px;
  margin-top: 4px;
}


a {
  text-decoration: none;
}


nav,
nav a,
footer a {
  /* color: hotpink; */
  /* color: #FA367E; */
  color: #4ED6B2;
}


nav a:hover,
footer a:hover {
  text-decoration: underline;
}

.fa-brands{
  /* color: #70E4EA; */
  /* color: #4DD5B1; */
  /* Green Blue: */
  /* color: #4DD5B1; */
  /* Purple */
  /* color: #5D3A98; */
  color: indigo;
}

/****************************************************************************
  Grid styles
****************************************************************************/
#siteGrid {
  display: grid;
  grid-template-columns: 1fr 800px 1fr;
  grid-auto-rows: minmax(100px, auto);
  grid-template-areas:
    "navArea navArea navArea"
    "heroArea heroArea heroArea"
    ". threeCardsArea ."
    ". galleryArea ."
    "carouselArea carouselArea carouselArea"
    ". twoCardsArea ."
    "footerArea footerArea footerArea";
}
nav {
  grid-area: navArea;
}
#hero {
  grid-area: heroArea;
}
#threeCards {
  grid-area: threeCardsArea;
}
#gallery {
  grid-area: galleryArea;
}
#carousel{
  grid-area: carouselArea;
}
#twoCards {
  grid-area: twoCardsArea;
}
footer {
  grid-area: footerArea;
}


/****************************************************************************
  Nav/Footer styles
****************************************************************************/
nav {
  align-items: center;
  display: flex;
  margin: 0 24px;
}


footer {
  display: flex;
  justify-content: center;
}


#navLinks,
.socialMedia {
  display: flex;
  list-style-type: none;
}


#navLinks li,
.socialMedia li {
  padding: 0 4px;
}


nav .socialMedia {
  justify-content: flex-end;
  padding-left: 0;
}


.socialMedia i {
  font-size: 20px;
}


nav,
nav a,
footer a {
  /* color: #5D3A98; */
  /* Green Blue */
  color: #4DD5B1;

}


nav a:hover,
footer a:hover {
  text-decoration: underline;
  /* color: #5D3A98; */
}


nav ul,
nav h2 {
  flex: 1;
  margin: 0;
  padding: 0;
}



/****************************************************************************
  Hero styles
****************************************************************************/
#hero {
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-image: url("../assets/Colorful_Tunnel.jpg");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}


#hero h1,
#hero h4 {
  color: white;
}


/****************************************************************************
  Button styles
****************************************************************************/
#hero a,
.card a {
  background-color: white;
  color: #FA3680;
  border: solid 2px #FA3680;
  border-radius: 24px;
  display: inline-block;
  padding: 8px 16px;
  margin-top: 12px;
  min-width: 150px;
  transition: transform 0.5s;
}


#hero a:hover,
.card a:hover {
  transform: scale(1.1);
}


/****************************************************************************
  Card styles
****************************************************************************/
#threeCards,
#twoCards {
  display: flex;
}


.card {
  border: 2px solid #FA3680;
  /* color: #5D3A98; */
  color: indigo;
  margin: 48px 24px 24px;
  padding: 12px 12px 24px;
  text-align: center;
  box-shadow: 4px 4px 8px 0px grey;
  flex: 1;
}


.card p {
  font-size: 18px;
  min-height: 100px;
}


/****************************************************************************
  Gallery styles
****************************************************************************/
#gallery {
  text-align: center;
}


#gallery1 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}


#gallery1 img {
  width: 100%;
}


#gallery2 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}


#gallery2 img {
  height: 266.6px;
  width: 266.6px;
  object-fit: cover;
}

#gallery3 {
  display: flex;
  flex-wrap: wrap;
}


#gallery3 img {
  height: 200px;
  margin: 12px;
  flex: 1 0 auto;
  object-fit: cover;
}


#gallery4 {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap; max-height: 1200px;
}


#gallery4 img {
  width: 30%;
  margin: 12px;
}


#gallery5 {
  columns: 3 auto; column-gap: 24px;
}


#gallery5 img {
  width: 100%;
  margin-bottom: 24px;
}

#h2gallery{
  margin-top: 24px;
}
/****************************************************************************
  Carousel Styles
****************************************************************************/
#carousel{
  text-align: center;
}

#carousel img{
  width: 300px;
  margin: 0 auto;
}

/****************************************************************************
  Media Query - Mobile Breakpoint
****************************************************************************/
@media screen and (max-width: 800px) {
  #siteGrid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "navArea"
      "heroArea"
      "threeCardsArea"
      "galleryArea"
      "carouselArea"
      "twoCardsArea"
      "footerArea";
  }
  nav {
    flex-direction: column;
  }

  #carousel img {
    height: auto;
    width: 100%;
    margin: 0 auto;
  }

  #threeCards,
  #twoCards {
    flex-direction: column;
  }

  #gallery1,
  #gallery2 {
    grid-template-columns: 1fr;
  }

  #gallery2 img {
    width: 100%;
    height: auto;
  }

  #gallery4 img {
    width: 45%;
  }

  #gallery5 {
    columns: 2 auto;
  }

  #hero {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url("../assets/Colorful_Tunnel_Vertical.jpg");
  }

}
