/* Raftech Custom Header Styles */

@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@600&family=Inter:wght@400;500;600&display=swap");

.raftech-header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 9999;
  transition: all 0.3s ease;
}

.raftech-header-wrapper.scrolled {
  padding: 10px 0;

  backdrop-filter: blur(10px);
}

.raftech-header {
  margin: 0 auto;
  width: 95%;
  max-width: 1400px;
  background-color: #0b0b0b;
  border-radius: 12px;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.raftech-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.raftech-logo-img {
  max-height: 40px;
  width: auto;
  object-fit: contain;
}

.raftech-nav {
  flex: 1;
  margin: 0 40px;
  display: flex;
  justify-content: center;
}

.raf-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px;
}

.raf-menu-list li a {
  color: #ffffff;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
}

.raf-menu-list li a:hover {
  color: #6ef3a5;
}

.raf-menu-list li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #6ef3a5;
  transition: width 0.3s ease;
}

.raf-menu-list li a:hover::after {
  width: 100%;
}

.raftech-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.raf-btn {
  background-color: #6ef3a5;
  color: #000000;
  padding: 12px 24px;
  border-radius: 25px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
  display: inline-block;
}

.raf-btn:hover {
  background-color: #5bd48e;
  transform: translateY(-2px);
  color: #000;
}

.raf-menu-icon {
  width: 32px;
  height: 32px;
  cursor: pointer;
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.raf-menu-icon:hover {
  transform: rotate(90deg);
}

@media (max-width: 768px) {
  .hero--homepage p {
    font-size: 37px !important;
    line-height: 43px !important;
    padding: 0 10px;
  }
  .small-container h1 {
    font-size: 19px;
  }
  .raftech-nav {
    display: none;
  }

  .raf-btn {
    display: none;
  }

  .raftech-header {
    width: 85%;
    padding: 12px 20px;
  }

  .raftech-logo-img {
    max-height: 32px;
  }

  .raftech-actions {
    gap: 10px;
  }
}
