/*Global styles*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --main-font: "Paytone One", sans-serif;
  --secondary-font: "Cinzel Decorative", cursive;
  --body-font: "Nunito", sans-serif;
  --main-font-color: #c82540;
  --secondary-font-color: #f9b200;
  --body-font-color: #151514;
}

html {
  font-family: var(--body-font);
  font-size: 10px;
  color: var(--body-font-color);
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background-color: var(--body-font-color);
  color: #fff;
}

body:after {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.04;
  content: "";
  background: transparent url(../img/noise.png) repeat top left;
  pointer-events: none;
  z-index: 999;
}

section {
  overflow: hidden;
}

img {
  width: 100%;
  max-width: 100%;
}

a {
  color: #fff;
  text-decoration: none;
}

a:hover {
  color: #fff;
  text-decoration: none;
}

ul {
  list-style: none;
}

p,
a {
  font-size: 1.5rem;
}

.container {
  width: 100%;
  max-width: 122.5rem;
  margin: 0 auto;
}

.flex {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* HEADER STYLES */

header {
  width: 100%;
  height: 7vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: fixed;
  z-index: 1600;
  background-color: rgba(21, 21, 21, 0.5);
}

.small-nav {
  width: 90%;
  height: 10vh;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1600;
}

.logo img {
  width: 10rem;
  height: 5vh;
}

.menu-toggler {
  position: fixed;
  right: 2rem;
  width: 4rem;
  height: 4rem;
  display: flex;
  border-radius: 4px;
  cursor: pointer;
  z-index: 1600;
  background-color: rgba(21, 21, 20, 0.5);
}

.menu-toggler i {
  font-size: 30px;
  color: #fff;
  margin: auto;
}

.top-nav {
  position: absolute;
  top: 0;
  left: -100%;
  background-color: var(--body-font-color);
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: left 650ms ease-in-out;
  z-index: 1500;
}

.nav-list {
  width: 100%;
  height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  z-index: 1500;
}

.nav-link {
  font-family: var(--secondary-font);
  text-transform: uppercase;
  font-size: 2rem;
  z-index: 1500;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--secondary-font-color);
}

.top-nav.open {
  left: 0;
  transition: left 650ms ease-in-out;
}

/* BUTTONS */

.btn {
  width: 150px;
  padding: 3px 0 6px 0 !important;
  /* background-color: #fff; */
  border: 1px solid var(--secondary-font-color);
  position: relative;
  overflow: hidden;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.5rem;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(249, 178, 0, 3),
    transparent
  );
  transition: all 650ms;
}

.btn:hover,
.btn:focus {
  color: #fff;
}

.btn:hover::before,
.btn:focus::before {
  left: 100%;
}

/* FOOTER  */

.dark-bg {
  background-color: #151514;
  color: #fff;
}

.light-bg {
  background-color: #c82540;
}

.contact i {
  background-color: #c82540;
  color: #fff;
  font-size: 1.5rem;
  padding: 0.7rem 0;
  border-radius: 50%;
  /* display: inline-block; */
  vertical-align: middle;
  width: 30px;
  height: 30px;
  text-align: center;
  margin: 0.5rem;
}

.contact span a {
  color: var(--lightcolor);
  font-size: 1rem;
  margin: 0.5rem;
}

.contact h3 {
  font-family: var(--GothicStand);
  font-size: 1.2rem;
}
