/* About Us Page Styles */

/* General Layout */
.about-content {
  color: var(--text-color);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 60px 0;
}

h1,
h2,
h3 {
  color: var(--primary-color-dark);
  font-weight: 400;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-align: center;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  position: relative;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

/* Hero Section */
.about-hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../../../assets/img/about/hero-background.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 100px 0 80px;
  position: relative;
  color: var(--text-color-light);
}

.about-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(
    to right bottom,
    transparent 49%,
    var(--background-color-light) 50%
  );
}

.about-hero h1 {
  font-size: 3.5rem;
  color: var(--light-color);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  font-weight: 600;
  text-transform: uppercase;
}

.company-intro {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.company-intro h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--light-color);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.company-intro p {
  font-size: 1.3rem;
  color: var(--text-color-light);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Photos Section */
.about-photos {
  background-color: var(--background-color-light);
  text-align: center;
}

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.photo-item {
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.photo-wrapper {
  height: 250px;
  overflow: hidden;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.photo-item:hover .about-image {
  transform: scale(1.05);
}

.photo-caption {
  padding: 15px;
  background-color: #fff;
  font-size: 1rem;
  color: var(--text-color);
  font-style: italic;
}

/* Mission Section */
.mission-section {
  background-color: var(--background-color-dark);
  color: var(--text-color-light);
  padding: 80px 0;
  position: relative;
}

.mission-section::before,
.mission-section::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 50px;
}

.mission-section::before {
  top: 0;
  background: linear-gradient(
    to right bottom,
    var(--background-color-light) 49%,
    transparent 50%
  );
}

.mission-section::after {
  bottom: 0;
  background: linear-gradient(
    to left bottom,
    transparent 49%,
    var(--background-color-light) 50%
  );
}

.mission-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.mission-section h2 {
  color: var(--text-color-light);
  font-size: 2.8rem;
  margin-bottom: 30px;
}

.mission-section p {
  color: var(--text-color-light);
  font-size: 1.5rem;
  line-height: 1.8;
}

/* Values Section */
.values-section {
  background-color: var(--background-color-light);
  text-align: center;
  padding: 80px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.value-card {
  background-color: var(--background-color);
  padding: 30px 20px;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.value-icon {
  width: 80px;
  height: 80px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.value-icon i {
  font-size: 2rem;
  color: var(--text-color-light);
}

.value-card h3 {
  margin-bottom: 15px;
  color: var(--primary-color-dark);
}

.value-card p {
  color: var(--text-color);
  font-size: 1rem;
  flex-grow: 1;
}

/* CTA Section */
.cta-section {
  background-color: var(--background-color);
  text-align: center;
  padding: 80px 0;
  position: relative;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(
    to left bottom,
    var(--background-color-light) 49%,
    transparent 50%
  );
}

.cta-section h2 {
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.2rem;
  color: var(--text-color);
  max-width: 700px;
  margin: 0 auto 30px;
}

.cta-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--text-color-light);
  padding: 15px 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s, transform 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  background-color: var(--primary-color-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .mission-section p {
    font-size: 1.2rem;
  }

  .photo-gallery,
  .values-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 40px 0;
  }

  .about-hero {
    padding: 60px 0 40px;
  }
}
