/* IMPORT / VARIABLES */

:root {
  --header-height: 60px;

  --light: white;/*#fffbfa;*/
  --dark: #333;
  --primary-color: #d26137;
  --primary-neutral: #e5dbc3;

  --font-sans: "Inter";
  --font-serif: "los-feliz";
}


/* RESET / GLOBAL */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior:smooth
}

body {
  font-family: sans-serif;
  font-family: var(--font-sans);
  overflow-x: hidden;
}


/* COMPONENTS */
h1, h2, h3, h4 {
  font-family: serif;
  font-family: var(--font-serif);
  font-weight: 400;
  margin-bottom: 10px;
}

h1 {
  font-size: 32px;
}

strong {
  text-transform: uppercase;
}

.ctr {
  text-align: center;
}

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

a:hover {
  color: var(--primary-color);
  text-shadow: 1px 1px 1px white;
  transition: all 750ms;
}

.btn {
  display: inline-block;
  font-size: 36px;
  font-weight: 600;
  padding: 12px 24px;
  background: var(--primary-color);
  border-radius: 10px;
  text-decoration: none;
  color: var(--light);
  cursor: pointer;
  margin-top: 0px;
  margin-bottom: 0px;
}

.btn:hover {
  opacity: .8;
  text-shadow: 1px 1px 1px var(--dark);
  transition: all 500ms;
  color: white;
}

/* HEADER */

header {
  background: var(--primary-color);
  color: white;
  min-height: var(--header-height);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  padding-left: 3em;
  padding-right: 3em;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(10px);
  text-transform: uppercase;
  @media screen and (max-width: 768px) {
    justify-content: center;
    font-weight: 600;
  }
  @media screen and (max-width: 498px) {
    padding-left: 2em;
    padding-right: 2em;
  }
}

header span.header-names {
  font-family: var(--font-serif);

  /* opacity: 0; */
  transition: opacity 750ms ease-in-out;
  @media screen and (max-width: 768px) {
    display: none;
  }
}

header nav ul {
  display: flex;
  flex-direction: row;
  gap: .75em 2em;
  @media screen and (max-width: 498px) {
    font-size: .8em;
    flex-wrap: wrap;
    justify-content: center;
  }
}

header nav ul li {
  list-style: none;
}

header nav ul li a {
  color: white;
  text-decoration: none; 
}

header nav ul li a:hover {
  color: white;
  text-shadow: 1px 1px 1px var(--dark);
  text-decoration: underline;
}

/* SECTIONS */

section {
  padding-top: var(--header-height);
  padding-bottom: var(--header-height);
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

section:first-of-type {
  margin-top: 40px;
}

section .section--content {
  width: 75vw;
  min-width: 650px;
  max-width: 1100px;
  padding-left: 1rem;
  padding-right: 1rem;
  @media screen and (max-width: 768px) {
    width: 100%;
    min-width: 100%;
  }
}

section:nth-child(odd) {
  background: var(--primary-neutral);
}

section:nth-child(even) {
  background: var(--light);
}

.section--content h1 {
  text-align: center;
}