:root {
  /* --pico-mark-gradient: linear-gradient( */
  /*   to right, */
  /*   rgb(132, 38, 108.5), */
  /*   rgb(111.2, 57.1, 132.9), */
  /*   rgb(93.45, 63.5, 153.8), */
  /*   rgb(67.2, 71.6, 157.4) */
  /*   ); */
  /* --pico-demo-border-gradient-colors: */
  /*   transparent 33%, rgb(232.5, 202.75, 231.75), rgb(220.8, 205.8, 244.3), */
  /*   rgb(208.35, 210.5, 242.25), rgb(202.8, 211.6, 245.4): transparent 33%, */
  /*   rgb(232.5, 202.75, 231.75), rgb(220.8, 205.8, 244.3), */
  /*   rgb(208.35, 210.5, 242.25), rgb(202.8, 211.6, 245.4); */
  /* --pico-transition: 0.2s ease-in-out; */
  /* --pico-spacing: 1rem; */
}

html {
  scroll-padding-top: 70px;
}

.bg-none {
  background: none;
  box-shadow: none;
}

@media (min-width: 768px) {
  body > main.homepage > .services > .grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  }
}

mark {
  background: var(--pico-mark-gradient);
  background-clip: text;
  color: transparent;
}

body > header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 3;
  background-color: var(--pico-background-color);
  border-bottom-color: var(--pico-border-color);
  box-shadow: var(--pico-card-box-shadow);
  padding-block: 0px;
}

body > header > nav {
  height: 70px;
}
body > header > nav .logo {
  width: 100%;
  height: auto;
}

.contact-submit-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

body > main.homepage > .contact :is(h2, p) {
  color: var(--pico-background-color);
}

body > .hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: grid;
  grid-template-areas: "hero-content";
  min-height: 50vh;
  max-height: 800px;
}
body > .hero >  * {
  grid-area: hero-content;
}
body > .hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
body > .hero::before {
  content: "";
  grid-area: hero-content;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, .9) 0%, 
    rgba(0, 0, 0, .5) 100% 
    );
  z-index: 1;
}
body > .hero > .content {
  grid-area: hero-content;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 5vw, 3rem);
  z-index: 2;
  max-height: 800px;
}
body > .hero > .content article {
  max-width: min(550px, 90vw);
  background: none;
  box-shadow: none;
  margin: 0;
}
body > .hero > .content article :is(p, h3, h5) {
  color: var(--pico-background-color);
}

body > main.homepage > .services {
  margin-top: 1rem;
}
body > main.homepage > .services img {
  width: 48px;
  height: 48px;
  margin-bottom: 0.5rem;
}

body > main.homepage > .cta {
  background-color: #f9f9f9;
  margin-top: 1rem;
}
body > main.homepage > .cta article {
  box-shadow: none;
  background-color: #f9f9f9;
  margin-bottom: 0;
}

.about-content {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  align-items: start;
}

.about-image {
  width: 200px;
  height: 200px;
  border-radius: var(--pico-border-radius);
  object-fit: cover;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-text h2 {
  margin-bottom: 0.5rem;
  color: var(--color);
}

.about-text p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.about-contact-btn {
  text-align: left;
}

/* Responsive design for mobile */
@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }

  .about-image {
    justify-self: center;
  }

  .about-contact-btn {
    text-align: center;
  }
}
