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

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #00c853, #00acc1);
  color: white;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a, a:visited {
  color: white;
  text-decoration: none;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  border-bottom: 1px solid white;
  margin-bottom: 2rem;
}

header > div {
  display: flex;
  align-items: center;
  gap: 1rem;
}

header strong {
  font-weight: bold;
  font-size: 1rem;
  color: white;
}

.language-switcher {
  display: flex;
  gap: 0.25rem;
}

.language-switcher button {
  background: transparent;
  border: 1px solid white;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  font-size: 0.85rem;
}

.language-switcher button:hover {
  background: white;
  color: black;
}

header nav {
  display: flex;
  align-items: center;
}

header nav a {
  margin-left: 1.5rem;
  font-weight: 500;
  text-transform: lowercase;
  transition: opacity 0.3s;
  color: white;
  text-decoration: none;
}

header nav a:hover {
  opacity: 0.7;
}

.project-card {
  background: white;
  color: black;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 1100px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.project-image {
  flex: 1;
  margin-right: 2rem;
}

.project-image img {
  max-width: 100%;
  border-radius: 12px;
}

.project-content {
  flex: 2;
}

.project-content h2 {
  font-family: 'Canela Text', serif;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

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

.project-buttons a {
  text-decoration: none;
  color: #0984e3;
  border: 2px solid #0984e3;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  margin-right: 1rem;
  font-weight: 500;
  transition: 0.3s;
}

.project-buttons a:hover {
  background: #0984e3;
  color: white;
}

.coming-soon {
  background: white;
  color: black;
  text-align: center;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 800px;
  border-radius: 16px;
}

.coming-soon h2 {
  font-family: 'Canela Text', serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

footer {
  margin-top: auto;
  text-align: center;
  padding: 1.5rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.social-icons a {
  color: white;
  text-decoration: none;
  font-size: 1.6rem;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #000000;
}