/* =========================
   ABOUT PAGE
========================= */

.about-hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("./assets/images/Atlantic-bg.webp");

  background-size: cover;
  background-position: center;

  min-height: 55vh;

  display: flex;
  justify-content: center;
  align-items: center;

  text-align: center;

  padding: 2rem;
}

.about-hero-content {
  max-width: 800px;
  color: white;
}

.about-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.about-hero-content p {
  font-size: 1.2rem;
  line-height: 2;
  color: #ddd;
}

/* =========================
   MAIN CONTAINER
========================= */

.about-container {
  width: 90%;
  max-width: 1200px;

  margin: auto;
  padding: 5rem 0;
}

/* =========================
   ABOUT BOX
========================= */

.about-box {
  background: white;

  padding: 2.5rem;

  border-radius: 12px;

  margin-bottom: 2rem;

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.about-box h2 {
  font-size: 2rem;

  margin-bottom: 1.2rem;

  color: #0f172a;
}

.about-box p {
  line-height: 2.2;
  color: #444;

  margin-bottom: 1rem;

  font-size: 1.05rem;
}

/* =========================
   DARK BOX
========================= */

.about-box.dark {
  background: #0f172a;
  color: white;
}

.about-box.dark h2 {
  color: white;
}

.about-box.dark p {
  color: #ddd;
}

/* =========================
   INFO GRID
========================= */

.about-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  gap: 2rem;

  margin-bottom: 3rem;
}

.info-card {
  background: white;

  padding: 2rem;

  text-align: center;

  border-radius: 12px;

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);

  transition: 0.3s ease;
}

.info-card:hover {
  transform: translateY(-8px);
}

.info-card i {
  font-size: 3rem;

  color: #f59e0b;

  margin-bottom: 1rem;
}

.info-card h3 {
  margin-bottom: 1rem;

  color: #0f172a;
}

.info-card p {
  color: #555;
  line-height: 1.9;
}

/* =========================
   VALUES
========================= */

.about-values {
  margin: 4rem 0;
}

.about-values h2 {
  text-align: center;

  font-size: 2.3rem;

  margin-bottom: 2.5rem;

  color: #0f172a;
}

.values-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

  gap: 2rem;
}

.value-card {
  background: white;

  padding: 2rem;

  border-radius: 12px;

  text-align: center;

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);

  transition: 0.3s;
}

.value-card:hover {
  transform: translateY(-6px);
}

.value-card h3 {
  margin-bottom: 1rem;

  color: #f59e0b;
}

.value-card p {
  color: #555;

  line-height: 1.8;
}

/* =========================
   FOUNDER
========================= */

.founder {
  border-right: 6px solid #f59e0b;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
  .about-hero-content h1 {
    font-size: 2.2rem;
  }

  .about-hero-content p {
    font-size: 1rem;
  }

  .about-box {
    padding: 1.5rem;
  }

  .about-box h2 {
    font-size: 1.5rem;
  }

  .about-values h2 {
    font-size: 1.8rem;
  }
}
