/* General Styles */
html {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #000;
  color: #fff;
}

body {
  margin: 0;
}

#menu-toggle {
  display: none;
}

.brand-font {
  color: #17bdca;
}

.brand-background {
  background-color: rgb(0 225 255);
}

.brand-background:hover {
  background-color: rgb(0 225 255 / 33%);
  color: white !important;
  border: 1px solid white;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Navbar Styles */
#navbar {
  display: flex;
  justify-content: space-between; /* Space between logo and other content */
  align-items: center;
  padding: 20px 0;
}

#logo {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  float: left;
}

#nav-links {
  display: flex;
  gap: 30px; /* Space between navigation links */
  margin-right: auto; /* Push navigation links to the right of the logo */
  justify-content: flex-end; /* Align navigation links to the right */
  align-items: baseline; /* Align navigation links baseline to the center */
}

#nav-links a {
  text-decoration: none;
  color: #ccc;
  font-size: 16px;
  transition: color 0.3s ease;
}

#nav-links a:hover {
  color: #fff;
}

.auth-links {
  display: flex;
  gap: 20px; /* Space between Login and Get Started */
  justify-content: flex-end; /* Align auth links to the right */
}

#login {
  color: #ccc;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

#login:hover {
  color: #fff;
}

a#get-started {
  padding: 10px 20px;
  color: #000;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  font-size: 16px;
  transition: background-color 0.3s ease, color 0.6s ease;
}

/* Hero Section */
#hero {
  box-shadow: 0 0 20px rgb(9 225 255 / 33%);
  text-align: center;
  padding: 100px 0;
  transition: 1s;
}

#hero .subtitle {
  letter-spacing: 1px;
  font-size: 14px;
  text-transform: uppercase;
}

#hero .title {
  font-size: 48px;
  line-height: 1.2;
  margin: 20px 0;
}

#hero .description {
  font-size: 18px;
  margin: 20px 0;
  color: #ccc;
}

#hero .cta {
  display: inline-block;
  margin-top: 20px;
  padding: 15px 30px;
  color: #000;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Responsive Navigation */
@media (max-width: 768px) {
  #nav-links {
    display: flex;
    flex-direction: column;
    background: #111;
    width: 85%;
    transition: 1s;
    /* gap: 20px; */
    position: absolute;
    top: 100%;
    right: -100%;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 5px 50px black;
  }

  #navbar {
    justify-content: space-between;
    position: relative;
    z-index: 10;
  }

  #menu-toggle {
    display: inline;
    float: right;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
  }

  #nav-links.active {
    right: 0px;
  }
  #hero.active {
    opacity: 0.2;
  }

  #nav-links.active a {
    font-size: 1.3rem !important;
  }

  .feat-boxes {
    grid-template-columns: 1fr; /* 1 column layout for smaller screens */
  }
}

/* Feature Section */
#feat {
  padding: 50px 0;
  text-align: center;
}

#feat .text {
  font-size: 20px;
  color: #ccc;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.feat-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns */
  gap: 20px; /* Space between boxes */
  margin-top: 40px;
}

.box {
  background-color: #222; /* Darker shade for the box background */
  color: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
