body {
  font-family: "Nunito", sans-serif;

  font-size: 1rem;
}
.iconParksHeader {
  color: #fefef8;
  font-size: 2rem;
  font-weight: bolder;
}
.iconParksText {
  color: #fefef8;
  font-size: 1.5rem;
  margin-top: 0.5rem;
}

body {
  background-color: #fefef8;
}

/* Navbar */

.nav-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.2rem;
  margin-top: 1rem;
}
.nav-logo {
  width: 200px;
}
.nav-logo {
  height: auto;
}
.nav-middle-links {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.nav-middle-links a {
  margin-top: 0.5rem;
  font-weight: 700;
  text-decoration: none;
  color: #9b5933;
  transition: color 0.3s ease;
}

.links:hover,
a:hover {
  color: #e2aa60;
}

/* Hamburger */

.nav-toggle {
  cursor: pointer;
  border: 0;
  width: 2.2em;
  height: 2.2em;
  padding: 0em;
  border-radius: 50%;
  background: #e2aa60;
  color: #fafafa;
  transition: opacity 250ms ease;
  margin-top: 0.6rem;
  margin-left: 0.5rem;
  position: absolute;
  right: 25px;
  top: 10px;
}

.nav-toggle:focus,
.nav-toggle:hover {
  opacity: 0.75;
}

.hamburger {
  width: 50%;
  position: relative;
}
.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  margin: 0 auto;
  height: 3px;
  background: white;
  border-radius: 30px;
}

.hamburger::before,
.hamburger::after {
  content: "";
  width: 100%;
}

.hamburger::before {
  transform: translateY(-6px);
}

.hamburger::after {
  transform: translateY(3px);
}

.nav {
  /* visibility: hidden; */
  display: none;
  height: 0;
  position: absolute;
}

.nav--visible {
  /* visibility: visible; */
  display: flex;
  height: auto;
  position: relative;
}

/* Header Section */
h1 {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: 3rem;
  color: #743100;
}

.heroText {
  margin: 3rem 0;
}
.heroPTag {
  font-size: 1.5rem;
  font-weight: 600;
  color: #743100;
  margin-top: 1rem;
}

/* Hero Section */

.heroText {
  text-align: center;
}
.heroImgContainer {
  width: 100%;
  /* padding: 0.5rem; */
  height: 450px;
}
.heroImg {
  width: 100%;
  max-width: 1000px;
  height: 100%;
  border-radius: 1rem;
}

/* Icon Section: Header */
.nationalParksContainer,
.discoverContainer {
  background-color: #fafafa;
  border-radius: 1rem;
  padding: 1rem;
  margin: 3.5rem 0;
}

.nationalParksHeader {
  background-color: #6a775f;
  padding: 1rem;
  border-radius: 1.8rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  font-size: 1rem;
}
.exploreBtn {
  width: fit-content;
  height: fit-content;
  padding: 1rem 3rem;
  border-radius: 1.875rem;
  background-color: #fefef8;
  border: none;
  cursor: pointer;
  margin: 2rem 1rem;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  color: #545700;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease 0s;
}
.exploreBtn:hover {
  background-color: #ebebeb;
  transform: translateY(-7px);
}
.buttonLink {
  text-decoration: none;
  color: #545700;
}
.buttonLink:hover {
  color: #545700;
}

/* Icon Section: Icons */

.iconLinksContainer {
  background-color: #fafafa;
  border-radius: 1rem;
  padding: 1rem;

  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 2rem 0;
}

.iconContainer {
  width: 28%;
  text-align: center;
  font-size: 0.7rem;
  padding: 0.5rem;
  margin: 0.3rem 0;
  transition: 0.5s;
  cursor: pointer;
}

.iconContainer:hover {
  background-color: rgba(204, 204, 204, 0.568);
  border-radius: 30px;
}
.iconContainer img {
  width: 48px;
  height: 48px;
  background-color: #c4c4c4;
  border-radius: 8px;
  margin: 0 auto;
}
.iconContainer p {
  margin-top: 1rem;
  font-size: 0.89rem;
}
/* Cards */
.activityCard {
  border: 2px solid darkmagenta;
  background: #9b5933;
  border: none;
  box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  text-align: center;
  margin: 0 auto;
  width: 245px;
  margin-top: 1.5rem;
  transition: transform 0.3s;
}
.activityCard:hover {
  transform: translateY(5px);
  box-shadow: 2px 2px 26px 0px rgba(0, 0, 0, 0.3);
}

.cardImgContainer {
  width: 100%;
}
.cardImg {
  min-height: 100%;
  height: 275px;
  width: 100%;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.cardContent {
  color: #fafafa;
  padding: 0.7rem 1rem;
}
.cardContent h4 {
  font-family: "Playfair Display", serif;
  font-weight: bolder;
  font-size: 1.2rem;
}
.cardBtn {
  background: #fefef8;
  border-radius: 20px;
  border: none;
  color: #545700;
  padding: 10px;
  margin-top: 0.5rem;
  width: 50%;
  font-size: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease 0s;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
  background: linear-gradient(#743100, #8e3a24);
  color: #fafafa;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0rem;
}
footer a {
  color: #fefef8;
}

.footerLogo {
  width: 200px;
  margin-bottom: 1.5rem;
}

/* Responsive */

@media (min-width: 700px) {
  /* Navbar */
  .nav-toggle {
    display: none;
  }

  .nav {
    visibility: visible;
    height: auto;
  }
  .nav-container {
    flex-direction: row;
    justify-content: space-between;
    padding: 1.3rem;
  }
  .nav-middle-links {
    display: flex;
    flex-direction: row;
    position: relative;
  }
  .nav-middle-links a {
    display: flex;
    flex-direction: row;

    margin: 0;
    margin-left: 2rem;
  }
}

@media (min-width: 700px) {
  body {
    margin: 0 auto;
  }
}
.wrapper {
  max-width: 1100px;
  margin: 0 auto;
}
.heroImgContainer img {
  margin: 0 auto;
}

@media (min-width: 900px) {
  .nationalParksContainer {
    display: flex;
    justify-content: center;
  }
  .nationalParksHeader {
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .iconLinksContainer {
    width: 60%;
    margin: 0;
    margin-left: 1rem;
  }
  .iconContainer {
    display: flex;
    align-items: center;
    padding: 0;
  }
  .iconContainer p {
    margin-top: 0;
  }
  /* Discover section */

  .discoverContainer {
    display: flex;
    flex-direction: column;
  }
  .discoverCardContainer {
    display: flex;
  }
}
