/* styles.css - Lightweight, responsive single-page MVP layout */

/* Import Comfortaa font */
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;600;700&display=swap');

/* Reset-ish */
* { box-sizing: border-box; }
html,body { height: 100%; margin: 0; padding: 0; }

body {
    font-family: 'Comfortaa', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.5;
    color: #1f2937;
    background: #fbe5dc;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-bottom: 40px;
}

/* Utility */
.container {
  width: 92%;
  max-width: 980px;
  margin: 0 auto;
}

/* Header */
.site-header {
    background: #dae3e0;
    border-bottom: 1px solid rgba(31,41,55,0.06);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(4px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo {
  width: 300px;
  height: auto;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(16,24,40,0.06);
  background: white;
  padding: 6px;
}

/* Brand text */
.brand-text h1 {
  font-size: 2.00rem;
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.tagline {
  margin: 2px 0 0 0;
  font-size: 0.92rem;
  color: #374151;
  font-weight: 400;
}

/* Cards */
.card {
  background: #FFF8EF;
  border-radius: 12px;
  padding: 22px;
  margin-top: 20px;
  box-shadow: 0 6px 20px rgba(16,24,40,0.04);
  border: 1px solid rgba(31,41,55,0.04);
}

.card h2 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 1.05rem;
  color: #0f172a;
}

/* Contact */
.contact-card .contact-line {
  margin: 8px 0;
  font-size: 0.98rem;
}

.contact-form {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.contact-form label {
  font-size: 0.86rem;
  color: #374151;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(31,41,55,0.08);
  background: #fff;
  font-size: 0.95rem;
  font-family: inherit;
}

.contact-form button {
  background: #0b7dda;
  color: white;
  border: none;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  width: fit-content;
  font-family: inherit;
}

.contact-form button:hover {
  filter: brightness(0.96);
}

/* Footer */
.site-footer {
  margin-top: 28px;
  text-align: center;
  color: #6b7280;
  font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .logo { width: 68px; }
  .brand-text h1 { font-size: 1rem; }
  .header-inner { padding: 0; }
  .card { padding: 16px; }
  .contact-form button { width: 100%; }
}