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

body {
  font-family: 'Inter', sans-serif;
}

/* HEADER */
.lw-header {
  background: #ffffff;
  border-bottom: 1px solid #eee;
}

.lw-container {
  max-width: 1200px;
  height: 64px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lw-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.lw-logo img {
  height: 38px;
}

.lw-logo span {
  font-size: 22px;
  font-weight: 400; /* WIX GİBİ İNCE */
  color: #0a2540;
}

.lw-nav a {
  margin-left: 28px;
  font-size: 14px;
  font-weight: 400;
  color: #0a2540;
  text-decoration: none;
}

.lw-nav a:hover {
  color: #1f6ae1;
}

/* HERO */
.hero {
  position: relative;
  min-height: calc(100vh - 64px);
  background: url("../assets/img/hero.jpg") center / cover no-repeat;
  display: flex;
  align-items: center;
  padding-left: 120px;
}

.hero-left {
  max-width: 420px;
}

.hero h1 {
  font-size: 48px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
}

.hero p {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.6;
}

/* WHATSAPP BUTTON */
.whatsapp-btn {
  position: absolute;
  right: 60px;
  bottom: 60px;
  background: #25D366;
  color: #ffffff;
  padding: 14px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.whatsapp-btn:hover {
  background: #1EBE5D;
}
/* SCHWERPUNKTE */
.focus {
  background: #eef6f8;
  padding: 80px 0;
}

.focus-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
}

.focus-left h2 {
  font-size: 36px;
  font-weight: 600;
  color: #083a5a;
  line-height: 1.2;
}

.focus-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 50px;
}

.focus-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: #0a2540;
  margin-bottom: 8px;
}

.focus-item p {
  font-size: 14px;
  color: #4a647a;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .focus-container {
    grid-template-columns: 1fr;
  }

  .focus-right {
    grid-template-columns: 1fr;
  }
}
/* === UNSERE SCHWERPUNKTE (WIX STYLE) === */

.focus {
  background: #eef6f8;
  padding: 80px 0;
}

.focus-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
}

.focus-left h2 {
  font-size: 42px;
  font-weight: 600;
  color: #003a63;
  line-height: 1.2;
}

.focus-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 60px;
}

.focus-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: #003a63;
  margin-bottom: 8px;
}

.focus-item p {
  font-size: 14px;
  line-height: 1.6;
  color: #4a6b82;
  margin: 0;
}

/* Responsive (mobilde Wix gibi alt alta) */
@media (max-width: 900px) {
  .focus-container {
    grid-template-columns: 1fr;
  }

  .focus-right {
    grid-template-columns: 1fr;
  }
}
/* Madde işareti */
.focus-item {
  position: relative;
  padding-left: 18px;
}

.focus-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 6px;
  background-color: #1fb6c9; /* Wix’e yakın turkuaz */
  border-radius: 1px;
}
/* =========================
   UNSERE VISION
========================= */

.vision {
  background-color: #06345f; /* Wix koyu lacivert */
  padding: 90px 20px;
}

.vision-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.vision h2 {
  font-size: 32px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 28px;
}

.vision p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}
/* ======================
   OUR TEAM
====================== */

.team-section {
  background: #eef6f8;
  padding: 80px 20px;
  text-align: center;
}

.team-title {
  font-size: 28px;
  letter-spacing: 2px;
  margin-bottom: 60px;
  color: #0a2540;
}

.team-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
}

.team-card img {
  width: 180px;
  height: 220px;
  object-fit: cover;
  margin-bottom: 20px;
}

.team-card h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.team-card .role {
  font-size: 14px;
  margin-bottom: 10px;
  color: #444;
}

.team-card a {
  display: block;
  font-size: 14px;
  color: #0a2540;
  margin-bottom: 10px;
  text-decoration: none;
}

.team-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 18px;
  border: 1px solid #0a2540;
  font-size: 13px;
  width: auto;              /* 🔑 kutuyu küçültür */
  min-width: unset;         /* 🔑 varsa zorlamayı kaldırır */
  text-align: center;
}

.team-btn:hover {
  background: #0a2540;
  color: #fff;
}
/* FORCE button size fix */
.team-btn {
  display: inline-block !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: fit-content !important;
  padding: 6px 18px !important;
}
