/* ========================
   GLOBAL RESET
======================== */

html,body{
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
  background: #04070a;
}

*{
  box-sizing: border-box;
}

/* ========================
   HEADER
======================== */

.site-header{
  height: 70px;
  background: rgba(5,8,10,.95);
  border-bottom: 1px solid #7b5838;
  position: relative;
  z-index: 100;
}

.site-header::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #7b5838;
}

.site-header::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #7b5838, #3ddaff, #7b5838, transparent);
}

.header-container{
  max-width: 1300px;
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 45px;
}

/* MOBILE BUTTON */
.mobile-menu{
  display: none;
  width: 32px;
  height: 24px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.mobile-menu span{
  display: block;
  width: 100%;
  height: 2px;
  margin-bottom: 7px;
  background: #3ddaff;
  box-shadow: 0 0 8px rgba(61,218,255,.7);
}

/* BRAND */
.brand{
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-flask{
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 0 8px rgba(61,218,255,.25));
}

.brand-wordmark{
  width: 125px;
  height: auto;
}

/* NAVIGATION */
.main-nav{
  display: flex;
  align-items: center;
  gap: 34px;
}

.main-nav a{
  font-family: "Cinzel", serif;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color:#d8c7a7;
  position: relative;
}

.main-nav a:hover,
.main-nav .active{
  color: #3ddaff;
}

.main-nav a.active::after{
  content:"";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #3ddaff;
  box-shadow: 0 0 8px #3ddaff;
}

/* SOCIAL */
.social-links{
  display: flex;
  align-items: center;
  gap: 18px;
}

.social-links a{
  color: #b08a55;
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 1px;
}

