@import url("fonts.css");
@import url("header.css");

:root {
  --teal: #1a5c6b;
  --teal-light: #2a8a9e;
  --teal-dark: #0d3a44;
  --cream: #e8dfc4;
  --red: #c0392b;
  --red-dark: #8e2219;
  --navy: #0a1a20;
  --gold: #d4a843;
  --text: #e8dfc4;
}

body,
html {
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(232, 223, 196, 0.65);
  font-weight: 300;
  letter-spacing: 0.5px;
  width: 100%;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  background: #0a1a20;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
}

h1,
h2 {
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: 3px;
}

h3 {
  font-size: 35px;
  line-height: 45px;
}

h4 {
  font-size: 25px;
  line-height: 35px;
  text-transform: uppercase;
  font-weight: 400;
}
h5 {
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #2a8a9e;
  font-weight: 400;
  line-height: 1.5;
}

p {
  margin-bottom: 20px;
}

.anchor {
  display: block;
  position: relative;
  top: -200px;
  visibility: hidden;
}

.transition {
  transition: 0.5s ease;
}

.center {
  text-align: center;
}

.main-btn,
a.main-btn,
.main-btn2,
a.main-btn2 {
  padding: 12px 25px;
  background: var(--teal);
  border: 1.5px solid var(--teal-light);
  color: var(--cream);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  white-space: nowrap;
}

.main-btn:hover,
a.main-btn:hover,
.main-btn2:hover,
a.main-btn2:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
}

a.main-btn2,
.main-btn2 {
  border-color: #000;
  color: #000;
  background: none;
}

a.main-btn2:hover,
.main-btn2:hover {
  border-color: #000;
  background: #000;
  color: #fff;
}

@media only screen and (max-width: 767px) {
  h1,
  h2 {
    font-size: 40px;
    line-height: 50px;
  }

  h3 {
    font-size: 30px;
    line-height: 40px;
  }
  h4 {
    font-size: 20px;
    line-height: 30px;
  }
}
