/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Navbar */
.navbar {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.95);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.logo-main {
  height: 40px;
  width: auto;
}

.logo-name {
  height: 40px;
  width: auto;
}

/* Main content */
.main-content {
  flex: 1;
  display: flex;
  padding: 120px 0 80px;
  min-height: calc(100vh - 200px);
}

.content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.main-content h1 {
  font-size: 3.5rem;
  font-weight: 300;
  color: #1f2937;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}

.subtitle {
  font-size: 1.25rem;
  color: #000;
  margin-bottom: 2rem;
  font-weight: 400;
}

.description {
  font-size: 1.1rem;
  color: #3d3d3d;
  line-height: 1.8;
  max-width: 600px;
  /* margin: 0 auto; */
}

/* Footer */
.footer {
  background-color: #f9fafb;
  border-top: 1px solid #e5e5e5;
  padding: 2rem 0;
  margin-top: auto;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left p {
  color: #6b7280;
  font-size: 0.875rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f3f4f6;
  color: #6b7280;
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-link:hover {
  background-color: #e5e7eb;
  color: #374151;
  transform: translateY(-2px);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

/* Responsive design */
@media (max-width: 768px) {
  .nav-container {
    padding: 1rem;
  }

  .main-content {
    padding: 100px 0 60px;
  }

  .content-container {
    padding: 0 1rem;
  }

  .main-content h1 {
    font-size: 2.5rem;
  }

  .subtitle {
    font-size: 1.1rem;
  }

  .description {
    font-size: 1rem;
  }

  .footer-container {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding: 0 1rem;
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .main-content h1 {
    font-size: 2rem;
  }

  .logo-main {
    height: 32px;
  }

  .logo-name {
    height: 32px;
  }
}

/* Smooth scrolling and transitions */
html {
  scroll-behavior: smooth;
}

/* Animation removed per request */

/* Focus styles for accessibility */
.social-link:focus {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}
