/* AMFA1 AS — tofort.shop
   Unique Minimalist One-Column + Editorial Blog Style
   Soft sage green + warm beige + clean white
   8px radius, subtle shadows, maximum readability
*/

:root {
  --bg: #F8F7F4;
  --surface: #FFFFFF;
  --text: #1F2937;
  --muted: #6B7280;
  --accent: #4A7C59;
  --border: #E5E7EB;
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
  --radius: 8px;
  --max-width: 780px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent);
}

/* Header - Clean Minimal */
.header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--accent);
}

.nav {
  display: flex;
  gap: 32px;
  font-size: 15px;
  font-weight: 500;
}

.nav a {
  color: var(--muted);
}

.nav a:hover {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

/* Hero - Centered Minimalist */
.hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 40px 60px;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero p {
  font-size: 19px;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 36px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: white;
  padding: 15px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.hero-cta:hover {
  background: #3D6649;
  transform: translateY(-2px);
}

/* Long Intro - Focused Reading */
.intro {
  max-width: var(--max-width);
  margin: 0 auto 70px;
  padding: 0 40px;
}

.intro p {
  font-size: 17.5px;
  color: #374151;
  margin-bottom: 1.4em;
}

/* Articles - Clean List Style */
.section-header {
  max-width: var(--max-width);
  margin: 0 auto 28px;
  padding: 0 40px;
}

.section-header h2 {
  font-size: 28px;
  font-weight: 700;
}

.articles-list {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px 80px;
}

.article-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.article-card:hover {
  border-color: var(--accent);
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.article-card .tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  background: #E8F0E9;
  color: var(--accent);
  padding: 4px 11px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.article-card h3 {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 12px;
}

.article-card p {
  color: #4B5563;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.article-card .meta {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.article-card .meta a {
  color: var(--accent);
  font-weight: 600;
}

/* Article Page */
.article-page {
  max-width: var(--max-width);
  margin: 60px auto;
  padding: 0 40px;
}

.article-page h1 {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 16px;
}

.article-content {
  font-size: 17.5px;
  line-height: 1.8;
  color: #374151;
}

.article-content p {
  margin-bottom: 1.4em;
}

.article-content h2 {
  font-size: 24px;
  margin: 2em 0 1em;
  color: var(--text);
}

.back-link {
  display: inline-flex;
  margin-top: 50px;
  color: var(--accent);
  font-weight: 600;
}

/* Contact Form */
.form-section {
  max-width: var(--max-width);
  margin: 60px auto;
  padding: 0 40px;
}

.form-section h1 {
  font-size: 32px;
  margin-bottom: 14px;
}

.contact-form {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-form label {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 16px;
  background: var(--surface);
  transition: all 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(74, 124, 89, 0.1);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form button {
  align-self: flex-start;
  background: var(--accent);
  color: white;
  border: none;
  padding: 15px 38px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.contact-form button:hover {
  background: #3D6649;
  transform: translateY(-2px);
}

/* Thank You */
.thankyou {
  max-width: var(--max-width);
  margin: 80px auto;
  padding: 0 40px;
  text-align: center;
}

.thankyou h1 {
  font-size: 38px;
  margin-bottom: 18px;
}

.thankyou .disclaimer {
  margin-top: 50px;
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 28px;
  border-radius: var(--radius);
  font-size: 14px;
  color: #4B5563;
  line-height: 1.65;
}

/* Footer */
.footer {
  background: #1F2937;
  color: #9CA3AF;
  padding: 50px 40px 40px;
  font-size: 14px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer a {
  color: #D1D5DB;
}

.footer a:hover {
  color: white;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 40px auto 0;
  padding-top: 30px;
  border-top: 1px solid #374151;
  font-size: 13px;
  color: #6B7280;
}

/* Responsive */
@media (max-width: 768px) {
  .header-inner {
    padding: 18px 24px;
  }
  
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
  }
  
  .nav.active {
    display: flex;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .hero h1 {
    font-size: 36px;
  }
}