/* About Section Styles */
.about-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, 
    #4ECDC4 0%,
    #45B7AF 25%,
    #3DB7A8 50%,
    #45B7AF 75%,
    #4ECDC4 100%
  );
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/website/peacock_feather.png') center/cover no-repeat;
  opacity: 0.05;
  z-index: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  width: 100%;
  overflow: hidden;
}

.about-tile {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  padding: 2.5rem;
  margin: 2rem auto;
  max-width: 1200px;
  width: 95%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.about-tile h2 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
  text-align: center;
  line-height: 1.2;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

.about-tile p {
  font-size: 0.9rem;
  color: #2c3e50;
  line-height: 1.6;
  text-align: justify;
  text-justify: inter-word;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-tile {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(5px);
}

.feature-tile:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.feature-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.feature-tile:hover .feature-image img {
  transform: scale(1.1);
}

.feature-tile h3 {
  padding: 1.5rem 1.5rem 0.5rem;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: #2c3e50;
  margin: 0;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  display: block;
}

.feature-tile p {
  padding: 0 1.2rem 1.2rem;
  color: #2c3e50;
  line-height: 1.4;
  margin: 0;
  text-align: justify;
  text-justify: inter-word;
  font-size: 0.8rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .about-tile {
    padding: 1.5rem;
    margin: 1.5rem;
  }

  .about-tile h2 {
    font-size: 1.8rem;
  }

  .about-tile p {
    font-size: 0.95rem;
  }
} 