* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;

}

body {
  font-family: "Segoe UI", sans-serif;
  background: #0d0d0d;
  color: #e5e7eb;
  line-height: 1.7;
  overflow-x: hidden;
}

.hero {
  text-align: center;
  padding: 6rem 8%;
  background: url("../assets/background.jpeg") center/cover no-repeat;
  animation: galaxyMove 60s ease-in-out infinite;
}

@keyframes galaxyMove {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 100%;
  }
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 8%;
  background: rgba(30, 41, 59, 0.6);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #ffffff22;
}

.logo {
  font-size: 1.7rem;
  font-weight: bold;
  color: #f97316;
  text-shadow: 0 0 10px #f97316;
}



.nav-links {
  display: flex;
  gap: 1.2rem;
}

.nav-links a {
  color: #f3f4f6;
  font-size: 1rem;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #f97316;
  text-shadow: 0 0 10px #f97316;
}

.lang-switch button {
  margin-left: 0.5rem;
  background: #f97316;
  color: white;
  border: none;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.lang-switch button:hover {
  box-shadow: 0 0 10px #f97316;
}

.btn {
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  margin: 0.5rem;
  display: inline-block;
  font-size: 1rem;
  transition: 0.3s;
}

.primary {
  background-color: #f97316;
  color: white;
  box-shadow: 0 0 10px #f97316aa;
}

.primary:hover {
  box-shadow: 0 0 20px #f97316;
}

.secondary {
  border: 1px solid #f97316;
  color: #f97316;
}

.secondary:hover {
  box-shadow: 0 0 15px #f97316;
}

.section {

  padding: 4rem 8%;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
  
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

.section h2 {
  font-size: 2.4rem;
  margin-bottom: 2rem;
  color: #f97316;
  text-shadow: 0 0 10px #f97316;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card {
  background: rgba(30, 41, 59, 0.45);
  backdrop-filter: blur(14px);
  padding: 1.7rem;
  border-radius: 14px;
  border: 1px solid #ffffff22;
  transition: 0.4s;
}

.card:hover {
  transform: translateY(-6px);
  border-color: #f97316;
  box-shadow: 0 0 20px #f97316aa;
}

.card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.3rem;
  color: #f97316;
  text-shadow: 0 0 10px #f97316;
}

.card p,
.card li {
  color: #cbd5e1;
  font-size: 1rem;
}
#contact a {
  color: #f3f4f6;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid transparent;
  text-decoration: none;
  transition: 0.3s ease;
}

#contact a:hover {
  border-color: #f97316;
  color: #f97316;
  box-shadow: 0 0 12px #f97316aa;
}
.footer {
  text-align: center;
  padding: 1.5rem;
  background: rgba(30, 41, 59, 0.6);
  backdrop-filter: blur(10px);
  color: #9ca3af;
  margin-top: 3rem;
  border-top: 1px solid #ffffff22;
}


.close-menu {
  display: none;
  font-size: 1.8rem;
  color: #f97316;
  cursor: pointer;
  padding: 0.5rem;
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.9rem;
  }

  .btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }

  .grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    margin: 0.3rem;
  }

  .lang-switch button {
    padding: 0.3rem 0.6rem;
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.2rem; 
  }
}


.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.hamburger span {
  width: 20px;  
  height: 2px;
  background: #f97316;
  border-radius: 4px;
  transition: 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    width: 100%;
    flex-direction: column;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.8rem 0;
    display: none;
    gap: 0.3rem;
  }

  .nav-links a {
    padding: 0.8rem 1.5rem;
    text-align: center;
    font-size: 0.95rem;
    width: 100%;
  }

  .nav-links.active {
    display: flex;
  }
}