/* m.css — Waeco Servisi Marinalar Sayfası */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

:root {
  --primary: #0078d7;
  --text: #222;
  --bg: #fff;
  --card-bg: #f9f9f9;
  --shadow: rgba(0, 0, 0, 0.08);
}

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

header {
  background: var(--primary);
  color: white;
  padding: 1rem 0;
  box-shadow: 0 2px 5px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 999;
}

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

.nav__logo {
  font-weight: 600;
  font-size: 1.2rem;
  color: white;
  text-decoration: none;
}

.nav__list {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav__link {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.nav__link:hover {
  text-decoration: underline;
}

/* Ana başlık */
.about__title {
  text-align: center;
  margin: 3rem 0 1.5rem;
  font-size: 2rem;
  color: var(--primary);
}

/* Grid yapı */
.about__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem;
}

/* Kartlar */
.about__card {
  background: var(--card-bg);
  border-radius: 10px;
  box-shadow: 0 3px 8px var(--shadow);
  padding: 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.about__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 14px var(--shadow);
}

.about__card-title {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.about__card-title a {
  color: var(--primary);
  text-decoration: none;
}

.about__card-title a:hover {
  text-decoration: underline;
}

/* İletişim */
.contact {
  background: #f0f8ff;
  padding: 2rem 1rem;
  text-align: center;
  margin-top: 2rem;
}

.contact p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1rem;
}

/* Footer */
.footer {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
}

/* Telefon butonu */
.telefon-butonu {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--primary);
  color: white;
  padding: 0.8rem 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 10px var(--shadow);
  transition: 0.3s;
}

.telefon-butonu:hover {
  background: #005a9e;
  transform: scale(1.05);
}

/* Mobil düzen */
@media (max-width: 600px) {
  .about__title {
    font-size: 1.5rem;
  }

  .nav__list {
    display: none;
  }
}
