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

/* =========================
   BASE
========================= */
body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1f2933;
  background-color: #ffffff;
  line-height: 1.6;
}

/* =========================
   HERO
========================= */
.hero {
  min-height: 280px;
  display: flex;
  align-items: center;  
  background: linear-gradient(135deg, #0b132b, #1c2541);
  color: #ffffff;
}

.hero-content {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

/* Logo block (yellow rectangle area) */
.hero-logo {
  flex: 0 0 320px;
}

.hero-logo img {
  max-width: 100%;
  height: auto;
}

/* Hero text */
.hero-text {
  flex: 1;
  padding-left: 40px;
  text-align: center;
}

.hero-text h1 {
  font-size: 2.7rem;
  margin-bottom: 10px;
}

.hero-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* =========================
   LANGUAGE SWITCH
========================= */
.language-switch {
  position: absolute;
  top: 32px;
  right: 40px;
  font-size: 14px;
}

.language-switch a {
  color: #cbd5f5;
  text-decoration: none;
  margin-left: 12px;
  padding-bottom: 2px;
}

.language-switch a:hover {
  color: #ffffff;
}

.language-switch a.active {
  color: #ffffff;
  border-bottom: 2px solid #ffffff;
}

/* =========================
   SECTIONS
========================= */
.section {
  padding: 24px 40px;
}

.section-light {
  background-color: #f8fafc;
}

.section-dark {
  background-color: #0f172a;
  color: #ffffff;
}

/* =========================
   CARD
========================= */
.card {
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
}

/* Dark section card override */
.section-dark .card {
  background: rgba(15, 23, 42, 0.92);
}

/* =========================
   TYPOGRAPHY
========================= */
h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
}

ul {
  margin-left: 20px;
}

li {
  margin-bottom: 8px;
}

/* =========================
   TWO COLUMNS
========================= */
.two-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .two-columns {
    grid-template-columns: 1fr 1fr;
  }
}

/* =========================
   SLOGAN
========================= */
.slogan {
  font-style: italic;
  font-weight: 500;
  color: #374151;
}

/* =========================
   LINKS
========================= */
a {
  color: #1e40af;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* =========================
   FOOTER
========================= */
.footer {
  padding: 24px;
  text-align: center;
  font-size: 14px;
  background-color: #f1f5f9;
  color: #4b5563;
}

/* MOBILE HERO FIX */
@media (max-width: 768px) {
  
  .hero {
	min-height: 260px;
    padding: 48px 24px;
  }
  
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-logo {
    flex: none;
    max-width: 220px;
    margin: 0 auto 20px auto;
  }

  .hero-text {
    padding-left: 0;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }
}

/* ===== DOMAIN-SPECIFIC THEMES ===== */

/* DE / EN – Corporate Blue */
.site-de .hero,
.site-de .footer {
  background: linear-gradient(135deg, #0b132b, #1c2541);
  color: #ffffff;
}

/* COM (Qo‘lBer) – Dark Neutral for better logo contrast */
.site-com .hero,
.site-com .footer {
  background: linear-gradient(135deg, #111827, #1f2933);
  color: #ffffff;
}
