* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #e5e7eb;
  display: flex;
  flex-direction: column;
  background-color: #0f0f0f;
  overflow-x: hidden;
}

.page-load {
  opacity: 0;
  transform: translateY(12px);
  animation: pageFadeIn 0.9s ease-out forwards;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */

.site-header {
  background-color: #0f0f0f;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
}

.logo {
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: none;
  color: #fafafa;
  position: relative;

  opacity: 0;
  transform: translateY(-8px);
  animation: logoFadeIn 0.8s ease-out forwards;
}

.logo::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: #d1d1d1;
  transition: width 0.3s ease;
}

.logo:hover::after {
  width: 100%;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  font-size: 1.3rem;

  opacity: 0;
  transform: translateY(-8px);
  animation: logoFadeIn 0.8s ease-out forwards;
}

.nav-links a {
  text-decoration: none;
  color: #fafafa;
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: #d1d1d1;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hero */

.hero {
  padding: 6rem 0 4rem;
  background-color: #fafafa;
}

.hero-content {
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #0f0f0f;
}

.hero p {
  font-size: 1.1rem;
  color: #0f0f0f;
}

/* Footer */

footer {
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  background-color: #0f0f0f;
  margin-top: 4rem;
  color: #fafafa;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #fafafa;
}

/* Animations */

@keyframes logoFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pageFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 900px) {

  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.2rem;
    position: relative;
  }

  .logo {
    font-size: 1.5rem;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: absolute;
    top: 70px;
    right: 0;
    background: #fafafa;
    width: 100%;
    padding: 2rem;
  }

}

  .nav-links.active a {
    font-size: 1.2rem;
    color: #0f0f0f;
  }