/*********************************************************
                     Google Fonts
*********************************************************/
@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&display=swap");
/*********************************************************
                         ROOT
*********************************************************/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

body {
  font-size: 16px;
}

h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 600;
  letter-spacing: 0.03rem;
  margin-bottom: 2rem;
}

h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.3rem, 2vw, 1.9rem);
  font-weight: 400;
  letter-spacing: 0.03rem;
}

h3 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 300;
  letter-spacing: 0.03rem;
}

p {
  font-family: "Fraunces", serif;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.03rem;
  line-height: 32px;
}

section {
  min-height: 100vh;
  padding: 6rem;
}

a {
  text-decoration: none;
}

ul li {
  list-style: none;
}

/****************************************************
                    Header Style
****************************************************/
header {
  background-color: #875C35;
  padding: 1rem 2em;
  display: flex;
  justify-content: center;
  /****************************************************
                  Header for Mobile
  ****************************************************/
}
header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
header ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  margin: 0;
  width: 100%;
}
header li {
  display: flex;
  align-items: center;
  justify-content: center;
}
header .nav-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8em;
  text-align: center;
}
header .nav-links a {
  color: #FEFAE0;
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.03rem;
  transition: all 0.4s ease-in-out;
}
header .nav-links a img {
  max-height: 50px;
  margin: 0;
  padding: 0;
}
header .nav-links a:hover {
  transform: scale(1.05);
}
header i {
  color: #FEFAE0;
  font-size: 2rem;
  transition: all 0.4s ease-in-out;
}
header i:hover {
  transform: scale(1.05);
}
header .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
}
header .hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 20;
}
header .hamburger span {
  display: block;
  width: 100%;
  height: 4px;
  background-color: #FEFAE0;
  border-radius: 2px;
}
header .hamburger nav {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #875C35;
  width: 100%;
  height: 100vh;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 9999;
}
header .hamburger nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
header .hamburger nav li {
  padding: 1rem;
  text-align: center;
}
header .hamburger nav a {
  font-size: 1.5rem;
  font-weight: 300;
  color: #FEFAE0;
  text-decoration: none;
}

/****************************************************
                    Footer Style
****************************************************/
footer {
  min-height: 50vh;
  background-color: #FEFAE0;
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 4rem;
  position: relative;
}
footer nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
footer nav a {
  color: #553922;
}
footer nav a i {
  font-size: 2rem;
  position: absolute;
  top: -10%;
  transform: translateX(-50%);
  animation: arrow-up 1.5s infinite ease-in-out;
  cursor: pointer;
}
footer nav .nav-links > * {
  margin: 1rem;
}
footer nav .nav-links > div {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
footer nav .nav-links > div a {
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.03rem;
  transition: all 0.4s ease-in-out;
}
footer nav .nav-links a:hover {
  color: #606C38;
  cursor: pointer;
  transform: scale(1.05);
}
footer nav button {
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 3%;
  color: #FEFAE0;
  background-color: #283618;
  padding: 1rem 3.5rem;
  border: none;
  border-radius: 100px;
  margin-top: 0.5rem;
  transition: all 0.4s ease-in-out;
}
footer nav button:hover {
  background-color: #FEFAE0;
  border: 0.5px solid #283618;
  color: #283618;
  cursor: pointer;
  transform: scale(1.05);
}
footer nav p.copyright {
  font-family: "Fraunces", serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.03rem;
  line-height: 32px;
  color: #553922;
  position: fixed;
  bottom: 0;
}
footer nav img.footer-mockup {
  width: 20%;
  bottom: 0;
  right: 0;
}

/****************************************************
                  Home Style
****************************************************/
section.hp-hero {
  background-image: url(../images/header_img.jpg);
  background-size: cover;
  position: relative;
  padding: 0;
}
section.hp-hero header {
  background-color: transparent;
}
section.hp-hero h1, section.hp-hero h2 {
  color: #FEFAE0;
}
section.hp-hero h1 {
  margin-bottom: 0;
}
section.hp-hero .hp-hero-titles {
  width: 30%;
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: 0;
  margin: 5em 7em;
}
section.hp-hero .hp-hero-titles > * {
  margin-top: 1em;
}
section.hp-hero .hp-hero-titles a {
  font-size: 1.4rem;
}
section.hp-hero .hp-hero-titles button {
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 3%;
  color: #FEFAE0;
  background-color: #283618;
  padding: 1rem 3.5rem;
  border: none;
  border-radius: 100px;
  margin-top: 0.5rem;
  transition: all 0.4s ease-in-out;
}
section.hp-hero .hp-hero-titles button:hover {
  background-color: #FEFAE0;
  border: 1px solid #283618;
  color: #283618;
  cursor: pointer;
  transform: scale(1.05);
}
section.hp-hero .scroll i {
  font-size: 2rem;
  color: #FEFAE0;
  position: absolute;
  right: 0;
  bottom: 0;
  margin: 3rem;
  margin-right: 5rem;
  animation: arrow-bounce 1.5s infinite ease-in-out;
  cursor: pointer;
}

section.hp-adopt {
  background-color: #606C38;
}
section.hp-adopt .adopt-cards {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}
section.hp-adopt h1 {
  color: #FEFAE0;
  text-align: center;
}
section.hp-adopt h2 {
  color: #FEFAE0;
}
section.hp-adopt .adopt-card-sm {
  background-size: cover;
  border-radius: 100px;
  width: 500px;
  height: 630px;
  max-width: 100%;
  position: relative;
}
section.hp-adopt .adopt-card-sm.cat1 {
  background-image: url(../images/adopt_cat_img1.jpg);
  box-shadow: rgba(0, 0, 0, 0.3) -13px 1px;
}
section.hp-adopt .adopt-card-sm.cat2 {
  background-image: url(../images/adopt_cat_img2.jpg);
  box-shadow: rgba(0, 0, 0, 0.3) -13px 1px;
}
section.hp-adopt .adopt-card-sm.cat3 {
  background-image: url(../images/adopt_cat_img3.jpg);
  box-shadow: rgba(0, 0, 0, 0.3) -13px 1px;
}
section.hp-adopt .hp-adopt-wrapper {
  position: absolute;
  bottom: 0;
  margin: 3rem;
}
section.hp-adopt .hp-adopt-wrapper button {
  font-family: "Fraunces", serif;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 3%;
  line-height: 32px;
  color: #283618;
  background-color: #FEFAE0;
  border: 1px solid #283618;
  border-radius: 100px;
  padding: 0.5rem 2.5rem;
  margin-top: 0.5rem;
  transition: all 0.4s ease-in-out;
}
section.hp-adopt .hp-adopt-wrapper button:hover {
  background-color: #283618;
  border: none;
  color: #FEFAE0;
  cursor: pointer;
  transform: scale(1.05);
}

section.hp-about {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #FEFAE0;
}
section.hp-about h1 {
  color: #875C35;
  margin-bottom: 0.5rem;
}
section.hp-about .hp-about-wrapper {
  width: 40%;
  text-align: center;
}
section.hp-about .hp-about-wrapper p {
  color: #606C38;
  margin-top: 1rem;
}
section.hp-about .hp-icons-paws {
  margin-top: 2rem;
  gap: 1rem;
}
section.hp-about .hp-icons-paws i {
  font-size: 2rem;
}

section.hp-gallery {
  background-color: #875C35;
}
section.hp-gallery h1 {
  color: #FEFAE0;
  text-align: center;
}
section.hp-gallery .hp-gallery-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}
section.hp-gallery .hp-gallery-content img {
  max-width: 100%;
  height: 50%;
  border: none;
  border-radius: 10px;
  transition: transform 0.4s ease-in-out;
  transform: scale(0.9);
}
section.hp-gallery .hp-gallery-content img:hover {
  transform: scale(1);
}

/****************************************************
                    Menu Style
****************************************************/
section.mp-hero {
  background-color: #FEFAE0;
  max-width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 6rem;
  gap: 2rem;
}
section.mp-hero .mp-hero-wrapper {
  width: 30%;
  display: flex;
  flex-direction: column;
  bottom: 0;
  margin: 0 4rem;
}
section.mp-hero .mp-hero-wrapper > * {
  margin-top: 1em;
}
section.mp-hero .mp-hero-wrapper h1 {
  color: #875C35;
  margin-bottom: 0;
}
section.mp-hero .mp-hero-wrapper h2 {
  color: #606C38;
}
section.mp-hero .mp-hero-img {
  width: 50%;
}
section.mp-hero .mp-hero-img img {
  width: 100%;
  height: 100%;
}
section.mp-hero .scroll i {
  font-size: 2rem;
  color: #875C35;
  position: absolute;
  right: 0;
  bottom: 0;
  margin: 7rem;
  margin-right: 5rem;
  transform: translateX(-50%);
  animation: arrow-bounce 1.5s infinite ease-in-out;
  cursor: pointer;
}

.mp-content {
  background-color: #606C38;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 5rem;
}
.mp-content h3.mobile, .mp-content h1.mobile {
  display: none;
}
.mp-content .mp-aside {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mp-content .mp-aside h1, .mp-content .mp-aside h2, .mp-content .mp-aside h3, .mp-content .mp-aside p {
  color: #FEFAE0;
}
.mp-content .mp-aside .checkbox-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 3rem;
  gap: 1.5rem;
}
.mp-content .mp-aside button.checkbox {
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  border: 1px solid #283618;
  background-color: #FEFAE0;
}
.mp-content .mp-aside i {
  font-size: 2rem;
}
.mp-content .mp-aside hr {
  height: 1px;
  border: 0;
  border-top: 1.3px solid #283618;
  margin: 1px 0;
  padding: 0;
  margin-bottom: 3em;
}
.mp-content .mp-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding: 2rem;
}
.mp-content .mp-main h1, .mp-content .mp-main h2, .mp-content .mp-main h3, .mp-content .mp-main p {
  color: #FEFAE0;
}
.mp-content .mp-main .mp-main-card {
  position: relative;
  width: 30%;
}
.mp-content .mp-main .mp-main-card img {
  width: 80%;
}
.mp-content .mp-main h2, .mp-content .mp-main h3 {
  text-align: center;
  margin-top: 0.5rem;
}
.mp-content .mp-main i {
  font-size: 3rem;
  color: #FEFAE0;
  position: absolute;
  right: 50px;
  top: 0;
}

/****************************************************
                    Adopt Style
****************************************************/
section.ap-hero {
  background-color: #FEFAE0;
  max-width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 6rem;
  gap: 2rem;
}
section.ap-hero .ap-hero-wrapper {
  width: 30%;
  display: flex;
  flex-direction: column;
  bottom: 0;
  margin: 0 4rem;
}
section.ap-hero .ap-hero-wrapper > * {
  margin-top: 1em;
}
section.ap-hero .ap-hero-wrapper h1 {
  color: #606C38;
  margin-bottom: 0;
}
section.ap-hero .ap-hero-wrapper h2 {
  color: #875C35;
}
section.ap-hero .ap-hero-img {
  width: 50%;
}
section.ap-hero .ap-hero-img img {
  width: 100%;
  height: 100%;
}
section.ap-hero .scroll i {
  font-size: 2rem;
  color: #875C35;
  position: absolute;
  right: 0;
  bottom: 0;
  margin: 7rem;
  margin-right: 5rem;
  transform: translateX(-50%);
  animation: arrow-bounce 1.5s infinite ease-in-out;
  cursor: pointer;
}

.ap-section1 {
  background-color: #606C38;
  max-width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 8rem;
}
.ap-section1 .ap-section1-wrapper {
  width: 40%;
  display: flex;
  flex-direction: column;
  bottom: 0;
}
.ap-section1 .ap-section1-wrapper > * {
  margin-top: 3rem;
}
.ap-section1 .ap-section1-wrapper h1 {
  margin-bottom: 0;
  color: #FEFAE0;
}
.ap-section1 .ap-section1-wrapper h2 {
  color: #FEFAE0;
}
.ap-section1 .ap-section1-wrapper p {
  margin-bottom: 0.5em;
  color: #FEFAE0;
}
.ap-section1 .ap-section1-wrapper img {
  width: 10%;
  height: 10%;
}
.ap-section1 .ap-adopt-card-bckgr {
  background-image: url(../images/adopt_cat_img1.jpg);
  background-size: cover;
  border-radius: 100px;
  width: 600px;
  height: 750px;
  max-width: 100%;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.3) -13px 1px;
}
.ap-section1 .ap-adopt-card-bckgr h2 {
  color: #FEFAE0;
  font-size: 1.5rem;
  position: absolute;
  bottom: 0;
  margin: 3rem;
}

.ap-section2 {
  background-color: #FEFAE0;
  max-width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  padding: 8rem;
}
.ap-section2 .ap-section2-wrapper {
  width: 40%;
  display: flex;
  flex-direction: column;
  bottom: 0;
  align-items: flex-end;
  text-align: right;
}
.ap-section2 .ap-section2-wrapper > * {
  margin-top: 3em;
}
.ap-section2 .ap-section2-wrapper h1 {
  margin-bottom: 0;
  color: #875C35;
}
.ap-section2 .ap-section2-wrapper h2 {
  color: #606C38;
}
.ap-section2 .ap-section2-wrapper p {
  margin-bottom: 0.5em;
  color: #606C38;
}
.ap-section2 .ap-section2-wrapper img {
  width: 10%;
  height: 10%;
  float: right;
}
.ap-section2 .ap-adopt-card-bckgr {
  background-image: url(../images/adopt_cat_img2.jpg);
  background-size: cover;
  border-radius: 100px;
  width: 600px;
  height: 750px;
  max-width: 100%;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.3) -13px 1px;
}
.ap-section2 .ap-adopt-card-bckgr h2 {
  color: #FEFAE0;
  font-size: 1.5rem;
  position: absolute;
  bottom: 0;
  margin: 3rem;
  width: 30%;
}

.ap-section3 {
  background-color: #875C35;
  max-width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  padding: 8rem;
}
.ap-section3 .ap-section3-wrapper {
  width: 40%;
  display: flex;
  flex-direction: column;
  bottom: 0;
}
.ap-section3 .ap-section3-wrapper > * {
  margin-top: 3em;
}
.ap-section3 .ap-section3-wrapper h1 {
  margin-bottom: 0;
  color: #FEFAE0;
}
.ap-section3 .ap-section3-wrapper h2 {
  color: #FEFAE0;
}
.ap-section3 .ap-section3-wrapper p {
  margin-bottom: 0.5em;
  color: #FEFAE0;
}
.ap-section3 .ap-section3-wrapper img {
  width: 10%;
  height: 10%;
}
.ap-section3 .ap-adopt-card-bckgr {
  background-image: url(../images/adopt_cat_img3.jpg);
  background-size: cover;
  border-radius: 100px;
  width: 600px;
  height: 750px;
  max-width: 100%;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.3) -13px 1px;
}
.ap-section3 .ap-adopt-card-bckgr h2 {
  color: #FEFAE0;
  font-size: 1.5rem;
  position: absolute;
  bottom: 0;
  margin: 3rem;
  width: 30%;
}

/****************************************************
                    Animations
****************************************************/
@keyframes arrow-bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}
@keyframes arrow-up {
  0%, 100% {
    transform: translateX(-50%) translateY(-10px);
  }
  50% {
    transform: translateX(-50%) translateY(0);
  }
}
/****************************************************
                    Responsive 
****************************************************/
@media (max-width: 900px) {
  :root {
    font-size: 16px;
  }
  h1 {
    margin-bottom: 1.5rem;
  }
  section {
    padding: 3rem;
  }
  header {
    width: 100%;
    padding: 2rem;
  }
  header ul {
    justify-content: flex-start;
  }
  header .nav-links {
    display: none;
  }
  header .hamburger {
    display: flex;
  }
  header .hamburger nav {
    display: flex;
  }
  footer {
    padding: 6rem;
  }
  footer nav img.footer-mockup {
    width: 60%;
  }
  /****************************************************
                      Index Style
  ****************************************************/
  section.hp-hero .hp-hero-titles {
    margin: 0;
    padding: 2rem;
    width: 100%;
  }
  section.hp-hero .scroll i {
    margin: 1em 2em;
    margin-right: 0;
  }
  section.hp-adopt .hp-adopt-wrapper {
    margin: 2rem;
  }
  section.hp-adopt .adopt-cards {
    flex-direction: column;
  }
  section.hp-adopt .adopt-cards .adopt-card-sm {
    width: 500px;
    height: 500px;
    border-radius: 80px;
  }
  section.hp-about .hp-about-wrapper {
    width: 90%;
  }
  /****************************************************
                      Menu Style
  ****************************************************/
  section.mp-hero {
    flex-direction: column;
    padding: 1rem;
    justify-content: center;
    gap: 1rem;
  }
  section.mp-hero .mp-hero-wrapper {
    margin: 2rem;
    width: 90%;
    text-align: center;
  }
  section.mp-hero .mp-hero-img {
    width: 100%;
  }
  section.mp-hero .mp-hero-img img {
    width: 100%;
  }
  section.mp-hero .scroll i {
    right: 0;
    margin-right: 11rem;
  }
  .mp-content {
    padding: 3em;
    flex-direction: column;
    align-items: center;
  }
  .mp-content h3.mobile, .mp-content h1.mobile {
    display: flex;
    color: #FEFAE0;
  }
  .mp-content .mp-aside {
    display: none;
  }
  .mp-content .mp-main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 0;
    gap: 1rem 2rem;
  }
  .mp-content .mp-main .mp-main-card {
    width: 40%;
    align-items: center;
  }
  .mp-content .mp-main .mp-main-card img {
    width: 100%;
  }
  .mp-content .mp-main i {
    right: -20px;
    font-size: 2rem;
  }
  /****************************************************
                      Adopt Style
  ****************************************************/
  section.ap-hero {
    flex-direction: column;
    padding: 1rem;
    justify-content: center;
    gap: 1rem;
  }
  section.ap-hero .ap-hero-wrapper {
    margin: 2rem;
    width: 90%;
    text-align: center;
  }
  section.ap-hero .ap-hero-img {
    width: 100%;
  }
  section.ap-hero .ap-hero-img img {
    width: 100%;
  }
  section.ap-hero .scroll i {
    right: 0;
    margin-right: 11rem;
  }
  section.ap-section1, section.ap-section2, section.ap-section3 {
    flex-direction: column;
    gap: 1em;
    padding: 1rem;
    padding-bottom: 4rem;
  }
  section.ap-section1 .ap-section1-wrapper, section.ap-section1 .ap-section2-wrapper, section.ap-section1 .ap-section3-wrapper, section.ap-section2 .ap-section1-wrapper, section.ap-section2 .ap-section2-wrapper, section.ap-section2 .ap-section3-wrapper, section.ap-section3 .ap-section1-wrapper, section.ap-section3 .ap-section2-wrapper, section.ap-section3 .ap-section3-wrapper {
    margin: 2rem;
    width: 90%;
    text-align: center;
    align-items: center;
  }
  section.ap-section1 .ap-section1-wrapper h1, section.ap-section1 .ap-section2-wrapper h1, section.ap-section1 .ap-section3-wrapper h1, section.ap-section2 .ap-section1-wrapper h1, section.ap-section2 .ap-section2-wrapper h1, section.ap-section2 .ap-section3-wrapper h1, section.ap-section3 .ap-section1-wrapper h1, section.ap-section3 .ap-section2-wrapper h1, section.ap-section3 .ap-section3-wrapper h1 {
    margin-top: 1em;
  }
  section.ap-section1 .ap-adopt-card-bckgr {
    width: 300px;
    height: 400px;
    border-radius: 50px;
  }
  section.ap-section1 .ap-adopt-card-bckgr h2 {
    margin: 2rem;
    width: 50%;
  }
  section.ap-section2 .ap-adopt-card-bckgr {
    width: 300px;
    height: 400px;
    border-radius: 50px;
    margin-top: 2rem;
  }
  section.ap-section2 .ap-adopt-card-bckgr h2 {
    margin: 2rem;
    width: 50%;
  }
  section.ap-section3 .ap-adopt-card-bckgr {
    width: 300px;
    height: 400px;
    border-radius: 50px;
  }
  section.ap-section3 .ap-adopt-card-bckgr h2 {
    margin: 2em;
    width: 50%;
  }
}/*# sourceMappingURL=style.css.map */