@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;600;700&family=Maven+Pro:wght@400;500;600;700;800&display=swap");
@import "Header.css";
@import "SubHeader.css";
@import "SectionOne.css";
@import "Carousel.css";
@import "SectionTwo.css";
@import "SectionThree.css";

:root {
  --ink: #242424;
  --panel: #414141;
  --paper: #fff;
  --green: #42a086;
  --red: #de8685;
  --tan: #d0b192;
  --content-width: 1220px;
  --radius: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Lato", sans-serif;
}

button {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

footer {
  padding: 0 24px;
  color: #ddd;
  background: #222;
}

.footer-inner {
  width: min(100%, var(--content-width));
  min-height: 82px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 28px;
}

footer p {
  margin: 0;
  font-size: .78rem;
}

.footer-brand {
  color: #fff;
  font: 700 2rem / 1 "Maven Pro", sans-serif;
  text-decoration: none;
}

.visually-hidden {
  width: 1px;
  height: 1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 700px) {
  .footer-inner {
    padding: 22px 0;
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

