@import "./vars.css";
@import './fonts.css';

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body,
html {
  height: 100%;
  margin: 0;
  font-family: 'Gotham Light';
  color: #fff;
  position: relative;
  line-height: 22px;
}

h1 {
  font-size: 90px;
  font-family: 'Baskerville Bold';
  text-transform: uppercase;
  line-height: normal;
}

.single_page_header {
  font-size: 70px;
}

h2 {
  font-family: "UT Laurell Bold";
  font-size: 45px;
  margin-bottom: 50px;
  margin-top: 75px;
  line-height: normal;
}

h3 {
  font-family: "Gotham Book";
  text-transform: uppercase;
}

.center-text {
  text-align: center;
}

@media screen and (max-width: 1240px) {
  h2 {
    font-size: 35px;
  }
  h1 {
    font-size: 70px;
  }
}

@media screen and (max-width: 600px) {
  h2 {
    font-size: 30px;
  }
  h1, .single_page_header {
    font-size: 60px;
  }
}

@media screen and (max-width: 485px) {
  h2 {
    font-size: 30px;
  }
  h1, .single_page_header {
    font-size: 42px;
  }
}


ul {
  list-style: none;
}

fieldset {
  border: none;
}

input {
  height: 32px;
  padding: 0 8px;
  border-radius: 3px;
}

textarea {
  padding: 0 8px;
  border-radius: 3px;
}

main {
  min-height: 100vh;
}

main.single_page {
  padding: 150px 10px 100px 10px;
  background-color: var(--darkBlueTheme);
}

@media screen and (max-width: 900px) {
  main.single_page {
    padding-top: 100px;
  }
}

.bold_text {
  font-family: 'Gotham Book';
  font-weight: bold;
}

.button {
  font-size: 13px;
  border: none;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  letter-spacing: 0.03em;
  color: white;
  background-color: var(--yellowTheme);
  box-sizing: border-box;
  height: 30px;
  width: 100px;
  padding: 0 18px;
  display: inline-block;
  transition: all 0.23s ease-in-out 0s;
}

.button:hover {
  background-color: var(--yellowHoverTheme);
  cursor: pointer;
}

button.cta {
  height: 50px;
  width: 200px;
  font-size: 18px;
}

button.link_button {
  cursor: pointer;
  background-color: transparent;
  border: none;
  transition: all 0.3s ease;
}

button.add_to_cart {
  height: 30px;
  width: 120px;
  font-size: 15px;
}

.parallax1 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(/images/parallax-demo2.jpg);
  height: 100%;
  min-height: 600px;
  background-position: center top;
}

.parallax2 {
  background-image: url(/images/parallax2.jpg);
  height: 50vh;
  min-height: 285px;
  background-position: center;
}

.parallax3 {
  background-image: url(/images/parallax3.jpg);
  height: 50vh;
  min-height: 285px;
  background-position: center;
}

.parallax4 {
  background-image: url(/images/parallax4.jpg);
  height: 50vh;
  min-height: 285px;
  background-position: center;
}

.parallax1,
.parallax2,
.parallax3,
.parallax4 {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: 0;
}

.heading-sm {
  position: absolute;
  color: #fff;
  font-size: 550%;
  top: 38%;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 8px;
  text-shadow: 0 0 10px #000;
}

#alert {
  line-height: 1.6;
}
#logo {
  position: absolute;
  width: 100%;
  top: 20%;
  text-align: center;
}

header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 999;
}

section {
  overflow: auto;
  background-color: var(--darkBlueTheme);
  padding: 0 75px;
}

@media screen and (max-width: 1000px) {
  section {
    padding: 0 20px;
  }
}

section p,
h2,
a {
  color: #fff;
}

p {
  text-align: justify;
}

.section_div {
  margin: 100px 0;
}

#intro {
  line-height: 30px;
}

iframe {
  width: 100%;
}

.pay li {
  display: inline-block;
  padding: 2.6%;
}

.first {
  margin-top: 0;
}

.last {
  margin-bottom: 0;
}

#payment_success_page {
  max-width: 530px;
  margin: 0 auto;
}

#payment_success_page > * {
  text-align: center;
}

#success_page_button button {
  width: 133px;
  height: 42px;
}

@keyframes animate {
  0% {
    transform: translateY(-50px);
    text-shadow: 0 50px 0 #fff;
  }
  20% {
    transform: translateY(0px);
    text-shadow: 0 10px 0 #fff;
  }
  40% {
    transform: translateY(0px);
    text-shadow: 0 -10px 0 #fff;
  }
  60% {
    transform: translateY(0px);
    text-shadow: 0 0px 0 #fff;
  }
  100% {
    transform: translateY(100px);
    text-shadow: 0 -50px 0 #fff;
  }
}

#join_fb_page {
  margin-bottom: 30px;
}

.external_link {
  color: var(--lightBlueTheme);
  text-decoration: none;
}

.external_link:hover {
  text-decoration: underline;
}
