/* ========================================
   ABOUT US PAGE STYLES
   Capital Tuckpointing - about.html
   ======================================== */

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/hero-desktop-1920.webp') center/cover;
  background-attachment: fixed;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  width: 100%;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: 2px;
  line-height: 1.2;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.4rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 40px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  font-style: italic;
  letter-spacing: 0.5px;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* ========================================
     MAIN CONTENT
     ======================================== */

.main-content {
  padding: 60px 0;
  min-height: calc(100vh - 140px);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================================
     EXPERTISE SECTION
     ======================================== */

.expertise-section {
  background-color: #edeff1;
  padding: 60px 0;
  margin: 40px 0;
  border-radius: 10px;
}

.expertise-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.expertise-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #c6402d;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
  text-align: center;
}

.expertise-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #2a3f50;
  margin: 0;
}

.expertise-image-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.expertise-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(42, 63, 80, 0.15);
}

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

.team-section {
  background-color: #f8f8f8;
  padding: 80px 0;
  margin-bottom: 0;
}

.team-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.team-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #c6402d;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
}

.team-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #2a3f50;
  margin: 0;
}

.team-image-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(42, 63, 80, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(42, 63, 80, 0.2);
}

/* ========================================
     APPROACH SECTION
     ======================================== */

.approach-section {
  background-color: #f8f8f8;
  padding: 80px 0;
  margin-bottom: 0;
}

.approach-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.approach-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #c6402d;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
}

.approach-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #2a3f50;
  margin: 0;
}

.approach-image-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.approach-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(42, 63, 80, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.approach-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(42, 63, 80, 0.2);
}

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

@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
    padding: 60px 20px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/hero-mobile-800.webp') center/cover;
    background-attachment: scroll;
  }

  .hero-title {
    font-size: 2rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
  }

  .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }

  .hero-cta {
    flex-direction: column;
    gap: 15px;
  }

  /* Main Content Mobile */
  .main-content {
    padding: 40px 0;
  }

  .container {
    padding: 0 15px;
  }

  /* Expertise Mobile */
  .expertise-section {
    padding: 40px 0;
    margin: 30px 0;
  }

  .expertise-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 15px;
  }

  .expertise-title {
    font-size: 2rem;
    margin-bottom: 25px;
    text-align: center;
  }

  .expertise-content p {
    font-size: 1rem;
    text-align: center;
  }

  .expertise-image {
    height: 300px;
  }

  /* Team Mobile */
  .team-section {
    padding: 60px 0;
  }

  .team-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .team-title {
    font-size: 2rem;
    margin-bottom: 25px;
    text-align: center;
  }

  .team-content p {
    font-size: 1rem;
    text-align: center;
  }

  .team-image {
    height: 300px;
  }

  /* Approach Mobile */
  .approach-section {
    padding: 60px 0;
  }

  .approach-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .approach-title {
    font-size: 2rem;
    margin-bottom: 25px;
    text-align: center;
  }

  .approach-content p {
    font-size: 1rem;
    text-align: center;
  }

  .approach-image {
    height: 300px;
  }
}

@media (max-width: 480px) {
  /* Hero Extra Small */
  .hero-title {
    font-size: 1.7rem;
    letter-spacing: 0.5px;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  /* Content Extra Small */
  .expertise-section,
  .team-section,
  .approach-section {
    padding: 50px 0;
  }

  .expertise-title,
  .team-title,
  .approach-title {
    font-size: 1.7rem;
  }

  .expertise-content p,
  .team-content p,
  .approach-content p {
    font-size: 1rem;
  }

  .expertise-image,
  .team-image,
  .approach-image {
    height: 250px;
  }

  .expertise-container {
    padding: 0 10px;
  }

  .container {
    padding: 0 15px;
  }
}
