/* Header above slideshow + text */
p{
    text-indent: 30px;
}

.about-header {
  text-align: center;
  margin-bottom: 50px;
}

.about-header h1 {
  font-size: 3rem;
  color: #d2b48c;
  margin-bottom: 15px;
}

.about-header .intro {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}

.about-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  margin-bottom: 40px;
  color: #fff;
  font-family: 'Times New Roman', Times, serif;
}

.about-container {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

/* -------------------
   Slideshow styling
-------------------- */
.about-slideshow {
  width: 45%;
  height: 650px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(0,0,0,0.35);
  transform: translateZ(0);
}

/* Slides stay as-is */
.about-slideshow .slide {
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  box-shadow: 0 0 20px rgba(0,0,0,0.35);
}
.about-slideshow .slide.show {
  opacity: 1;
}
/* -------------------
    Text Styling
-------------------- */
.about-text h1 {
  font-size: 3rem;
  color: #d2b48c;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 22px;
  color: rgba(255,255,255,0.85);
}

.nav-button .orbit-dot,
.nav-button .orbit-dot-2 {
  will-change: transform, left, top;
  position: absolute;
}

/* -------------------
   Mobile layout
-------------------- */
@media screen and (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }

  .about-slideshow {
    width: 100%;
    height: 650px;
  }
}
