/* ===========================
   DACEF GMBH — STYLES
   Matching dacef.com aesthetic
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:wght@400;500;600&display=swap');

:root {
  --navy:   #1a2940;
  --blue:   #2563eb;
  --text:   #1f2937;
  --muted:  #6b7280;
  --light:  #f9fafb;
  --border: #e5e7eb;
  --white:  #ffffff;
  --tag-bg: #eff6ff;
  --tag-color: #2563eb;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  line-height: 1.25;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: 1.15rem; font-weight: 600; font-family: 'Inter', sans-serif; }

p { color: #374151; line-height: 1.75; font-size: 0.95rem; }
a { color: inherit; text-decoration: none; }
strong { font-weight: 600; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
section { padding: 5rem 0; }

/* ---- NAV ---- */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo img { height: 36px; display: block; }

.nav-links { display: flex; gap: 2rem; list-style: none; }

.nav-links a {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--blue); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text);
  transition: all 0.3s;
}

/* ---- HERO ---- */
.hero {
  background: var(--white);
  padding: 5rem 0 4rem;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-tag {
  display: inline-block;
  background: var(--tag-bg);
  color: var(--tag-color);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
}

.hero h1 { margin-bottom: 1.2rem; }
.hero p { color: var(--muted); font-size: 0.95rem; max-width: 480px; margin-bottom: 2rem; }

.btn-primary {
  display: inline-block;
  padding: 0.75rem 1.8rem;
  background: var(--navy);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 6px;
  transition: background 0.2s;
}
.btn-primary:hover { background: #243552; }

.hero-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}
.hero-image img { width: 100%; display: block; object-fit: cover; max-height: 380px; }

/* ---- SECTION LABEL ---- */
.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.6rem;
}

/* ---- DIVIDER ---- */
hr { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ---- STORY ---- */
.story { background: var(--white); }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.story h2 { margin-bottom: 1.2rem; }
.story p { margin-bottom: 0.9rem; }

/* ---- PROCESS ---- */
.process { background: var(--light); }
.process-header { text-align: center; margin-bottom: 3rem; }
.process-header h2 { margin-top: 0.4rem; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--blue);
  margin-bottom: 1rem;
  opacity: 0.6;
}

.step h3 { margin-bottom: 0.5rem; font-size: 1rem; }
.step p { font-size: 0.88rem; color: var(--muted); }

/* ---- STRENGTHS ---- */
.strengths { background: var(--white); }
.strengths-header { text-align: center; margin-bottom: 3rem; }
.strengths-header h2 { margin-top: 0.4rem; }

.strength-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.strength-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
  transition: box-shadow 0.2s;
}
.strength-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.07); }

.strength-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.6rem;
}

.strength-card h3 { margin-bottom: 0.5rem; font-size: 1rem; }
.strength-card p { font-size: 0.88rem; color: var(--muted); }

/* ---- LOCATION ---- */
.location { background: var(--light); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.location h2 { margin-bottom: 1rem; }
.location p { color: var(--muted); }
.location-address {
  margin-top: 1.2rem;
  font-size: 0.82rem;
  color: var(--muted);
}
.location-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.09);
}
.location-img img { width: 100%; display: block; object-fit: cover; max-height: 300px; }

/* ---- PAGE HERO ---- */
.page-hero {
  background: var(--white);
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { margin-top: 0.5rem; margin-bottom: 1rem; }
.page-hero p { color: var(--muted); max-width: 580px; }

/* ---- PRODUCTS ---- */
.products-section { background: var(--white); }
.products-intro { max-width: 720px; margin-bottom: 3rem; }
.products-intro p { font-size: 0.95rem; margin-bottom: 0.8rem; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.product-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.8rem;
  transition: box-shadow 0.2s;
}
.product-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.07); }
.product-card h3 { font-size: 1rem; margin-bottom: 0.4rem; color: var(--navy); }
.product-card p { font-size: 0.86rem; color: var(--muted); }
.product-card .pkg {
  display: inline-block;
  margin-top: 0.7rem;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--blue);
  background: var(--tag-bg);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

.product-image {
  margin-top: 3rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.09);
}
.product-image img { width: 100%; display: block; object-fit: cover; max-height: 360px; }

/* ---- CTA STRIP ---- */
.cta-strip {
  background: var(--navy);
  padding: 4rem 0;
  text-align: center;
}
.cta-strip h2 { color: var(--white); margin-bottom: 1.5rem; font-size: 1.8rem; }
.btn-outline {
  display: inline-block;
  padding: 0.75rem 2rem;
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 6px;
  transition: background 0.2s;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }

/* ---- CONTACT ---- */
.contact-section { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { margin-bottom: 2rem; color: var(--muted); }

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 1.2rem;
}
.contact-detail span:first-child {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
}
.contact-detail a, .contact-detail span:last-child { font-size: 0.92rem; color: var(--text); }
.contact-detail a:hover { color: var(--blue); }

.contact-img {
  margin-top: 2rem;
  border-radius: 10px;
  overflow: hidden;
}
.contact-img img { width: 100%; display: block; object-fit: cover; max-height: 240px; }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.7rem 0.9rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 120px; }

.btn-submit {
  align-self: flex-start;
  padding: 0.75rem 2rem;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-submit:hover { background: #243552; }

.form-success {
  display: none;
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #166534;
  padding: 1rem 1.2rem;
  border-radius: 6px;
  font-size: 0.9rem;
}

/* ---- FOOTER ---- */
footer {
  background: var(--light);
  border-top: 1px solid var(--border);
  padding: 2rem 0;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-inner img { height: 28px; opacity: 0.7; }
.footer-inner p { font-size: 0.8rem; color: var(--muted); }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 1rem 2rem;
    gap: 0;
  }
  .nav-links.open li a { padding: 0.7rem 0; display: block; border-bottom: 1px solid var(--border); }
  .nav-toggle { display: flex; }

  .hero-inner,
  .story-grid,
  .location-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }

  .steps { grid-template-columns: 1fr; }
  .strength-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  section { padding: 3rem 0; }
  .hero { padding: 3rem 0 2.5rem; }
}
