:root {
  --step--2: clamp(0.78rem, calc(0.43rem + 1.77vw), 1.8rem);
  --step--1: clamp(0.94rem, calc(0.48rem + 2.28vw), 2.25rem);
  --step-0: clamp(1.13rem, calc(0.54rem + 2.93vw), 2.81rem);
  --step-1: clamp(1.35rem, calc(0.6rem + 3.77vw), 3.52rem);
  --step-2: clamp(1.62rem, calc(0.66rem + 4.83vw), 4.39rem);
  --step-3: clamp(1.94rem, calc(0.71rem + 6.17vw), 5.49rem);
  --step-4: clamp(2.33rem, calc(0.76rem + 7.88vw), 6.87rem);
  --step-5: clamp(2.8rem, calc(0.79rem + 10.06vw), 8.58rem);
}

@font-face {
  font-family: "bubbler_oneregular";
  src: url("../Fonts/bubblerone_regular_macroman/bubblerone-regular-webfont.woff")
    format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "sf_cartoonist_handregular";
  src: url("../Fonts/sfcartoonisthand_regular_macroman/SF_Cartoonist_Hand-webfont.woff")
    format("woff");
  font-weight: normal;
  font-style: normal;
}
.flex {
  display: flex;
  gap: var(--gap, 1rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
}

html {
  /* color-scheme: dark light; */
  color: white;
  font-size: 62.9%;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  background-color: #1a1a1a;
  overflow-x: hidden;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: "Freshman", sans-serif;
  letter-spacing: 2px;
}

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
}

.logo {
  margin: 2rem;
  width: 25rem;
}

.primary-header {
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-toggle {
  display: none;
}

.primary-navigation {
  list-style: none;
  background: hsla(0deg, 0%, 0%, 0.75);
}

.primary-navigation a:hover {
  color: #fff;
}

@supports (
  (-webkit-backdrop-filter: blur(1rem)) or (backdrop-filter: blur(1rem))
) {
  .primary-navigation {
    background: hsla(0deg, 0%, 10%, 0.4);
    -webkit-backdrop-filter: blur(1rem);
    backdrop-filter: blur(1rem);
  }
}
.primary-navigation a {
  text-decoration: none;
  color: #ff0891;
  font-size: 2.8rem;
  letter-spacing: 1px;
  transition: color 0.25s ease;
  font-family: "sf_cartoonist_handregular";
}

@media (max-width: 50em) {
  .primary-navigation {
    --gap: 3em;
    position: fixed;
    z-index: 1000;
    inset: 0 0 0 30%;
    flex-direction: column;
    align-items: center;
    transform: translateX(100%);
    transition: transform 350ms ease-out;
  }
  .primary-navigation[data-visible="true"] {
    transform: translateX(0%);
  }
  .mobile-nav-toggle {
    display: block;
    position: absolute;
    z-index: 9999;
    background-image: url("../Img/SVG/Hamburger_icon.svg");
    background-color: transparent;
    background-repeat: no-repeat;
    border: 0;
    width: 3rem;
    aspect-ratio: 1;
    top: 4rem;
    right: 2rem;
  }
  .mobile-nav-toggle[aria-expanded="true"] {
    background-image: url("../Img/SVG/Close_Icon.svg");
  }
}
@media (min-width: 35em) {
  .primary-navigation {
    --gap: 3rem;
    padding-block: 3rem;
    padding-inline: clamp(3rem, 5vw, 10rem);
  }
}
@media (max-width: 35em) {
  .primary-navigation {
    -webkit-padding-before: 10rem;
    padding-block-start: 10rem;
  }
}
.active {
  color: #fff;
}

.header {
  min-height: calc(100vh - 123px);
  background-image: url(../Img/assets/Pot\ Pourri\ Hero\ Image.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  isolation: isolate;
  display: flex;
  justify-content: center;
  flex-direction: column;
  -webkit-padding-start: var(--step-5);
  padding-inline-start: var(--step-5);
}
.header::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}
.header__title {
  font-family: "bubbler_oneregular";
  text-transform: uppercase;
  font-size: var(--step-4);
  -webkit-margin-after: 4rem;
  margin-block-end: 4rem;
  color: #fff;
}
.header__paragraph {
  font-size: var(--step-0);
  font-family: "sf_cartoonist_handregular";
  max-width: 50%;
  -webkit-margin-after: 4rem;
  margin-block-end: 4rem;
  color: #fff;
}
.header__button {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  font-size: var(--step--1);
  color: #fff;
  padding: 1.5rem 4.5rem;
  border: 2px solid #fff;
  border-radius: 50px;
  font-family: "sf_cartoonist_handregular";
  transition: all 0.3s ease-in;
}
.header__button:hover {
  background-color: #ff0891;
  border: 2px solid #ff0891;
}

.button:hover::before {
  width: 150%;
}

.about {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  min-height: 80vh;
}
.about__img {
  position: relative;
}
.about__img--1 {
  position: absolute;
  width: 27rem;
  top: 10.4%;
  left: 40%;
  transform: translateX(-50%);
}
.about__img--2 {
  position: absolute;
  width: 34rem;
  bottom: 10%;
  left: 40%;
  box-shadow: -5px -5px 5px rgba(0, 0, 0, 0.7);
}
.about__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about__content h2 {
  font-size: 4rem;
  -webkit-margin-after: 4rem;
  margin-block-end: 4rem;
  position: relative;
  font-family: "bubbler_oneregular";
  text-transform: capitalize;
}
.about__content h2::before {
  content: "";
  position: absolute;
  width: 6rem;
  height: 5px;
  background-color: #ff0891;
  border-radius: 50px;
  transform: translateY(-2rem);
}
.about__content p {
  width: 70%;
  font-size: 2rem;
  font-family: "sf_cartoonist_handregular";
}
.about__content--button {
  font-size: 2.5rem;
  font-family: "sf_cartoonist_handregular";
  -webkit-margin-before: 2rem;
  margin-block-start: 2rem;
  color: #fff;
  border-bottom: 2px solid #ff4aae;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.3s ease;
}
.about__content--button:hover {
  color: #ff4aae;
}

@media (max-width: 1200px) {
  .about {
    display: block;
  }
  .about__img {
    min-height: 60rem;
  }
  .about__content {
    align-items: center;
    -webkit-margin-before: 5rem;
    margin-block-start: 5rem;
  }
  .about__content p {
    width: 50%;
  }
}
@media (max-width: 700px) {
  .about__img {
    min-height: 50vh;
  }
  .about__img--1 {
    width: 20rem;
    top: 10%;
  }
  .about__img--2 {
    width: 27rem;
  }
}
@media (max-width: 500px) {
  .about__content h2 {
    text-align: center;
  }
  .about__content p {
    width: 80%;
  }
  .about__img--1 {
    width: 15rem;
    top: 25%;
    left: 30%;
  }
  .about__img--2 {
    width: 22rem;
    left: 30%;
  }
}
.services {
  background-image: url(../Img/assets/Family\ Holiday.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 50vh;
  position: relative;
}
.services__container h2 {
  font-size: 5rem;
  margin-block: 3rem;
  font-family: "bubbler_oneregular";
  text-transform: capitalize;
}
.services__container p {
  max-width: 40rem;
  -webkit-margin-after: 3rem;
  margin-block-end: 3rem;
  font-size: 2.5rem;
  font-family: "sf_cartoonist_handregular";
}
.services__container--content {
  display: flex;
  flex-wrap: wrap;
  max-height: 400px;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
.services__container--box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
}
.services__container--box svg {
  width: 4rem;
  aspect-ratio: 1;
  fill: #fff;
}

.gallery {
  min-height: 40vh;
}
.gallery__content {
  padding-block: 8rem;
  -webkit-padding-start: 5rem;
  padding-inline-start: 5rem;
  position: relative;
}
.gallery__content h2 {
  font-size: 6rem;
  font-family: "bubbler_oneregular";
  text-transform: capitalize;
  -webkit-margin-after: 2rem;
  margin-block-end: 2rem;
}
.gallery__content p {
  font-size: 2.5rem;
  font-family: "sf_cartoonist_handregular";
}
.gallery__content a {
  font-size: 2rem;
  font-family: "sf_cartoonist_handregular";
  position: absolute;
  right: 5rem;
  top: 8rem;
  -webkit-margin-before: 2rem;
  margin-block-start: 2rem;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  color: #fff;
  padding: 1.5rem 4.5rem;
  border: 2px solid #fff;
  border-radius: 50px;
  transition: all 0.3s ease-in;
}
.gallery__content a:hover {
  background-color: #ff0891;
  border: 2px solid #ff0891;
}
.gallery__img-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 5rem;
  padding: 5rem;
}
.gallery__img-container--img {
  width: 100%;
  aspect-ratio: 1;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 550px) {
  .gallery__content {
    text-align: center;
    padding-inline: 0;
    -webkit-padding-before: 4rem;
    padding-block-start: 4rem;
  }
  .gallery__content a {
    right: 50%;
    transform: translateX(50%);
    top: 15rem;
  }
}
.testimonials {
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: cover;
  height: 50vh;
  position: relative;
  background-image: url(../img/assets/Friends\ At\ the\ Beach.jpg);
  background-position: top;
  -webkit-margin-before: 5rem;
  margin-block-start: 5rem;
}
.testimonials__container h2 {
  font-size: 4rem;
  font-family: "bubbler_oneregular";
  text-transform: capitalize;
  position: relative;
}
.testimonials__container h2::before {
  content: "";
  position: absolute;
  width: 6rem;
  height: 5px;
  background-color: #fff;
  border-radius: 50px;
  transform: translateY(-2rem);
}
.testimonials__container p {
  font-size: 2rem;
  font-family: "sf_cartoonist_handregular";
  max-width: 90%;
  padding: 4.5rem;
}
.testimonials__info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.testimonials__info img {
  width: 8rem;
  aspect-ratio: 1;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50rem;
  -webkit-margin-end: 2rem;
  margin-inline-end: 2rem;
}
.testimonials__info--details h3 {
  font-size: 3rem;
  font-family: "bubbler_oneregular";
  text-transform: capitalize;
}
.testimonials__info--details h4 {
  font-size: 2rem;
  font-family: "bubbler_oneregular";
  text-transform: capitalize;
}

.testimonials__container,
.services__container {
  background-color: #fff;
  width: 35%;
  color: #fff;
  background-color: #ff0891;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 50rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.services__container {
  right: 10%;
}

.testimonials__container {
  left: 10%;
}

@media (max-width: 1200px) {
  .services,
  .testimonials {
    -webkit-margin-before: 5rem;
    margin-block-start: 5rem;
    min-height: 80vh;
    position: relative;
  }
  .testimonials__container,
  .services__container {
    padding-inline: 2rem;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(0);
    height: 100%;
  }
}
@media (max-width: 350px) {
  .services__container {
    gap: 0px;
  }
  .services__container h2 {
    margin: 1rem;
  }
  .services__container p {
    margin: 1rem;
  }
  .services__container--content {
    gap: 0px;
  }
}
.footer {
  display: flex;
  justify-content: space-between;
  padding-block: 8rem;
  padding-inline: 8rem;
}
.footer__logo {
  display: flex;
  align-items: center;
}
.footer__logo img {
  width: 25rem;
}
.footer__links {
  align-items: center;
  display: flex;
  align-items: center;
}
.footer__links a {
  font-size: 2.5rem;
  font-family: "sf_cartoonist_handregular";
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
  margin-right: 2rem;
}
.footer__links a:hover {
  color: #ff0891;
}
.footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.footer__social img {
  width: 6rem;
}

@media (max-width: 1000px) {
  .footer {
    flex-direction: column;
    align-items: center;
    gap: 5rem;
  }
  .footer__links {
    flex-direction: column;
    gap: 3rem;
    padding: 5rem;
  }
}
.credits {
  min-height: 5rem;
  background-color: #fff;
  align-items: center;
  justify-content: center;
}
.credits p {
  color: #000;
  font-family: "sf_cartoonist_handregular";
  font-size: 2rem;
  text-align: center;
}
.credits p a {
  color: #ff0891;
} /*# sourceMappingURL=styles.css.map */
