@charset "utf-8";
/* CSS Document */

:root { 
  --background-color-1a: #01050e;
  --background-color-1b: #1c2227;
  --paragraph-color-1: #ffffff;
  --link-color-1: #ffffff;
  --link-color-2: #d4a846;
  --title-color-1: #ffffff;
  --title-color-2: #d4a846;
  --line-color-1: #ffffff;
  --line-color-2: #d4a846;
  --button-bg-color-1: #01050e;
  --button-bg-color-2: #d4a846;
  --button-border-color-1: #d4a846;
  --button-border-color-2: #d4a846;
  --button-text-color-1: #d4a846;
  --button-text-color-2: #01050e;
  --black: #000000;
  --white: #ffffff; 
  --green: #008000; 
  --red: #dc143c; 
}

*, html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

body {
  font-family: "Geist", sans-serif;
  font-size: 1em;
  background: linear-gradient(0deg, var(--background-color-1a) 0%, var(--background-color-1a) 80px, var(--background-color-1b) 50%, var(--background-color-1a) calc(100% - 80px), var(--background-color-1a) 100%);
  color: var(--paragraph-color-1);
  font-weight: 200;
}

h1,
h2,
h3 {
  margin:0;
  font-weight: 200;
}

h1 {
  font-family: "Playfair", serif;
  color: var(--title-color-2);
}

h2,
h3 {
  color: var(--title-color-1);
}

p.eyebrow {
  color: var(--title-color-2);
}

a, a:visited {
  color: var(--link-color-1);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--link-color-2);
  transition: all 0.3s ease;
}

a.button,
a.button:visited {
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 5px;
  color: var(--link-color-2);
  background: var(--button-bg-color-1);
  border: 1px solid var(--button-border-color-1);
  padding: 0.3em 0.7em;
}

a.button:hover,
a.button:active{
  background: var(--button-bg-color-2);
  border: 1px solid var(--button-border-color-2);
  color: var(--button-text-color-2);
}

header {
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 10px;
  background: var(--background-color-1a);
  border-bottom: 1px solid var(--background-color-1b);
}

@media only screen and (max-width: 767px) {
  header {
    height: 60px;
  }
}

header .logo img {
  height: 60px;
}

@media only screen and (max-width: 767px) {
  header .logo img {
    height: 40px;
  }
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--button-border-color-1);
  border-radius: 5px;
  background: var(--button-bg-color-1);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--button-text-color-1);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav a:not(.login),
.nav a:not(.login):visited {
  background: transparent;
  border: 1px solid transparent;
}

.nav a:not(.login):hover,
.nav a:not(.login):active,
.nav a.active {
  color: var(--link-color-2);
  background: transparent;
  border: 1px solid var(--button-border-color-2);
}

@media only screen and (max-width: 767px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    gap: 8px;
    padding: 10px;
    background: var(--background-color-1a);
    border-bottom: 1px solid var(--background-color-1b);
  }

  .nav.open {
    display: flex;
  }

  .nav a,
  .nav a:visited {
    width: 100%;
    text-align: center;
    padding: 0.7em;
  }
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  padding: 10px;
  border-top: 1px solid var(--background-color-1b);
  font-size: 0.8em;
}

main {
  padding-top: 80px;
  min-height: calc(100vh - 40px);
}

@media only screen and (max-width: 767px) {
  main {
    padding-top: 60px;
  }
}

section {
  padding: 50px 5%;
  min-height: calc(100vh - 120px);
}

@media only screen and (max-width: 767px) {
  section {
    padding: 20px 5%;
    min-height: calc(100vh - 100px);
  }
}

section#hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  background-image: url(assets/images/bg-hero.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}

@media only screen and (max-width: 767px) {
  section#hero {
    background-image: url(assets/images/bg-hero-mob.jpg?v=6);
    background-size: 100% auto;
    background-position: top center;
  }
}

div.hero-content {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

@media only screen and (max-width: 767px) {
  div.hero-content {
    width: 80%;
    padding-bottom: 250px;
  }
}

div.hero-content h1 {
  font-size: 7em;
  color: var(--title-color-1);
}

@media only screen and (max-width: 767px) {
  div.hero-content h1 {
    font-size: 3em;
  }
}

div.hero-content h2,
div.hero-content h3 {
  color: var(--title-color-2);
}

div.hero-content h2 {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  div.hero-content h2 {
    font-size: 1.35em;
  }
}

div.hero-content h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 200px;
  height: 1px;
  background: linear-gradient(
    to right,
    #d4af37 0%,
    rgba(212, 175, 55, 0) 100%
  );
}

div.cards {
  width: 80%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

@media only screen and (max-width: 767px) {
  div.cards {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

div.card {
  height: 300px;
  padding: 20px;
  background: linear-gradient(0deg, var(--background-color-1b) 0%, var(--background-color-1a) 100%);
  border: 1px solid var(--line-color-2);
  border-radius: 10px;
  width: calc(25% - 20px);
  margin-right: 20px;
}

@media only screen and (max-width: 767px) {
  div.card {
    width: 70%;
    height: auto;
    margin-right: 0;
  }
}

div.card h3 {
  font-size: 1em;
  color: var(--title-color-2);
  text-transform: uppercase;
  position: relative;
  padding-top: 60px;
  margin-bottom: 20px;
  padding-bottom:20px;
  text-align: center;
}

div.card h3::before {
  content: '';
  position: absolute;
  left: calc(50% - 25px);
  top: 0;
  width: 50px;
  height: 40px;
  background-image: url(assets/images/icon-title.png);
}

div.card h3::after {
  content: '';
  position: absolute;
  left: calc(50% - 50px);
  bottom: 0;
  width: 100px;
  height: 1px;
  background: linear-gradient(
    to right,
    #d4af37 0%,
    rgba(212, 175, 55, 0) 100%
  );
}

div.card p {
  text-align: center;
}
