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

.page-hero {
  position: relative;
  height: 500px;

  background:
    url('../img/about/about-banner.jpg')
    center center/cover no-repeat;

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

  text-align: center;

  overflow: hidden;
}

.page-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      rgba(0,0,0,0.75),
      rgba(0,0,0,0.55)
    );
}

.page-content {
  position: relative;
  z-index: 2;

  max-width: 850px;
  padding: 0 20px;

  color: white;
}

.page-content span {
  display: inline-block;

  color: #b79b4a;

  font-size: 14px;
  font-weight: 600;

  letter-spacing: 2px;
  text-transform: uppercase;

  margin-bottom: 20px;
}

.page-content h1 {
  font-size: 58px;
  line-height: 1.15;

  margin-bottom: 25px;
}

.page-content p {
  font-size: 18px;
  line-height: 1.8;

  color: #e5e5e5;
}

/* ==================================
   COMPANY STORY
================================== */

.about-company {
  padding: 100px 0;
  background: #fff;
}

.about-container {
  width: 85%;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;

  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 15px;

  box-shadow:
    0 15px 40px rgba(0,0,0,0.12);
}

.about-text h2 {
  font-size: 42px;
  color: #081521;

  margin-bottom: 25px;

  line-height: 1.2;
}

.about-text p {
  color: #666;
  line-height: 1.9;

  margin-bottom: 20px;
}

/* ==================================
   MISSION & VISION
================================== */

.mission-section {
  padding: 100px 0;

  background: #f8fafc;
}

.mission-container {
  width: 85%;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.mission-card {

  background: white;

  padding: 50px;

  text-align: center;

  border-radius: 15px;

  transition: .3s ease;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.05);
}

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

  box-shadow:
    0 20px 40px rgba(0,0,0,0.1);
}

.mission-card i {

  font-size: 50px;

  color: #b79b4a;

  margin-bottom: 25px;
}

.mission-card h3 {

  font-size: 28px;

  color: #081521;

  margin-bottom: 20px;
}

.mission-card p {

  color: #666;

  line-height: 1.8;
}

/* ==================================
   SECTION TITLES
================================== */

.section-title {
  text-align: center;

  max-width: 850px;

  margin: auto auto 60px;
}

.section-title h2 {
  font-size: 42px;

  color: #081521;
}

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

.values-section {
  padding: 100px 0;
}

.values-container {
  width: 85%;
  margin: auto;
}

.values-grid {

  display: grid;

  grid-template-columns:
      repeat(4, 1fr);

  gap: 25px;
}

.value-card {

  background: white;

  padding: 40px 30px;

  text-align: center;

  border-radius: 15px;

  border: 1px solid #edf0f4;

  transition: .3s ease;
}

.value-card:hover {

  transform: translateY(-8px);

  box-shadow:
    0 20px 40px rgba(0,0,0,0.08);
}

.value-card i {

  font-size: 42px;

  color: #b79b4a;

  margin-bottom: 20px;
}

.value-card h3 {

  color: #081521;

  margin-bottom: 15px;
}

.value-card p {

  color: #666;

  line-height: 1.7;
}

/* ==================================
   WHY AGRIPPA
================================== */

.why-agrippa {

  background: #081521;

  color: white;

  padding: 100px 0;
}

.why-agrippa .section-title h2 {
  color: white;
}

.why-container {
  width: 85%;
  margin: auto;
}

.why-grid {

  display: grid;

  grid-template-columns:
      repeat(2, 1fr);

  gap: 25px;

  margin-top: 50px;
}

.why-grid div {

  background:
    rgba(255,255,255,0.08);

  padding: 25px;

  border-radius: 10px;

  font-size: 17px;
}

/* ==================================
   TEAM SECTION
================================== */

.team-section {
  padding: 100px 0;
  background: #fff;
}

.team-container {
  width: 85%;
  margin: auto;
}

.team-grid {

  display: grid;

  grid-template-columns:
      repeat(3, 1fr);

  gap: 30px;
}

.team-card {

  background: white;

  text-align: center;

  border-radius: 15px;

  overflow: hidden;

  box-shadow:
    0 10px 25px rgba(0,0,0,0.08);

  transition: .3s ease;
}

.team-card:hover {

  transform: translateY(-8px);
}

.team-card img {

  width: 100%;
  height: 350px;

  object-fit: cover;
}

.team-card h3 {

  margin-top: 25px;

  color: #081521;
}

.team-card p {

  color: #777;

  margin:
    10px 0 25px;
}

/* ==================================
   CTA SECTION
================================== */

.cta-section {

  background:
    linear-gradient(
      135deg,
      #081521,
      #12304d
    );

  color: white;

  text-align: center;

  padding: 100px 20px;
}

.cta-content {

  max-width: 850px;

  margin: auto;
}

.cta-content h2 {

  font-size: 48px;

  margin-bottom: 20px;
}

.cta-content p {

  font-size: 18px;

  color: #ddd;

  margin-bottom: 35px;
}

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

@media (max-width: 1024px) {

  .page-content h1 {
    font-size: 46px;
  }

  .about-container {
    grid-template-columns: 1fr;
  }

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

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

  .mission-container {
    grid-template-columns: 1fr;
  }
}

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

@media (max-width: 768px) {

  .page-hero {
    height: 450px;
  }

  .page-content h1 {
    font-size: 36px;
  }

  .page-content p {
    font-size: 16px;
  }

  .about-company,
  .mission-section,
  .values-section,
  .why-agrippa,
  .team-section {
    padding: 70px 0;
  }

  .about-container,
  .mission-container,
  .team-grid,
  .values-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .about-container,
  .mission-container,
  .values-container,
  .team-container,
  .why-container {
    width: 90%;
  }

  .about-text h2,
  .section-title h2,
  .cta-content h2 {
    font-size: 30px;
  }

  .team-card img {
    height: 300px;
  }
}

/* ==================================
   SMALL PHONES
================================== */

@media (max-width: 480px) {

  .page-content h1 {
    font-size: 30px;
  }

  .mission-card,
  .value-card {
    padding: 30px 20px;
  }

  .cta-content h2 {
    font-size: 26px;
  }
}
