/* GENERAL */

body {
  font-family: "Raleway", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #3e4b39;
  line-height: 1.5em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.hidden {
  display: none;
}

h2 {
  font-size: 1.5em;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.5em;
  text-transform: uppercase;
  margin-bottom: 1.3em;
}

.colorInvert {
  color: #fbfbfd;
}

.row {
  padding: 5.6em 0;
}

a {
  color: inherit;
}

a:hover {
  color: #6d1f09;
  text-decoration: none;
}

/* SECTION: HEADER */

section#header {
  background-image: url("../img/bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}

section#header .row {
  padding: 6vw 0 5vw;
}

section#header #logo {
  margin: 0 auto;
  height: 32vw;
  max-height: 360px;
  position: relative;
}

/* SECTION: INFO */

section#info {
  background-color: #5a7b5d;
  text-align: center;
  flex-grow: 1;
}

section#info nav a {
  font-size: 0.9em;
  font-weight: 700;
  transform: uppercase;
  letter-spacing: 0.035em;
  opacity: 0.6;
  display: flex;
  gap: 0.5em;
  justify-content: center;
  align-items: center;
  transition: all 160ms ease;
}

section#info nav a:hover {
  opacity: 1;
  color: #fff;
}

section#info nav a i {
  font-size: 0.75em;
}

section#info ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  line-height: 1.8em;
}

section#info details {
  margin-bottom: 1rem;
}

section#info details > summary {
  opacity: 0.5;
  transition: opacity 160ms ease;
  list-style: none;
}

section#info details > summary:hover,
section#info details[open] > summary {
  opacity: 1;
}

section#info details[open] {
  margin-bottom: 3rem;
}

section#info details > summary h2 {
  margin-bottom: 0.5em;
}

section#info details summary::-webkit-details-marker {
  display: none;
}

/* SECTION: CONTACT */

section#contact {
  background-color: #f0efed;
}

section#contact form {
  margin-top: 64px;
}

section#contact form ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

section#contact form input,
section#contact form textarea {
  display: block;
  width: 100%;
  border: 0;
  margin-bottom: 12px;
  padding: 14px 18px;
}

section#contact form textarea {
  height: 200px;
}

section#contact form button,
section#contact form input[type="submit"] {
  width: 140px;
  background-color: #6d1f09;
  border: 0;
  float: right;
  height: 56px;

  font-size: 1.3em;
  font-weight: 800;
  color: #fbfbfd;
  letter-spacing: 0.05em;
}

section#contact form button:hover {
  background-color: #5f1806;
}

/* SECTION: FOOTER */

section#footer {
  background-color: #2a2523;
  color: #f0efed;
  text-align: center;
  font-size: 0.85em;
}

section#footer .row {
  padding: 2.5em 0;
}

/* SECTION: TACK */

section#tack {
  text-align: center;
}

/* RESPONSIVE */

@media (max-width: 767.98px) {
  body {
    font-size: 16px;
  }

  h2 {
    margin-bottom: 0.8em;
  }

  section#header .row {
    padding: 7vw 0 4vw;
  }

  section#info .row {
    padding-bottom: 2.4em;
  }

  section#info ul {
    margin-bottom: 3.2em;
  }

  section#contact form {
    margin-top: 1.2em;
  }
}
