.about-page {
  padding-top: 80px;
  min-height: 100vh;
  background-color: #050505;
  color: #d4d4d4;
  background-image: url('https://www.transparenttextures.com/patterns/stardust.png');
}

.about-header {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(to bottom, rgba(5, 5, 5, 0.3), #050505),
              url('https://images.unsplash.com/photo-1507608616759-54f48f0af0ee?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid #1a1a1a;
}

.about-header h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #d4af37;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
  font-family: 'Cormorant Garamond', serif;
}

.about-header p {
  font-size: 1.2rem;
  color: #a0a0a0;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Biography Section */
.biography {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.bio-container {
  display: flex;
  gap: 4rem;
  align-items: center;
}

.bio-image {
  flex: 1;
  position: relative;
}

.bio-image img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  border: 1px solid #333;
  filter: sepia(20%) contrast(1.1);
}

.bio-image::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100%;
  height: 100%;
  border: 1px solid #d4af37;
  border-radius: 4px;
  z-index: -1;
  opacity: 0.3;
}

.bio-text {
  flex: 1.2;
}

.bio-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #d4af37;
  font-family: 'Cormorant Garamond', serif;
}

.quote {
  font-size: 1.3rem;
  font-style: italic;
  color: #e0e0e0;
  border-left: 3px solid #d4af37;
  padding-left: 1.5rem;
  margin-bottom: 2rem;
  font-family: 'Cormorant Garamond', serif;
}

.bio-text p {
  color: #a0a0a0;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.achievements {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
}

.achievement {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.achievement .number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 0.5rem;
  font-family: 'Cormorant Garamond', serif;
}

.achievement .label {
  color: #888;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Montserrat', sans-serif;
}

/* Video Section */
.video-message {
  padding: 4rem 2rem;
  background: rgba(20, 20, 20, 0.5);
  text-align: center;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
}

.video-container {
  max-width: 800px;
  margin: 0 auto;
}

.video-container h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #d4af37;
  font-family: 'Cormorant Garamond', serif;
}

.video-placeholder {
  aspect-ratio: 16/9;
  background: #0a0a0a;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #333;
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-placeholder:hover {
  border-color: #d4af37;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
}

.play-button {
  font-size: 4rem;
  color: #d4af37;
  margin-bottom: 1rem;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.video-placeholder:hover .play-button {
  opacity: 1;
}

/* Rituals Section */
.rituals {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.rituals h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #d4af37;
  font-family: 'Cormorant Garamond', serif;
}

.rituals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.ritual-item {
  text-align: center;
  padding: 2rem;
  background: rgba(20, 20, 20, 0.6);
  border-radius: 4px;
  border: 1px solid #1a1a1a;
  transition: transform 0.3s ease;
}

.ritual-item:hover {
  transform: translateY(-5px);
  border-color: #333;
  background: rgba(20, 20, 20, 0.8);
}

.ritual-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 2px;
  margin-bottom: 1.5rem;
  filter: sepia(10%);
}

.ritual-item h3 {
  color: #e0e0e0;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  font-family: 'Cormorant Garamond', serif;
}

.ritual-item p {
  color: #888;
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 968px) {
  .bio-container {
    flex-direction: column;
    gap: 2rem;
  }

  .bio-image {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .achievements {
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
  }
}