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

body, html {
  height: 100%;
  overflow-x: hidden;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #1a1a1a, #000000);
  color: white;
  text-align: center;
  padding: 20px;
}

.container {
  max-width: 800px;
  margin: auto;
  animation: fadeIn 2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1 {
  font-size: 2.8rem;
  margin: 1.5rem 0 1rem;
  font-weight: 700;
}

h1 span {
  color: #f472b6;
}

p {
  font-size: 1.2rem;
  color: #ccc;
  margin: 0.5rem 0;
}

.subtext {
  font-size: 0.95rem;
  color: #888;
}

.main-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 0 20px rgba(255,255,255,0.3);
  margin-top: 30px;
}

/* Contact Form */
.contact-form {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 500px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  resize: none;
  background-color: #1f1f1f;
  color: #fff;
}

.contact-form button {
  background-color: #f472b6;
  border: none;
  padding: 12px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #ec4899;
}

/* Lang Button */
.lang-switch {
  position: fixed;
  top: 10px;
  right: 20px;
  z-index: 10;
}

.lang-switch button {
  background: rgba(255,255,255,0.1);
  color: white;
  border: 1px solid #555;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
}

/* Animation */
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Utility */
.hidden {
  display: none;
}
