/* -------------------------------------------------
   BASE PAGE STYLING
------------------------------------------------- */

body{
  margin:0;
  font-family:Roboto, sans-serif;
  background:#040000;
  color:#f8f8f8;
}

header{
  padding:10px;
  text-align:center;
  border-bottom:1px solid rgba(255,255,255,.08);
}

footer{
  padding:40px 20px;
  text-align:center;
  border-top:1px solid rgba(255,255,255,.08);
}

/* -------------------------------------------------
   BACKGROUND UTILITIES
------------------------------------------------- */

.bg-grey{
  background:#1c1c1c;
}

.bg-bluegrey{
  background:#182028;
}

/* -------------------------------------------------
   TEXT ALIGN UTILITIES
------------------------------------------------- */

.txt-left{ text-align:left; }
.txt-center{ text-align:center; }
.txt-right{ text-align:right; }

/* -------------------------------------------------
   PAGE FONTS
------------------------------------------------- */
:root{
--default-font: Roboto;
--heading-font: Raleway;
--nav-font: Raleway;
}

.txt-italic{
  font-style: italic;
}

.txt-shade{
  color: #cccccc;
}

.txt-small{
  font-size: 0.7em;
}

/* -------------------------------------------------
   MARGIN UTILITIES
------------------------------------------------- */

.ml-10{ margin-left:10px; }
.ml-20{ margin-left:20px; }
.ml-30{ margin-left:30px; }
.ml-40{ margin-left:40px; }

.mt-10{ margin-top:10px; }
.mt-20{ margin-top:20px; }
.mt-30{ margin-top:30px; }
.mt-40{ margin-top:40px; }

.mr-10{ margin-right:10px; }
.mr-20{ margin-right:20px; }
.mr-30{ margin-right:30px; }
.mr-40{ margin-right:40px; }

.mb-10{ margin-bottom:10px; }
.mb-20{ margin-bottom:20px; }
.mb-30{ margin-bottom:30px; }
.mb-40{ margin-bottom:40px; }

/* Padding */
.pl-10{ padding-left:10px; }
.pl-20{ padding-left:20px; }
.pl-30{ padding-left:30px; }
.pl-40{ padding-left:40px; }

/* -----------------------------
FIXED HEADER
----------------------------- */

.site-header{
  position: fixed;
  top:0;
  left:0;
  width:100%;

  background:linear-gradient(
    #040000,
    #0b1219
  );

  border-bottom:1px solid rgba(255,255,255,.08);
  box-shadow:0 4px 18px rgba(0,0,0,.6);
  z-index:1000;
}

.site-header::after{
  content:"";
  display:block;
  height:2px;
  background:linear-gradient(
    to right,
    transparent,
    #D9A441,
    transparent
  );
  opacity:.35;
}

.logo-tagline{
  font-size:12px;
  color:#a8b3bf;
  margin-left:10px;
}

/* -------------------------------------------------
   HERO CORE SYSTEM
------------------------------------------------- */

.hero{
  padding:90px 20px;
}

.hero-container{
  max-width:1200px;
  margin:auto;
}

.hero-title{
  font-family:Raleway, sans-serif;
  font-size:32px;
  font-weight:800;
  margin-bottom:20px;
}

.hero-text{
  margin-top:0px;
  max-width:800px;
}

.hero-sub{
  font-size:18px;
  margin-bottom:25px;
  opacity:.9;
}

.hero-btn{
  display:inline-block;
  padding:12px 24px;
  background:#2bd1b3;
  color:#000;
  font-weight:700;
  border-radius:6px;
  text-decoration:none;
}

.hero-media{
  margin-top:30px;
}

.hero-media figcaption{
  position:absolute;
  left:-9999px;
}

.hero-media img{
  width:100%;
  max-width: 800px;
  border-radius:14px;
  box-shadow:0 30px 70px rgba(0,0,0,.65);
}

.hero-body{
  font-size:16px;
  line-height:1.4;
  margin-bottom:20px;
  opacity:.92;
}

.hero-list{
  margin-top:30px;
  margin-bottom:30px;
  padding-left:20px;
}

.hero-list li{
  margin:8px 0;
  font-size:17px;
  line-height:1.05;
}

.hero-note{
  margin-top:20px;
  font-weight:600;
  opacity:.95;
}

.hero-glow{
  box-shadow:
  0 0 0 1px rgba(255,255,255,.06),
  0 10px 40px rgba(0,0,0,.7),
  0 0 60px rgba(40,120,255,.15);
}

/* -------------------------------------------------
   HERO A  (TEXT | IMAGE)
------------------------------------------------- */

.hero-a .hero-layout{
  display:flex;
  gap:40px;
  align-items:center;
}

.hero-a .hero-text{ flex:1; }
.hero-a .hero-media{ flex:1; }

/* -------------------------------------------------
   HERO B (CENTERED)
------------------------------------------------- */

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

.hero-b .hero-media{
  margin-top:10px;
}

/* -------------------------------------------------
   HERO C (IMAGE | TEXT)
------------------------------------------------- */

.hero-c .hero-layout{
  display:flex;
  gap:40px;
  align-items:center;
}

.hero-c .hero-media{ flex:1; }
.hero-c .hero-text{ flex:1; }

/* -----------------------------
NAVIGATION
----------------------------- */

.nav-bar{
  max-width:1200px;
  margin:auto;
  padding:12px 20px;
  display:flex;
  align-items:center; /* fixed invalid value */
  justify-content:space-between;
}

/* Logo */

.logo img{
  height:42px;
  letter-spacing:.04em;
}

/* Desktop Menu */

.nav-menu{
  display:block;
}

.nav-menu ul{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:row;      /* horizontal on desktop */
  align-items:center;
  gap:22px;
  background:none;
}

.nav-menu a{
  text-decoration:none;
  color:#f8f8f8;
  font-size:16px;
}

/* Hamburger (hidden on desktop) */

.nav-toggle{
  display:none;
  background:none;
  border:none;
  font-size:28px;
  color:white;
  cursor:pointer;
  opacity:.8;
  transition:.2s;
}

.nav-toggle:hover{
  opacity:1;
}

/* Close button hidden on desktop */

.nav-close{
  display:none;
}

/* --------------------------------
PRIMARY CTA BUTTON
-------------------------------- */

.btn-primary{
  display:inline-block;
  padding:14px 24px;
  background:#D9A441;
  color:#000;
  font-weight:700;
  border-radius:8px;
  text-decoration:none;
  transition:all .2s ease;
}

.btn-primary:hover{
  background:#E6B75B;
}

/* --------------------------------
SECONDARY BUTTON
-------------------------------- */

.btn-secondary{
  display:inline-block;
  padding:14px 24px;
  background:#223344;
  color:#fff;
  font-weight:600;
  border-radius:8px;
  text-decoration:none;
  border:1px solid rgba(255,255,255,.15);
  transition:all .2s ease;
}

.btn-secondary:hover{
  background:#2c4156;
}

.btn-row{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

/* -----------------------------
   LINKS - Centered / White
----------------------------- */
.center-links{
  text-align:center;
}

/* Link styling */
.center-links a{
  font-size: 12px;
  color:#cfcfcf;
  text-decoration:none;
  margin:0 11px;
  transition:color 0.2s ease;
}

/* Hover effect */
.center-links a:hover{
  color:#cccccc;
}

/* -----------------------------
TABLET / MOBILE NAV
----------------------------- */

@media (max-width:1366px){

  .nav-toggle{
    display:block;
  }

  .nav-menu{
    position:absolute;
    top:60px;
    left:0;
    width:100%;
    background:#040000;
    display:none;
    z-index:1001;
  }

  .nav-menu.active{
    display:block;
  }

  .nav-menu ul{
    flex-direction:column;
    align-items:flex-start;
    padding:20px;
    gap:15px;
    background:#1c1c1c;
  }

  .nav-close{
    display:block;
    position:absolute;
    top:12px;
    right:25px;
    font-size:26px;
    color:#fff;
    background:none;
    border:none;
    cursor:pointer;
  }

  .nav-close:hover{
    color:#d4a84f;
  }

}

/* -------------------------------------------------
HERO RESPONSIVE
------------------------------------------------- */

@media (max-width:1366px){

  .hero-a .hero-layout,
  .hero-c .hero-layout{
    flex-direction:column;
    align-items:flex-start;
  }

  .hero-title{
    font-size:30px;
    padding-top:10px;
  }

}

/* -------------------------------------------------
IPHONE
------------------------------------------------- */

@media (max-width:576px){

  .hero{
    padding:70px 20px;
  }

  .hero-title{
    font-size:26px;
  }

  .hero-sub{
    font-size:16px;
  }

  .ml-30{
    margin-left:10px;
  }

  .center-links a{
    font-size:11px;
  }

}

