/* assets/css/components.css */

/* Section spacing */
section {
  padding: 64px 0;
}

section:nth-of-type(even) {
  background-color: #edf1f7;
}

/* Section titles */
.section-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 32px;
}

/* Generic card */
.card {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 24px;
}

/* Grid helpers */
.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #ffffff;
  color: var(--color-text);
  border: 1px solid #e5e7eb;
  box-shadow: var(--shadow-soft);
  transition: all 0.18s ease;
  font-size: 18px;
}

.social-icons a:hover {
  color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
}

/* Basit NAV butonları */
.nav-btn {
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: #0f172a;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-btn:hover {
  background-color: rgba(20, 184, 166, 0.08); /* çok hafif teal ton */
  color: #0f766e;
}

/* CTA / Login butonu */
.nav-btn-primary {
  padding: 6px 16px;
  border-radius: 6px;
  font-weight: 600;
  background-color: #14b8a6;      /* teal */
  color: white !important;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
}

.nav-btn-primary:hover {
  background-color: #0f766e;
  transform: translateY(-1px);
}

