@import url("https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&family=Questrial&family=Tenor+Sans&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BASE */
p,
li {
  font-family: "Cormorant", serif;
}

h1 {
  font-family: "Tenor Sans", sans-serif;
}

h2,
h3 {
  font-family: "Questrial", sans-serif;
  font-weight: 400;
}

img {
  max-width: 100%;
  height: auto;
}

/* LAYOUT */
header {
  background-color: white;
  border-bottom: 1px solid #eee;
}
header .navbar {
  padding: 1rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
header .navbar .navbar-brand {
  font-family: "Tenor Sans", sans-serif;
  font-size: 1.5rem;
  color: black;
}
header .navbar .navbar-collapse {
  flex-grow: 1;
}
header .navbar .navbar-nav {
  display: flex;
  gap: 2rem;
}
header .navbar .navbar-nav .nav-link {
  color: #1f2937;
  font-weight: 500;
  text-decoration: none;
}
header .navbar .navbar-nav .nav-link:hover {
  color: #A8577E;
}
header .navbar .book-btn {
  padding: 10px 16px;
  background-color: #A8577E;
  color: #F2EBEE;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  border: none;
  transition: background-color 0.3s ease-in-out;
}
header .navbar .book-btn:hover {
  background-color: rgb(134.4, 69.6, 100.8);
}
@media (min-width: 992px) {
  header .navbar-collapse {
    display: flex;
    justify-content: center;
  }
  header .navbar-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }
  header .navbar-nav .nav-link {
    color: #1f2937;
    font-weight: 500;
    text-decoration: none;
  }
  header .navbar-nav .nav-link:hover {
    color: #A8577E;
  }
}

.hero-banner {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}
.hero-banner .homepage-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-banner .hero-text {
  font-family: "Questrial", sans-serif;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  padding: 0 1rem;
  width: 100%;
  opacity: 0;
  animation: fadeIn 1.5s ease forwards;
}
.hero-banner .hero-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.hero-banner .hero-text p {
  font-size: 1.2rem;
  margin-top: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.text {
  text-align: center;
}

.main-content {
  text-align: center;
  margin: 2rem auto;
}
.main-content .border-box {
  background-color: lightgray;
  padding: 20px;
  border: 5px solid black;
  display: inline-block;
}

.social-icons {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

img {
  max-width: 100%;
  height: auto;
}

.walks-section {
  background-color: #F5D7E3;
}
.walks-section .walks-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.walks-section .walks-cards .walk-card {
  background-color: white;
  border-radius: 2rem;
  padding: 1.5rem 2rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.walks-section .walks-cards .walk-card span {
  font-family: "Questrial", sans-serif;
  font-weight: bold;
  color: #1f2937;
}
.walks-section .walks-cards .walk-card .walk-label,
.walks-section .walks-cards .walk-card .walk-price,
.walks-section .walks-cards .walk-card .walk-note {
  flex: 1;
  margin: 0.3rem 0;
  font-size: 1.5rem;
  line-height: 1.6;
}

.pink-background,
.pinkBackgrounds {
  background-color: #F5D7E3;
  padding: 2rem 1rem;
  margin-top: 2rem;
  border-radius: 1rem;
  text-align: center;
}

.how-it-works .step-box {
  border: 2px solid #A8577E;
  text-align: center;
  padding: 1rem;
  height: 100%;
}

.walksContainer {
  background-color: white;
  border-radius: 2rem;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1rem auto;
  max-width: 500px;
  font-weight: bold;
  color: #1f2937;
  text-transform: uppercase;
}

.center {
  text-align: center;
}

.footer-section {
  background-color: #f9f9f9;
  color: #1f2937;
  font-family: "Cormorant", serif;
  font-size: 0.9rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.footer-section a, .footer-section .footer-link {
  text-decoration: none;
  color: #1f2937;
  font-family: "Questrial", sans-serif;
  font-weight: 500;
}
.footer-section a:hover, .footer-section .footer-link:hover {
  color: #A8577E;
  text-decoration: underline;
}
.footer-section hr {
  display: none;
}
@media (max-width: 991px) {
  .footer-section .footer-links-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.5rem 2rem;
  }
  .footer-section .footer-links-container > div {
    width: 150px;
  }
}

@media (max-width: 991.98px) {
  .hero-banner {
    height: 250px;
  }
  .hero-banner .homepage-banner {
    height: 100%;
    object-fit: cover;
  }
  .hero-banner .hero-text {
    top: 50%;
    padding: 0 1rem;
  }
  .hero-banner .hero-text h2 {
    font-size: 1.3rem;
    line-height: 1.3;
  }
  .hero-banner .hero-text p {
    font-size: 1rem;
  }
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
  }
  .navbar .navbar-nav {
    flex-direction: column !important;
    text-align: center;
    gap: 1rem;
  }
  .navbar .navbar-nav .nav-link {
    color: var(--purple);
    font-weight: 500;
  }
  .navbar .navbar-toggler {
    margin-left: 0;
    margin-right: 0;
  }
  .navbar .navbar-collapse {
    justify-content: center !important;
  }
  .book-btn {
    margin-top: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .walk-card {
    flex-direction: column;
    text-align: center;
  }
  .walk-label,
  .walk-price,
  .walk-note {
    margin: 0.5rem 0;
  }
  .homepage-banner {
    width: 100%;
  }
}
/* COMPONENTS */
.book-btn,
.btn-custom {
  background-color: #A8577E;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 0.5rem 1rem;
  font-weight: bold;
  text-transform: uppercase;
  transition: background-color 0.3s ease-in-out;
}
.book-btn:hover,
.btn-custom:hover {
  background-color: #8e466a;
}

.pinkBackgrounds {
  background-color: #F5D7E3;
  padding: 2rem 1rem;
  margin-top: 2rem;
  border-radius: 1rem;
  text-align: center;
}

.walksContainer {
  background-color: white;
  border-radius: 2rem;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1rem auto;
  max-width: 500px;
  font-weight: bold;
  color: #1f2937;
  text-transform: uppercase;
}

.center {
  text-align: center;
}

/*# sourceMappingURL=styles.css.map */
