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

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: 'Arial', sans-serif;
  background-color: #ffffff;
  color: #1a1a1a;
}


/* Header styles */
.header {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to bottom, #ffffff, #1a1a1a);
  text-align: center;
}


.header img {
  max-width: 100px; /* Larger header logo */
  width: 100%;
  height: auto;
  stroke: #ffffff; /* White stroke for header logo */
  transition: opacity 0.3s ease;
  filter: invert(0);
}


/* Content section to enable scrolling */
.content {
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 100vh;
}

.content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #00ff88;
}

.content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

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

  .nav-wrapper a, .nav-wrapper .language > span {
    font-size: 0.9rem;
  }

  .nav-wrapper .logo-container.visible {
    width: 120px; /* Adjusted for mobile */
  }

  .header svg {
    max-width: 300px;
  }

  .content {
    padding: 1rem;
  }

  .content h2 {
    font-size: 1.5rem;
  }

  .content p {
    font-size: 1rem;
  }
}

footer {
  margin-top: auto;
}
