/* =================================================
   ABOUT PAGE - RADICAL REDESIGN (IMAGE FIRST)
   ================================================= */

.about-hero-container {
  display: flex;
  min-height: 400px;
  margin-top: 2rem;
  margin-bottom: 2rem;
  gap: 0;
  overflow: hidden;
  background-color: #0b132b;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* --- IMAGE CENTERPIECE (70%) --- */
.about-hero-image {
  flex: 2; /* Slightly reduced from 2.5 to give more space to text */
  background-color: #0b132b;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Large and bold */
  display: block;
  transition: transform 0.5s ease;
}

/* Simple overlay for depth */
.about-hero-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(11, 19, 43, 0) 70%,
    rgba(11, 19, 43, 0.4) 100%
  );
}

/* --- TEXT SIDEBAR (30%) --- */
.about-hero-content {
  flex: 2; /* Increased from 1.5 to provide more horizontal space for text */
  background-color: #1c2541;
  display: flex;
  align-items: center; /* Changed back to center for better alignment with fixed height */
  padding: 2rem 3rem;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.about-text-minimal {
  font-family: "Inter", sans-serif;
  color: #edf2f4;
  max-width: 600px; /* Increased from 400px */
}

.about-text-minimal p {
  font-size: 1.15rem; /* Reduced for better proportions */
  line-height: 1.6;
  margin-bottom: 1.5rem; /* More compact spacing */
  font-weight: 300;
}

.about-text-minimal strong {
  color: #3cb371;
  font-weight: 600;
}

/* Minimalist Button */
.about-cta-minimal {
  margin-top: 3rem;
}

.btn-minimal {
  display: inline-block;
  padding: 1rem 2rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  border: 1px solid #3cb371;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 1rem;
}

.btn-minimal:hover {
  background-color: #3cb371;
  color: #0b132b;
  box-shadow: 0 4px 15px rgba(60, 179, 113, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
  .about-hero-container {
    flex-direction: column;
    min-height: auto;
  }

  .about-hero-image {
    flex: none;
    height: 450px;
  }

  .about-hero-content {
    flex: none;
    padding: 4rem 2rem;
  }
}
