.apropos-section {
  color: #bfbebe;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
}

.apropos-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 40px;
  width: 100%;
}

.apropos-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Text Content Styling */
.architectural-image,
.apropos-text {
  padding: 20px;
  background: #151515;
  overflow: hidden;
}

.apropos-text h3 {
  font-size: 3.5rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
  color: #ffffff;
  text-transform: uppercase;
  text-shadow: 200px 0px #212121;
}
.apropos-text h3 ~ div {
  margin-left: 20px;
}

.apropos-credits {
  margin-bottom: 3rem;
  line-height: 1.4;
}

.apropos-credits p {
  margin: 0.3rem 0;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  color: white;
  display: block;
}
.apropos-credits p:first-child {
  color: #bfbebe;
  margin: 15px 0;
  font-size: 0.94rem;
}

.apropos-description {
  margin-bottom: 3rem;
}

.apropos-description p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: #bfbebe;
  text-align: justify;
}

.apropos-link a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.02em;
  border-bottom: 1px solid transparent;
  transition: border-bottom-color 0.3s ease;
}

.apropos-link a:hover {
  border-bottom-color: #ffffff;
}

/* Illustration Styling */
.apropos-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.architectural-image img {
  max-width: 100%;
  height: 100%;
}

.architectural-image {
  width: 100%;
  max-width: 600px;
  height: 100%;
}

.architectural-image image {
  width: 100%;
  height: auto;
  /* color: #ffffff; */
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .apropos-container {
    padding: 40px 30px;
  }

  .apropos-content {
    gap: 60px;
  }

  .apropos-text h1 {
    font-size: 3rem;
  }

  .apropos-text h2 {
    font-size: 3.5rem;
  }
}

@media (max-width: 968px) {
  .apropos-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .apropos-text {
    padding-right: 0;
    overflow: hidden;
  }

  .apropos-text h1 {
    font-size: 2.5rem;
  }

  .apropos-text h2 {
    font-size: 3rem;
  }

  .apropos-description p {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .apropos-text h3 ~ div {
    margin-left: 0;
  }
  .apropos-container {
    padding: 30px 20px;
  }

  .apropos-text h1 {
    font-size: 2rem;
  }

  .apropos-text h2 {
    font-size: 2.5rem;
  }

  .apropos-description p {
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
  }

  .architectural-image {
    max-width: 400px;
  }
}

@media (max-width: 480px) {
  .apropos-container {
    padding: 20px 15px;
  }

  .apropos-content {
    gap: 30px;
  }

  .apropos-text h1 {
    font-size: 1.8rem;
  }

  .apropos-text h2 {
    font-size: 2.2rem;
  }

  .apropos-credits {
    margin-bottom: 2rem;
  }

  .apropos-description {
    margin-bottom: 2rem;
  }

  .apropos-description p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}

/* Animation for the architectural drawing */
@keyframes drawIn {
  from {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
  }
  to {
    stroke-dasharray: 1000;
    stroke-dashoffset: 0;
  }
}

.project-types-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.project-type-card {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.project-type-card:hover {
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.project-type-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-type-card:hover::before {
  opacity: 1;
}

.project-type-title {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.project-type-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-type-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.project-type-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.project-type-link:hover {
  color: #fff;
  gap: 12px;
}

.project-type-link::after {
  content: "→";
  font-size: 18px;
}

@media (max-width: 768px) {
  .project-types-container {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}
