@font-face {
  font-family: "Tinos";
  src: url("./assets/fonts/Tinos-Regular.ttf");
}
html {
  font-size: 16px;
}

body {
  font-family: "Tinos";
  font-size: 1rem;
  margin: 0;
}

p {
  font-size: 1.25rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "Tinos";
  font-weight: normal;
  line-height: 1.2em;
}

h1,
.h1 {
  font-size: 2.5rem;
}

h2,
.h2 {
  font-size: 2rem;
  font-weight: 600;
}

h3,
.h3 {
  font-size: 1.75rem;
}

h4,
.h4 {
  font-size: 1.5rem;
}

h5,
.h5 {
  font-size: 1.313rem;
}

h6,
.h6 {
  font-size: 1.188rem;
}

:root {
  --primary: #000;
  --primary02: #777;
  --primary03: #333;
  --secondary: #F7F3E8;
  --secondary2: #e9e9eb;
  --accent: #193311;
}

:root {
  --logo-size: 100px;
  --mobile-logo-size: 35px;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--primary);
  background-color: var(--secondary);
}

a {
  color: var(--primary);
}

.projects,
.services,
.about-us {
  margin-top: 3rem;
  scroll-margin-top: 4rem;
}

header {
  position: sticky;
  top: 0;
  height: 3.25rem;
  background-color: var(--secondary);
  filter: drop-shadow(2px 2px 2px var(--primary02));
  z-index: 1;
}
header .logo {
  background-image: url("./assets/svg/ascend-logo.svg");
  background-size: var(--logo-size);
  height: var(--logo-size);
  width: var(--logo-size);
  position: fixed;
  left: 3rem;
  top: 0.5rem;
}
header .mobile-logo {
  background-image: url("./assets/svg/ascend-logo.svg");
  background-size: var(--mobile-logo-size);
  height: var(--mobile-logo-size);
  width: var(--mobile-logo-size);
}
header nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  container: main-menu/inline-size;
}
header nav ul {
  list-style-type: none;
  justify-content: space-evenly;
  grid-column: -2;
}
header nav ul li a {
  text-decoration: none;
}
header nav button {
  grid-column: -2;
  border: none;
  background-color: transparent;
  width: 2rem;
  cursor: pointer;
  justify-self: end;
  margin: 0.7rem 1rem;
}
header nav .hero-title {
  position: absolute;
  top: 30px;
  left: 180px;
  z-index: 1;
}
header nav .mobile-title {
  margin: 0.25rem 0.1rem;
}
header nav .hero-title a,
header nav .mobile-title a {
  text-decoration: none;
}

.hero .image {
  background-image: linear-gradient(var(--secondary), transparent 30%), url("./assets/images/above montour falls c3.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position-y: 20%;
  height: 20rem;
}
.hero .bubble {
  width: 33.3%;
  aspect-ratio: 1;
  background-color: var(--secondary2);
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
  z-index: 2;
  top: 35%;
  right: 7%;
}

main {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-areas: "intro intro intro intro intro" "projects projects projects projects projects" "services services services services services" "team team team team team" "foot foot foot foot foot";
  margin: 0 10rem;
  padding: 0 1rem;
}

.intro {
  container: intro-contain/inline-size;
  grid-area: intro;
  min-height: 20rem;
  padding-top: 2rem;
  max-width: 55rem;
  display: flex;
  flex-direction: column;
}
.intro .title {
  display: flex;
}
.intro .logo {
  background-image: url("./assets/svg/ascend-logo.svg");
  background-size: var(--logo-size);
  height: var(--logo-size);
  width: var(--logo-size);
}
.intro p {
  font-size: 1.5rem;
  text-align: justify;
}
.intro a {
  align-self: center;
  background-color: var(--accent);
  color: var(--secondary);
  text-decoration: none;
  padding: 0.75rem 1rem;
  border-radius: 5px;
  filter: drop-shadow(2px 2px 2px var(--primary02));
  text-shadow: 0 2px 1px rgba(0, 0, 0, 0.5);
}

.projects {
  grid-area: projects;
}
.projects img {
  width: 100%;
  max-width: 300px;
  border-radius: 5px;
}

.services {
  grid-area: services;
}
.services .combo-header {
  display: flex;
  align-items: baseline;
}
.services .tagline {
  font-style: italic;
  margin-left: 1rem;
  color: var(--primary03);
}

.about-us {
  grid-area: team;
}

footer {
  grid-area: foot;
  margin-bottom: 2rem;
}
footer p {
  font-size: 1rem;
}

dialog::backdrop {
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}

dialog {
  border: none;
  color: var(--secondary);
  background-color: var(--primary03);
  border-radius: 5px;
  padding: 1rem 2rem;
  position: absolute;
}
dialog ul {
  margin: 0;
  list-style-type: none;
  padding: 0;
  line-height: 4;
}
dialog ul li {
  padding: 0 2rem;
}
dialog ul li a {
  color: inherit;
  text-decoration: none;
  outline: none;
}

@media (max-width: 789px) {
  main {
    margin: 0 1.25rem;
  }
  header .nav-logo {
    display: none;
  }
  header nav {
    display: flex;
    justify-content: space-between;
  }
  nav button,
  nav .mobile-title {
    display: block;
  }
  nav ul,
  nav .hero-title {
    display: none;
  }
  .services .combo-header {
    display: block;
  }
  header nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
  }
  header nav button {
    margin: 0;
  }
  .hero .image {
    background-image: url("./assets/images/above montour falls c3 480.jpg");
  }
}
@media (min-width: 790px) {
  nav button,
  nav .mobile-title,
  nav .mobile-logo {
    display: none;
  }
  nav ul {
    display: flex;
  }
}
@supports (hanging-punctuation: first) and (font: -apple-system-body) and (-webkit-appearance: none) {
  header nav .hero-title {
    top: -32px;
    left: -10px;
    transform: scale(0.65);
  }
  header .nav-logo {
    transform: scale(0.45);
    top: -25px;
    left: -20px;
  }
  .hero .image {
    background-image: url("./assets/images/above montour falls c3.jpg");
  }
}
@-moz-document url-prefix() {
  header nav .hero-title {
    top: -32px;
    left: -10px;
    transform: scale(0.65);
  }
  header .nav-logo {
    transform: scale(0.45);
    top: -25px;
    left: -20px;
  }
  .hero .image {
    background-image: url("./assets/images/above montour falls c3.jpg");
  }
}
@media (max-width: 890px) {
  .intro {
    align-items: flex-start;
  }
}
@media (max-width: 500px) {
  .intro p {
    font-size: 1.25rem;
  }
}/*# sourceMappingURL=styles.css.map */