.flex {
  display: flex;
  gap: var(--gap, 1rem);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350, 1fr));
  gap: 2rem;
}

@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;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  text-decoration: 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 {
  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: hsl(0, 0%, 0%, 0.75);
}

.primary-navigation a:hover {
  color: #fff;
}

@supports (backdrop-filter: blur(1rem)) {
  .primary-navigation {
    background: hsl(0, 0%, 10%, 0.4);
    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 {
    padding-block-start: 10rem;
  }
}

.garden-services-hero {
  min-height: 80svh;
  background-image: url(../../Img/assets/Laundry\ Services\ Image.jpeg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  isolation: isolate;
  z-index: -1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-inline-end: 4rem;

  position: relative;
}

.garden-services-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
    90deg,
    rgba(237, 110, 160, 0) 0%,
    #000000 100%
  );
  z-index: -1;
}

.garden-services-hero h2 {
  font-size: clamp(4rem, 4vw, 8rem);
  font-family: "bubbler_oneregular";
  text-align: center;
  letter-spacing: 0.7rem;
  filter: drop-shadow(2px 2px 2px black);
}

.garden-services-hero span {
  font-family: "Allura", cursive;
  font-size: clamp(7rem, 7vw, 15rem);
  color: #ff0891;
  letter-spacing: 1rem;
}

.garden-services__container {
  /* display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
    justify-content: center; */

  display: flex;
  flex-wrap: wrap;
  justify-content: center;

  padding: 5rem;
  gap: 5rem;
}

.garden-services__container > * {
  flex: 0 1 40em;
}

.garden-services__items {
  display: flex;
  flex-direction: column;
}

.garden-services__items--img img {
  width: 100%;
  aspect-ratio: 2/1;
  object-fit: cover;
}

.garden-services__items--text {
  /* flex-basis: 50%;
    flex-grow: 0;
    min-height: 100%; */
  flex: 1 1 100%;
}

.garden-services__items--text {
  background-color: #ff0891;

  padding: 2.5rem;
  border-bottom-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
}

.garden-services__items--text h1 {
  text-align: center;
  font-size: clamp(3rem, 4vw, 4rem);
  font-family: "Oswald", sans-serif;
  text-transform: capitalize;
  margin-block-end: 2rem;
}

.garden-services__items--text h2 {
  text-align: center;
  font-size: clamp(2rem, 2vw, 3rem);
  font-family: "sf_cartoonist_handregular";
  text-transform: capitalize;
  margin-block-end: 2rem;
}

.garden-services__items--text ul {
  line-height: 1.5;
}

.garden-services__items--text li {
  font-size: 2rem;
  font-family: "bubbler_oneregular";
}

.footer {
  display: flex;
  justify-content: space-between;
  padding-block: 4rem;
  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;
}

/* #E6C7EE */
/* #C5DAEA */
/* #F1B97D */
