body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #2f3e46;
  background: #f8fbfa;
}

/* HEADER */
header {
  text-align: center;
  padding: 25px;
}

#brand {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #344e41;
  letter-spacing: 1px;
}

#lang-btn {
  margin-top: 10px;
  padding: 8px 16px;
  border-radius: 25px;
  border: none;
  background: #52796f;
  color: white;
  cursor: pointer;
}

/* HERO */
.hero {
  position: relative;
  height: 90vh;
  background: url('https://images.unsplash.com/photo-1508672019048-805c876b67e2') no-repeat center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.85), rgba(248,251,250,0.95));
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 650px;
  padding: 40px;
}

.hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3em;
  margin-bottom: 10px;
  color: #2f3e46;
}

.hero p {
  font-size: 1.05em;
  margin: 12px 0;
}

#tagline {
  font-style: italic;
  color: #52796f;
}

/* CONTACT */
.contact {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.contact-box {
  background: white;
  padding: 40px;
  border-radius: 18px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  text-align: center;
}

input, textarea {
  width: 100%;
  padding: 12px;
  margin: 12px 0;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
}

button[type="submit"] {
  width: 100%;
  padding: 12px;
  background: #52796f;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 25px;
  color: #888;
}

/* ANIMATION */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1.5s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}