/* Reset i osnova */
* {
  box-sizing: border-box;
  margin: 0; padding: 0;
  font-family: 'Poppins', sans-serif;
}
body { background: var(--bg-900); /* very light puder roze */
  color: var(--text-main); /* tamnija puder roze */
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* HERO sekcija */
.hero {
  background:
    linear-gradient(135deg, rgba(196, 126, 140, 0.8) 0%, rgba(231, 167, 178, 0.8) 100%);
  color: #4a2a38;
  padding: 5rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  min-height: 320px;
  user-select: none;
}
.hero h1 { text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-shadow: 0 4px 8px rgba(111, 66, 79, 0.3);
}
.hero button {
  background-color: #f7d5db; /* svetlija puder roze */
  border: none;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1.1rem;
  color: #8e5061; /* tamnija roze */
  cursor: pointer;
  box-shadow: 0 8px 15px rgba(142, 80, 97, 0.3);
  transition: all 0.3s ease;
  user-select: none;
}
.hero button:hover {
  background-color: #a75e6b;
  color: white;
  box-shadow: 0 12px 20px rgba(167, 94, 107, 0.5);
  transform: translateY(-3px);
}

/* MAIN content */
main {
  max-width: 600px;
  margin: 3rem auto 5rem;
  padding: 2rem 2.5rem;
  background: var(--surface); /* svetlija puder roze */
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(144, 89, 103, 0.1);
}
main h2 { text-shadow: 0 2px 8px rgba(0,0,0,0.2);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #6a4150; /* tamnija puder roze */
  text-align: center;
  letter-spacing: 0.02em;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
label {
  font-weight: 600;
  color: #7a4355;
}
input, textarea {
  padding: 0.8rem 1rem;
  border: 1.5px solid #cda8b4;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  transition: border-color 0.3s ease;
}
input:focus, textarea:focus {
  outline: none;
  border-color: #a75e6b;
  box-shadow: 0 0 5px rgba(167, 94, 107, 0.5);
}
textarea {
  resize: vertical;
  min-height: 120px;
}
button.submit-btn {
  background-color: #a75e6b;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  padding: 1rem;
  border-radius: 9999px;
  cursor: pointer;
  box-shadow: 0 8px 15px rgba(167, 94, 107, 0.35);
  transition: background-color 0.3s ease;
}
button.submit-btn:hover {
  background-color: #8e5061;
  box-shadow: 0 12px 20px rgba(142, 80, 97, 0.5);
}

/* RESPONSIVE tweaks */
@media (max-width: 480px) {
  .hero {
    padding: 3rem 1rem;
    min-height: 250px;
    gap: 1rem;
  }
  .hero h1 { text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    font-size: 1.6rem;
    letter-spacing: 0.03em;
  }
  .hero button {
    padding: 0.7rem 1.4rem;
    font-size: 0.9rem;
  }

  main {
    max-width: 100%;
    margin: 1.5rem 1rem 2rem;
    padding: 1rem 1rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(144, 89, 103, 0.1);
  }

  main h2 { text-shadow: 0 2px 8px rgba(0,0,0,0.2);
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  form {
    gap: 1rem;
  }

  input, textarea {
    font-size: 0.95rem;
    padding: 0.7rem 0.9rem;
  }

  textarea {
    min-height: 100px;
  }

  button.submit-btn {
    font-size: 1rem;
    padding: 0.8rem;
  }
}

input, textarea, select {
    background-color: var(--surface) !important;
    color: var(--text-main) !important;
    border: 1px solid var(--border) !important;
}
input::placeholder, textarea::placeholder {
    color: var(--muted) !important;
    opacity: 0.7;
}
