/* About Us Hero Section */
.about-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  opacity: 0.5;
  animation: scaleIn 10s linear infinite alternate;
}

@keyframes scaleIn {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.95) 100%);
  z-index: -1;
}

.about-hero-content {
  text-align: center;
  z-index: 10;
  animation: fadeUp 1s ease 0.5s forwards;
  opacity: 0;
}

/* About Us Content Section */
.about-section {
  padding: 4rem 2rem 8rem;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 10;
}

.about-container {
  width: 100%;
  max-width: 900px;
  background: rgba(15, 15, 15, 0.35); /* Rich dark transparency */
  backdrop-filter: blur(16px) saturate(80%);
  -webkit-backdrop-filter: blur(16px) saturate(80%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.15); /* Subtle top light catch */
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 20px 40px rgba(255, 255, 255, 0.02);
  border-radius: 32px;
  padding: 5rem 4rem;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-container:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8), inset 0 0 0 1px rgba(201, 168, 76, 0.2), 0 0 30px rgba(201, 168, 76, 0.1);
}

.about-text-content {
  text-align: center;
}

.about-text-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 2rem;
}

.about-text-content h2 em {
  font-style: italic;
  color: var(--gold);
}

.about-text-content p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 2;
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}

@media (max-width: 600px) {
  .about-hero {
    height: 80vh;
  }
  .about-container {
    padding: 3rem 1.5rem;
  }
  .about-text-content h2 {
    font-size: 2.2rem;
  }
}
