* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  padding-top: 70px;
  background: #0f0f0f;
  color: white;
}

/* NAVBAR */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #0b0b0b;
  border-bottom: 1px solid #1f1f1f;
  z-index: 999;
}

.navbar_container {
  max-width: min(1100px, 92%);
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

#navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

#navbar-logo img {
  width: 40px;
  height: 40px;
}

.logo_text {
  color: rgb(0, 255, 0);
  font-weight: 700;
  font-size: 1.4rem;
}

.navbar_menu {
  display: flex;
  list-style: none;
  gap: 25px;
  align-items: center;
}

.navbar_links {
  text-decoration: none;
  color: #ccc;
  font-size: 0.95rem;
}

.navbar_links:hover {
  color: rgb(0, 255, 0);
}

/* MOBILE MENU */

.menu_toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu_toggle span {
  height: 3px;
  width: 25px;
  background: white;
  margin: 4px 0;
}

/* HERO */

.hero {
  position: relative;
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(images/untitled23.jpg);
  background-size: cover;
  background-position: center;
  filter: blur(1.8px) brightness(0.45);
  z-index: -1;
}

.hero_container {
  max-width: min(900px, 92%);
  margin: auto;
}

.hero_content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.hero_content h1 {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 700;
}

.hero_content p {
  font-size: clamp(0.9rem, 2.5vw, 1.2rem);
}

.hero_button {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 26px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: white;

  background: rgba(0, 255, 0, 0.336);
  border: 1px solid rgba(0, 255, 0, 0.281);

  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.hero_button:hover {
  background: rgba(0, 255, 0, 0.52);
  border: 1px solid rgba(0, 255, 0, 0.8);
  transform: scale(1.05);
}

.learn_more {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.9rem;
  color: #ccc;
  text-decoration: none;
}

.learn_more:hover {
  color: rgb(0, 255, 0);
}

/* INFO */

.info_container {
  max-width: min(900px, 92%);
  margin: auto;
  padding: 80px 20px;
  text-align: center;
}

.info_label {
  font-size: clamp(1.4rem, 4vw, 2rem);
  margin-bottom: 25px;
  color: rgb(0, 255, 0);
}

.info_label2 {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  line-height: 1.7;
  color: #cfcfcf;
}

/* FOOTER */

.footer {
  border-top: 1px solid #1f1f1f;
  padding: 40px 20px;
  margin-top: 60px;
}

.footer_container {
  max-width: min(1100px, 92%);
  margin: auto;
}

.footer_top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer_brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer_title {
  font-size: 1rem;
  font-weight: 600;
}

.footer_socials {
  display: flex;
  gap: 10px;
}

.footer_socials img {
  width: 22px;
  height: 22px;
  opacity: 0.85;
}

.footer_socials img:hover {
  opacity: 1;
}

.footer_links {
  display: flex;
  gap: 20px;
}

.footer_links a {
  color: #aaa;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer_links a:hover {
  color: white;
}

/* MOBILE */

@media (max-width: 768px) {
  .menu_toggle {
    display: flex;
  }
  .navbar_menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #0b0b0b;

    flex-direction: column;
    align-items: center;

    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .navbar_menu.active {
    max-height: 100vh;
    padding: 20px 0;
  }
  .navbar_item {
    padding: 15px 0;
  }

  .footer_top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer_links {
    flex-wrap: wrap;
    justify-content: center;
  }
}
