/* template-parts/about css */

.aboutus-section {
  padding: 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.aboutus-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

/* Hero Image Section with Overlay Text */
.aboutus-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aboutus-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.7);
}

.aboutus-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(56, 146, 166, 0.8) 0%,
    rgba(115, 85, 60, 0.6) 100%
  );
  mix-blend-mode: multiply;
}

.aboutus-statement-container {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.aboutus-statement {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300;
  line-height: 1.4;
  color: #ffffff;
  letter-spacing: -0.02em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin: 0;
}

.aboutus-statement-highlight {
  font-weight: 700;
  color: #F2D7B6;
  font-style: italic;
}

/* Content Section */
.aboutus-content {
  padding: 5rem 2rem;
  position: relative;
}

.aboutus-content::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 150px;
  
  opacity: 0.4;
  border-radius: 50%;
}

.aboutus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

/* Left Column - Main Text */
.aboutus-main {
  position: relative;
}

.aboutus-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 2rem;
  position: relative;
  color: #1a202c;
  line-height: 1.1;
}

.aboutus-title::before {
  content: 'About';
  position: absolute;
  top: -30px;
  left: -20px;
  font-size: clamp(4rem, 7vw, 6rem);
  font-weight: 900;
  font-style: italic;
  color: #BAD3D9;
  opacity: 0.3;
  z-index: -1;
}

.aboutus-paragraph {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 2rem;
  position: relative;
  padding-left: 2rem;
}

.aboutus-paragraph::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: linear-gradient(180deg, #3892A6 0%, #5EADBF 100%);
}

.aboutus-paragraph:first-child {
  font-weight: 500;
}

.aboutus-emphasis {
  color: #73553C;
  font-weight: 700;
  position: relative;
}

/* Right Column - Stats/Features */
.aboutus-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.aboutus-stat {
  background: white;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.aboutus-stat:hover {
  transform: translateX(10px);
  box-shadow: 0 15px 40px rgba(56, 146, 166, 0.15);
}

.aboutus-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #3892A6 0%, #5EADBF 100%);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}

.aboutus-stat:hover::before {
  transform: scaleY(1);
}

.aboutus-stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #3892A6 0%, #73553C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.aboutus-stat-label {
  font-size: 1rem;
  color: #6b7280;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.aboutus-stat-description {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.5;
}

/* Dream Quote Section */
.aboutus-dream {
  margin-top: 5rem;
  text-align: center;
  padding: 4rem 2rem;
  background: white;
  border-radius: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}

.aboutus-dream::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 8rem;
  font-weight: 900;
  color: #BAD3D9;
  opacity: 0.3;
  font-family: Georgia, serif;
}

.aboutus-dream-text {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  line-height: 1.6;
  color: #1a202c;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.aboutus-dream-highlight {
  font-weight: 700;
  font-style: normal;
  background: linear-gradient(135deg, #3892A6 0%, #5EADBF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.aboutus-signature {
  font-size: 1rem;
  color: #73553C;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 2rem;
}

/* Decorative Elements */
.aboutus-decoration {
  position: absolute;
  width: 300px;
  height: 300px;
  
  border-radius: 50%;
  opacity: 0.1;
  bottom: -150px;
  right: -150px;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .aboutus-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .aboutus-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  .aboutus-stat:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 768px) {
  .aboutus-hero {
    height: 50vh;
    min-height: 400px;
  }
  
  .aboutus-statement {
    font-size: 1.5rem;
  }
  
  .aboutus-title {
    font-size: 2rem;
  }
  
  .aboutus-content {
    padding: 3rem 1rem;
  }
  
  .aboutus-dream {
    padding: 2.5rem 1.5rem;
  }
  
  .aboutus-dream-text {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .aboutus-features {
    grid-template-columns: 1fr;
  }
  
  .aboutus-paragraph {
    padding-left: 1.5rem;
  }
  
  .aboutus-stat-number {
    font-size: 2rem;
  }
}