/* feedback.ktown.team — minimal */

:root {
  --navy: #070A61;
  --bg: #FAFAFA;
  --text: #070A61;
  --text-light: #8A8DB5;
  --border: #E0E0E0;
  --card-bg: #FFFFFF;
  --green: #2D8C5C;
  --red: #C45454;
  --blue: #0075F2;
}

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

body {
  font-family: 'Sofia Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: var(--text); text-decoration: none; }

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.site-logo {
  font-family: 'Cubano', sans-serif;
  font-size: 1rem;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 0.03em;
}
.site-logo span { font-weight: 400; }

.header-actions { display: flex; align-items: center; }
.lang-switch { display: flex; gap: 0.4rem; }
.lang-switch a {
  color: var(--text-light);
  font-size: 0.8rem;
  padding: 0.15rem 0.5rem;
}
.lang-switch a.current { color: var(--navy); }
.lang-switch a:hover { color: var(--navy); }

/* Main */
main {
  flex: 1;
  max-width: 620px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}

/* Hero */
.hero-section {
  margin-bottom: 2rem;
}
.hero-section h1 {
  font-family: 'Cubano', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.subtitle {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Form */
.form-section {
  margin-bottom: 2rem;
}

.field {
  margin-bottom: 1.1rem;
  flex: 1;
}
.field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--text);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  font-family: inherit;
  font-size: 0.85rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 5px;
  outline: none;
  background: var(--card-bg);
  color: var(--text);
}
.field input:focus,
.field textarea:focus,
.field select:focus { border-color: var(--text-light); }

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238A8DB5' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2rem;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #B0B0B0;
}

.field-row {
  display: flex;
  gap: 1rem;
}

/* Submit */
.submit-btn {
  display: block;
  width: 100%;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.7rem;
  border: none;
  border-radius: 5px;
  background: var(--blue);
  color: #fff;
  cursor: pointer;
  margin-top: 0.25rem;
}
.submit-btn:hover { opacity: 0.9; }
.submit-btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* Messages */
.form-message {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  text-align: center;
}
.form-message.error { color: var(--red); }

/* Success */
.success-panel {
  text-align: center;
  padding: 2rem 0;
}
.success-icon {
  color: var(--green);
  margin-bottom: 1rem;
}
.success-panel h2 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.success-panel p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem;
  text-align: center;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}
.footer-links a {
  color: var(--text-light);
  font-size: 0.75rem;
}
.footer-links a:hover { color: var(--text); }
.site-footer p {
  font-size: 0.7rem;
  color: var(--text-light);
}
.site-footer p a { color: var(--text-light); }

/* Mobile */
@media (max-width: 600px) {
  .site-header { padding: 0.5rem 1rem; }
  main { padding: 1.5rem 1rem 2rem; }
  .hero-section h1 { font-size: 1.3rem; }
  .field-row { flex-direction: column; gap: 0; }
}
