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

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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

/* Hero Section */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}

.hero-title {
  font-size: 4.8rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: #000;
}

.hero-subtitle {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.5;
  color: #666;
  max-width: 60rem;
  margin: 0 auto 3rem;
}

.hero-links {
  display: flex;
  gap: 3rem;
  justify-content: center;
}

.hero-links a {
  font-size: 1.6rem;
  color: #000;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s ease;
}

.hero-links a:hover {
  color: #666;
}

/* Footer */
.footer {
  background: #fff;
  padding: 4rem 0;
  border-top: 1px solid #eee;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.social-links a {
  font-size: 2.4rem;
  color: #333;
  transition: color 0.2s ease;
}

.social-links a:hover {
  color: #666;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 3.6rem;
  }
  
  .hero-subtitle {
    font-size: 1.6rem;
  }
  
  .hero-links {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  #hero {
    padding: 1rem;
  }
}