/**CONTROL**/

:root {
  --primary: #b32910;
  --light: #faebd7;
  --dark: #161616;
  --offset: #eea300;
  --twoOffser: #b47eb3;
}
* {
  box-sizing: border-box;
  font: small;
}
body {
  background-image: linear-gradient(to top, #b32910 0%, #220101 100%);
  margin-bottom: 0;
  margin-right: 0;
  margin-left: 0;
  font-family: "Montserrat", sans-serif;
  min-height: 100vh;
}

@media (min-width: 1310px) {
  .bodywhole {
    margin-left: 14%;
    margin-right: 16%;
  }
}
/**END OF CONTROL**/

/**COVER**/
header {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
header h1,
header button {
  position: relative;
  z-index: 10;
}
header h1 {
  text-transform: uppercase;
  letter-spacing: 1pt;
  font-size: 7em;
  color: #faebd7;
  font-family: "Montserrat", sans-serif;
}
header button {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  bottom: 160px;
  left: calc(50% - 60px);
  width: 120px;
  height: 50px;
  border: 0;
  box-shadow: 2px 1px 20px 0 rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  cursor: pointer;
  background: #faebd7;
  font-size: 1em;
  color: #09203f;
  transition: all 0.8s cubic-bezier(0.645, 0.045, 0.355, 1),
    transform 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955),
    box-shadow 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  overflow: hidden;
}
header button:hover {
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5);
}
header button:focus {
  outline: 0;
}
header button:before,
header button:after {
  font-family: "Font Awesome 5 Free";
  transition: all 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
  top: 17px;
}
header button:before {
  content: "JOIN THE CLUB";
  opacity: 1;
  left: 53px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
header button:after {
  content: "";
  opacity: 0;
  left: 0;
  position: absolute;
}
header .triangle {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #b32910 0%, #460b0b 100%);
  transition: all 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
header .triangle.left {
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
}
header .triangle.right {
  -webkit-clip-path: polygon(100% 0, 0 0, 100% 100%);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}
header.open .triangle.left {
  -webkit-clip-path: polygon(0 0, 0 100%, 0 100%);
  clip-path: polygon(0 0, 0 100%, 0 100%);
}
header.open .triangle.right {
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%);
  clip-path: polygon(100% 0, 100% 0, 100% 100%);
}
header.open button {
  left: 40px;
  bottom: 40px;
  width: 50px;
  border-radius: 50%;
}
header.open button:before {
  opacity: 0;
  left: 100%;
}
header.open button:after {
  opacity: 1;
  left: 18px;
}
header.open button.menu {
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  border-radius: 0;
}
header.open button.menu:after {
  left: -100%;
}
/**END OF COVER**/

/**NAVIGATION**/

nav {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
  flex-wrap: wrap;
  align-content: center;
  text-transform: uppercase;
}
nav h2 {
  font-size: 2.3em;
  text-align: right;
}
nav ul {
  list-style: none;
}
.dividerVertical {
  height: 300px;
  width: 6px;
  background-color: var(--dark);
}
.navwords {
  margin-bottom: 0;
  padding-right: 30px;
  margin-left: 14px;
}
nav ul a {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 2;
  letter-spacing: 1pt;
  font-size: 2em;
  color: #09203f;
  -webkit-animation: fadeDown 0.5s forwards;
  animation: fadeDown 0.5s forwards;
  opacity: 0;
  cursor: pointer;
  transform: translateY(-20px);
  transition: all 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  margin-right: 14px;
}
nav ul a:hover {
  text-shadow: 2px 1px 40px rgba(0, 0, 0, 0.5);
  opacity: 0.8;
}
nav ul a:nth-child(1) {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
nav ul a:nth-child(2) {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}
nav ul a:nth-child(3) {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
nav ul a:nth-child(4) {
  -webkit-animation-delay: 1.3s;
  animation-delay: 1.3s;
}
nav #nav-close {
  position: fixed;
  top: 40px;
  right: 40px;
  font-size: 1.5em;
  cursor: pointer;
  -webkit-animation: fadeDown 0.5s forwards;
  animation: fadeDown 0.5s forwards;
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
  opacity: 0;
  color: #09203f;
  transform: translateY(-20px);
}
@-webkit-keyframes fadeDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/**END OF NAVIGATION**/

/**CONTENT**/

.content section {
  justify-content: center;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1em;
  letter-spacing: 2pt;
  color: #faebd7;
  display: flex;
}

/**area one**/

.areaone {
  padding-top: 90px;
}
/**end of arena one**/

/**area two**/

.areatwo {
  margin-top: 70px;
  font-family: "Montserrat", sans-serif;
}

/**content in arena two**/

.about {
  display: flex;
  justify-content: center;
}
.about img {
  float: left;
}
.about p {
  color: whitesmoke;
  font-size: 24px;
  line-height: 34px;
}
.words {
  flex-wrap: wrap;
}

/**GALLERY**/

.grid {
  max-width: 1700px;
  margin-left: auto;
  margin-right: auto;
}
.gallery {
  grid-template-columns: auto auto auto !important;
  display: grid !important;
}
.gallery-item {
  margin: 2%;
  padding: 4%;
}
.imgGallery {
  width: 100%;
  height: 100%;
  object-position: 50% 50%;
  object-fit: cover;
  background-color: var(--dark);
  border-radius: 14px;
}
.imgGallery2 {
  width: 100%;
  height: 100%;
  object-position: 50% 50%;
  object-fit: cover;
  background-color: #31020c;
  border-radius: 14px;
}
/**END OF GALLERY**/
/**end of area two**/

/**heartbreak club info**/
.HBCcontent {
  margin-top: -40px;
}
.HBCcontent p {
  color: whitesmoke;
  font-size: 30px;
  line-height: 39px;
  text-align: center;
}
.lightblue {
  color: #eea300;
}
.divide {
  font-size: 50px;
}
/**end of heartbreak club info**/
.theteam {
  margin-bottom: 90px;
}
/**END OF CONTENT**/

/**MEDIA**/

@media (min-width: 1310px) {
  .bodywhole {
    margin-left: 14%;
    margin-right: 14%;
  }
}
@media (max-width: 1219px) {
  .bodywhole {
    margin-left: 9%;
    margin-right: 9%;
  }
  .triangle h1 {
    text-align: center;
  }
}
@media (max-width: 976px) {
  .imagetwo {
    margin-top: 30px;
  }
  .gallery-item {
    padding: 0;
  }
  .divide {
    font-size: 38px;
  }
}
@media (max-width: 880px) {
  .imagetwo {
    margin-top: 100px;
  }
  .triangle h1 {
    font-size: 6em;
  }
}
@media (max-width: 760px) {
  .about {
    flex-direction: column;
  }
  .imageone {
    padding-left: 23%;
  }
  .imagetwo {
    padding-left: 23%;
    margin-top: 0;
  }
  .triangle h1 {
    font-size: 5em;
  }
}
@media (max-width: 671px) {
  .imageone {
    padding-left: 15%;
  }
  .imagetwo {
    padding-left: 15%;
  }
  .triangle h1 {
    font-size: 4em;
  }
}
@media (max-width: 631px) {
  .triangle h1 {
    font-size: 3em;
    padding-right: 5px;
    padding-left: 5px;
  }
}
@media (max-width: 531px) {
  .imageone {
    padding-left: 10%;
  }
  .imagetwo {
    padding-left: 10%;
  }
  .HBCcontent p {
    color: whitesmoke;
    font-size: 23px;
    line-height: 34px;
    text-align: center;
  }
}
@media (max-width: 471px) {
  .imageone {
    padding-left: 3%;
  }
  .imagetwo {
    padding-left: 3%;
    margin-top: 0;
  }
  .triangle h1 {
    font-size: 3.4em;
  }
}
@media (max-width: 487px) {
  .dividerVertical {
    height: 6px;
    width: 300px;
    background-color: var(--dark);
  }
  nav h2 {
    font-size: 2.3em;
    text-align: center;
  }
}
@media (max-width: 417px) {
  .triangle h1 {
    font-size: 2.3em;
  }
}
@media (max-width: 487px) {
  .dividerVertical {
    height: 6px !important;
    width: 300px !important;
  }
  .navwords h2 {
    text-align: center;
  }
}
/**END OF MEDIA**/

/**FOOTER**/

footer {
  padding-top: 20px;
  padding-bottom: 20px;
  background: rgb(20, 20, 20);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-right: 0 !important;
  margin-left: 0;
  color: var(--light);
}
.rightside {
  text-align: end;
  padding-right: 13%;
  font-size: 1rem;
}
.leftside {
  padding-left: 13%;
  color: var(--light);
  font-weight: 500;
  font-size: 1.5rem;
}
.leftside a {
  font-size: 1.2rem !important;
  padding-left: 20px;
  color: var(--light);
}
@media (max-width: 900px) {
  .leftside {
    padding-left: 8%;
  }
  .rightside {
    padding-right: 4%;
  }
}
/**END OF FOOTER**/
