/* deindia.de – Clean modern design 2026 */
:root {
  --saffron: #E67E22;
  --saffron-light: #F5A623;
  --indigo: #1B2A4A;
  --indigo-soft: #2C3E6B;
  --cream: #FAF7F2;
  --white: #FFFFFF;
  --text: #1A1A1A;
  --muted: #5C5C5C;
  --border: #E8E4DE;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-hover: 0 12px 40px rgba(0,0,0,0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

/* Header */
header {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.92) 0%, rgba(255,248,240,0.88) 50%, rgba(255,255,255,0.92) 100%),
    linear-gradient(135deg, #1B2A4A 0%, #E67E22 100%);
  background-size: cover;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
/* Optional: eigenes Bild unterlegen – Datei images/header-freundschaft.jpg */
header.has-bg-image {
  background-image:
    linear-gradient(90deg, rgba(255,255,255,0.9) 0%, rgba(255,248,240,0.85) 50%, rgba(255,255,255,0.9) 100%),
    url('../images/header-freundschaft.jpg');
  background-size: cover;
  background-position: center;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.logo {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--indigo);
  text-decoration: none;
  letter-spacing: -0.3px;
}
.logo span { color: var(--saffron); }

nav ul {
  list-style: none;
  display: flex;
  gap: 1.75rem;
  align-items: center;
}
nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
nav a:hover,
nav a.active { color: var(--indigo); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--indigo);
}

/* Hero – clean, no heavy gradient */
.hero {
  background: var(--white);
  padding: 5rem 1.5rem 4rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 1rem;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--indigo);
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.hero .subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
.hero .btn { margin: 0 0.4rem 0.5rem; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.85rem 1.8rem;
  background: var(--indigo);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.btn:hover {
  background: var(--indigo-soft);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--indigo);
  color: var(--indigo);
}
.btn-outline:hover {
  background: var(--indigo);
  color: white;
}
.btn-saffron {
  background: var(--saffron);
}
.btn-saffron:hover {
  background: #D35400;
}

/* Layout */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 5rem;
}
.section { margin-bottom: 4rem; }
.section h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--indigo);
  margin-bottom: 1rem;
  letter-spacing: -0.3px;
}
.section h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--indigo);
  margin: 1.5rem 0 0.6rem;
}
.section p {
  color: var(--muted);
  margin-bottom: 1rem;
  max-width: 68ch;
}

/* Product grid – real shop feel */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-top: 2rem;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.product-card .img-wrap {
  aspect-ratio: 1 / 1;
  background: #F0EDE8;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card .body {
  padding: 1.25rem 1.35rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card h3 {
  font-size: 1.05rem;
  margin: 0 0 0.4rem;
  color: var(--indigo);
}
.product-card .desc {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1rem;
  flex: 1;
}
.product-card .price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}
.product-card .price small {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--muted);
}

/* Cards (content) */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1.75rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.25s;
}
.card:hover { box-shadow: var(--shadow); }
.card-img {
  aspect-ratio: 16/10;
  background: #F0EDE8;
  overflow: hidden;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-body { padding: 1.25rem; }
.card-body h3 {
  font-size: 1.05rem;
  margin: 0 0 0.4rem;
}
.card-body p {
  font-size: 0.9rem;
  margin: 0;
}


    .intro-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.4rem;
      margin: 2.2rem 0 0.5rem;
    }
    .intro-card {
      background: white;
      border-radius: 16px;
      padding: 1.7rem 1.5rem;
      box-shadow: 0 6px 24px rgba(0,0,0,0.07);
      text-align: center;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      border: 1px solid rgba(0,0,0,0.03);
    }
    .intro-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 14px 32px rgba(0,0,0,0.11);
    }
    .intro-card .icon {
      font-size: 2.1rem;
      margin-bottom: 0.7rem;
    }
    .intro-card h3 {
      color: var(--deep-indigo);
      margin-bottom: 0.45rem;
      font-size: 1.15rem;
    }
    .intro-card p {
      font-size: 0.93rem;
      color: var(--text-muted);
      margin: 0;
      line-height: 1.55;
    }

    .cognate-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.15rem;
      margin-top: 1.6rem;
    }

    .cognate:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 28px rgba(0,0,0,0.11);
    }
    .cognate .de {
      font-size: 1.35rem;
      font-weight: 700;
      color: var(--deep-indigo);
    }
    .cognate .hi {
      font-size: 1.55rem;
      font-weight: 600;
      color: var(--saffron-dark);
      margin: 0.45rem 0 0.15rem;
    }
    .cognate .translit {
      font-size: 0.88rem;
      color: #888;
      font-style: italic;
    }

    .phrases {
      display: grid;
      gap: 1.1rem;
      margin-top: 1.5rem;
    }
    .phrase {
      background: white;
      border-radius: 14px;
      padding: 1.4rem 1.5rem;
      box-shadow: 0 4px 18px rgba(0,0,0,0.06);
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 1rem;
      align-items: center;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      border: 1px solid rgba(0,0,0,0.03);
    }
    .phrase:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 26px rgba(0,0,0,0.1);
    }
    .phrase .side { text-align: center; }
    .phrase .side .script {
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--deep-indigo);
      line-height: 1.35;
    }
    .phrase .side .roman {
      font-size: 0.88rem;
      color: #777;
      font-style: italic;
      margin-top: 0.2rem;
    }
    .phrase .arrow {
      font-size: 1.4rem;
      color: var(--saffron);
      font-weight: 700;
    }

/* Highlight / callout */
.highlight {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--saffron);
  padding: 1.35rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0;
}
.highlight p { margin: 0; max-width: none; }

/* Facts */
.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin: 1.75rem 0;
}
.fact {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1.25rem;
  border-radius: var(--radius);
  text-align: center;
}
.fact .number {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--saffron);
  margin-bottom: 0.3rem;
}
.fact .label {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Footer */
footer {
  background: var(--indigo);
  color: #C8C4BC;
  padding: 3.5rem 1.5rem 1.5rem;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}
.footer-content h4 {
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.9rem;
  letter-spacing: 0.02em;
}
.footer-content a {
  color: #A8A49C;
  text-decoration: none;
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-content a:hover { color: white; }
.footer-content p { font-size: 0.9rem; color: #A8A49C; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
  color: #7A766E;
  text-align: center;
}

/* Mobile */
@media (max-width: 768px) {
  .menu-toggle { display: block; }
  nav { display: none; width: 100%; }
  nav.active { display: block; }
  nav ul {
    flex-direction: column;
    gap: 0.9rem;
    padding: 1rem 0 0.5rem;
    align-items: flex-start;
  }
  .hero { padding: 3.5rem 1.25rem 3rem; }
  .product-grid { grid-template-columns: 1fr; }
}

/* Kontakt */

/* Kontaktformular – nur für kontakt.html */
.contact-section .contact-form {
  width: min(100%, 680px);
  margin: 2rem auto 0;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-section .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}

.contact-section .form-group label {
  color: var(--indigo);
  font-weight: 600;
  line-height: 1.4;
}

.contact-section .form-group input,
.contact-section .form-group select,
.contact-section .form-group textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--text);
  font: inherit;
  line-height: 1.4;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.contact-section .form-group input:focus,
.contact-section .form-group select:focus,
.contact-section .form-group textarea:focus {
  outline: none;
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.18);
}

.contact-section .form-submit {
  display: block;
  width: auto;
  min-width: 140px;
  margin: 1.5rem 0 0;
  text-align: center;
}

.contact-section .form-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.contact-section .form-note a {
  color: var(--saffron);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-section .honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Mobile Darstellung */
@media (max-width: 600px) {
  .contact-section .contact-form {
    margin-top: 1.5rem;
    padding: 1.25rem;
  }

  .contact-section .form-submit {
    width: 100%;
    margin-top: 1.25rem;
  }

  .contact-section .form-note {
    font-size: 0.85rem;
  }
}