@font-face {
    font-family: Body;
    src: url(../fonts/garamond_[allfont.ru].ttf);
}

@font-face {
    font-family: Title;
    src: url(../fonts/LibreBaskerville-Regular.ttf);
}

@font-face {
    font-family: clear;
    src: url(../fonts/LOUD\ AND\ CLEAR\ PERSONAL\ USE.ttf);
}

:root {
    --white-background: #fff;
    --off-black-background: #171916;
    --site-color-01: #BB201F;
    --site-color-01-hover: #7f1111;
    --site-color-02: #fff;
    font-size: 62.5%;
}

body {
    background-color: black;
}

body:after {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    z-index: hidden;
}

.wrapper-main {
    width: 1000px;
    margin: 0 auto;
}

h1 {
    font-size: 7rem;
    line-height: 1.5;
    color: #fff;
    font-family: Title;
    font-weight: 600;
    text-transform: uppercase;
}

h2 {   
    font-size: 3rem;
    line-height: 1.5;
    color: #fff;
    font-family: Title;
    font-weight: 600;
    text-transform: uppercase;
}

h3 {   
    font-size: 2.6rem;
    line-height: 1.5;
    color: #fff;
    font-family: Title;
    font-weight: 600;
    text-transform: uppercase;
}

p {
    font-size: 1.8rem;
    line-height: 1.75;
    color: #fff;
    font-family: Body;
}

a {
    cursor: pointer;
    font-size: 1.8rem;
    line-height: 1.75;
    color: #fff;
    font-family: Body;
    
}

/* THIS IS OUR HEADER */

.header-main {
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    background-color: #171916;
    display: flex;
    justify-content: center;
    z-index: 1000;
}

.header-main-logo {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 0; /* Remove left padding */
}

.header-main-logo img {
    height: 40px;
    align-self: center;
}

.header-main-nav {
    width: fit-content;
    height: 100%;
}

.header-main-nav ul {
    list-style: none;
    margin-left: 30px;
    margin-right: 30px;
}

.header-main-nav.open ul {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.header-main-nav.open ul li {
    display: inline;
    float: none;
    text-align: center;
    margin: 0;
    width: auto;
}

.header-main-nav.open ul li a {
    display: block;
    padding: 5px 15px;
    width: 100%;
    font-size: 1.6rem;
    color: white;
    text-decoration: none;
}

.header-main-nav.open ul li a:hover {
    background-color: var(--site-color-01-hover);
    color: white;
}

.header-main-logo-2 {
    width: fit-content;
    height: 100%;
    padding-left: 60px;
    display: flex;
}

.header-main-logo-2 img {
    height: 40px;
    align-self: center;
}

.header-main-sm {
    width: fit-content;
    height: 100%;
    margin-right: auto; /* This pushes it to the left */
    padding-left: 30px;
    display: flex;
    align-items: center;
    column-gap: 20px;
}

.header-main-sm-2 {
    width: fit-content;
    height: 100%;
    margin-left: auto; /* This pushes it to the right */
    padding-right: 30px;
    display: flex;
    align-items: center;
    column-gap: 20px;
}

.header-main-sm-x {
    width: 30px;
    height: 30px;
    background-image: url(../img/logos/x-logo.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.header-main-sm-insta {
    width: 30px;
    height: 30px;
    background-image: url(../img/logos/insta-logo.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.header-main-sm-lf {
    width: 30px;
    height: 30px;
    background-image: url(../img/logos/lf-logo.png);
    background-repeat: no-repeat;
    background-size: contain; /* Ensure the full image fits */
    background-position: center; /* Center the image inside the div */
}

.header-main-sm-of {
    width: 30px;
    height: 30px;
    background-image: url(../img/logos/of-logo.png);
    background-repeat: no-repeat;
    background-size: contain; /* Ensure the full image fits */
    background-position: center; /* Center the image inside the div */
}

.header-main-sm-ca {
    width: 30px;
    height: 30px;
    background-image: url(../img/logos/cashapp-logo.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.header-main-sm-throne {
    width: 30px;
    height: 30px;
    background-image: url(../img/logos/throne-logo.png);
    background-repeat: no-repeat;
    background-size: contain; /* Ensure the full image fits */
    background-position: center; /* Center the image inside the div */
}

.burger-menu {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 10px;
    z-index: 999;
}

.burger-menu span {
    width: 30px;
    height: 3px;
    background: white;
    border-radius: 2px;
}

/* Hide nav by default, show on toggle */
.header-main-nav {
    display: none;
    position: absolute;
    top: 60px;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
    z-index: 998;
}

.header-main-nav.open {
    display: flex;
}

.header-main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.header-main-nav li {
    margin: 10px 0;
}





@media (max-width: 768px) {
  .header-main {
    flex-direction: column;
    align-items: center;
    height: auto;
    padding: 10px 0;
  }

  :root {
    font-size: 55%;
  }


  .header-main-logo {
    flex-direction: row;
    width: 50%;
    gap: 10px;
    padding: 10px 0;
  }

  .header-main-logo img {
    height: 35px;
  }

  .burger-menu {
    display: flex;
    padding: 10px;
    margin: 0 auto;
  }

   .header-main-sm,
  .header-main-sm-2 {
    display: none;
  }

  .header-main-nav {
    width: 100%;
    top: 100%;
    background: rgba(0, 0, 0, 0.95);
  }

  .header-main-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .header-main-nav.open ul {
    flex-direction: column !important;
    align-items: center;
    gap: 15px;
}

.header-main-nav.open {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    padding: 20px 0;
    height: auto;
    min-height: 25vh; /* This makes it extend down the full screen when open */
    z-index: 998;
  }

  .header-main-nav ul li a {
    padding: 10px;
    font-size: 1.4rem;
  }
}

@media (max-width: 390px) {
  .header-main-sm, .header-main-sm-2 {
    flex-wrap: wrap;
    column-gap: 10px;
    padding: 5px 0;
  }

  .header-main-logo img {
    height: 30px;
  }

  .burger-menu span {
    width: 25px;
    height: 2.5px;
  }

  .header-main-nav ul li a {
    font-size: 1.2rem;
  }
}



