/* public/css/main.css */
body {
  margin: 0;
  background: #000;
  color: #fff;
  
}
p.light {
    color:#fff;
} 

p {
    color: #333;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
}

/* Typography: Headings */
h1, h2, h3, h4 {
  font-family: 'open sans', Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1rem 0;
  color: inherit;
}
@media (max-width:899px){
h1 {
  font-size: 2rem;  /* ~40px */
  letter-spacing: -0.5px;
}

h2.darker, h3.darker {
    color: #000;
    letter-spacing: 0px;
    font-weight: 800;
}

h2 {
  font-size: 1.75rem;    /* ~32px */
  letter-spacing: 1px;
}

h3 {
  font-size: 1.25rem;  /* ~24px */
  letter-spacing: -0.2px;
}

h4 {
  font-size: 1.12rem;  /* ~19px */
  letter-spacing: -0.1px;
  font-weight: 600;
}}
@media (min-width:900px){

h1 {
  font-size: 2.5rem;  /* ~40px */
  letter-spacing: -0.5px;
}

h2.darker, h3.darker {
    color: #000;
    letter-spacing: 0px;
    font-weight: 800;
}

h2 {
  font-size: 2rem;    /* ~32px */
  letter-spacing: 1px;
}

h3 {
  font-size: 1.5rem;  /* ~24px */
  letter-spacing: -0.2px;
}

h4 {
  font-size: 1.2rem;  /* ~19px */
  letter-spacing: -0.1px;
  font-weight: 600;
}}


.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem;
}


.headline {
  font-size: 2.5rem;
  margin: 0;
  font-weight: 700;
}

.tagline {
  font-size: 1.2rem;
  color: #aaa;
}

.intro p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.button {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
      font-weight: 400;
    font-size: 18px;
}

.features {
  margin-top: 3rem;
}

.feature {
  margin-bottom: 2rem;
}

.feature h2 {
  font-size: 1.5rem;
  font-weight: 700;
}

.number {
  font-size: 1.8rem;
  margin-right: 0.5rem;
  color: #ccc;
  font-weight: 700;
}

/* Header Styles */
.header {
  background-color: #171717;
  color: #fff;
  padding: 0px;
  position: relative;
  z-index: 10;
}

.logo {
  height: 40px;
}

.container.head5 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition:all .5s ease;
}

.nav-links a:hover {
  color: #e1e1e1;
  text-decoration: none;
  font-weight: 500;
  transition:all .5s ease;
}

.btn-login {
  padding: 0.3rem 0.75rem;
  border: 1px solid #fff;
  border-radius: 4px;
}

.menu-toggle {
  display: none;
  background: none;
  color: #fff;
  font-size: 1.8rem;
  border: none;
  cursor: pointer;
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 250px;
  height: 100%;
  background-color: #000;
  padding: 2rem 1.5rem;
  transition: left 0.3s ease;
  z-index: 20;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
}

.mobile-nav li {
  margin-bottom: 1.5rem;
}

.mobile-nav a {
  color: #fff;
  font-size: 1.2rem;
  text-decoration: none;
}

.close-nav {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav.open {
    left: 0;
  }
}
.active-link {
    color: #daaa31 !important;
    font-weight: 500;
    position: relative;
    padding-left:5px;
}


