/* ===== ABOUT PAGE STYLING ===== */

body {
  background: linear-gradient(to bottom right, rgb(255, 240, 250), rgb(255, 220, 240));
  font-family: "Poppins", sans-serif;
  color: rgb(100, 50, 80);
  margin: 0;
  padding: 0;
}

/* --- Header (inherited from indexStyle) --- */
header {
  background-color: rgb(0, 0, 0);
  padding: 15px 0;
  box-shadow: 0 2px 8px rgba(255, 100, 180, 0.2);
}

/* --- ABOUT MAIN SECTION --- */
.about-section {
  max-width: 1000px;
  margin: 50px auto;
  padding: 20px;
  text-align: center;
}

/* --- MAIN TITLE --- */
.about-section h1 {
  font-size: 2.5em;
  color: rgb(200, 50, 150);
  text-shadow: 0 2px 8px rgba(255, 160, 220, 0.3);
  margin-bottom: 40px;
}

/* --- INTRO SECTION --- */
.intro {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  background: rgb(255, 230, 245);
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(255, 105, 180, 0.2);
  padding: 25px;
}

.profile-pic {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 15px rgba(255, 105, 180, 0.4);
  border: 4px solid rgb(255, 190, 220);
}

.intro p {
  max-width: 550px;
  font-size: 1.1em;
  line-height: 1.6;
  color: rgb(80, 30, 70);
}

/* --- INSPIRATION SECTION --- */
.inspiration {
  margin-top: 60px;
  background: rgb(255, 240, 250);
  border-left: 8px solid rgb(255, 150, 210);
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(255, 100, 170, 0.2);
}

.inspiration h2 {
  color: rgb(180, 50, 130);
  margin-bottom: 15px;
}

.inspiration p {
  font-size: 1.1em;
  color: rgb(90, 40, 70);
}

blockquote {
  font-style: italic;
  color: rgb(150, 70, 130);
  margin-top: 15px;
}

/* --- SPECIAL SECTION --- */
.special {
  margin-top: 60px;
}

.special h2 {
  color: rgb(200, 60, 160);
  margin-bottom: 10px;
}

.special ul {
  list-style: none;
  padding: 0;
  display: inline-block;
  text-align: left;
}

.special li {
  background: rgb(255, 230, 245);
  margin: 8px 0;
  padding: 10px 20px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(255, 120, 200, 0.2);
}

/* --- GALLERY SECTION --- */
.gallery {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.gallery img {
  width: 150px;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(255, 120, 200, 0.4);
  transition: transform 0.3s;
}

.gallery img:hover {
  transform: scale(1.08);
}

/* --- SIGN-OFF --- */
.signoff {
  margin-top: 60px;
  font-size: 1.2em;
  color: rgb(140, 60, 120);
}

/* --- FOOTER (inherits from your site) --- */
footer {
  margin-top: 80px;
  background: rgb(255, 210, 240);
  padding: 20px;
  text-align: center;
  box-shadow: 0 -2px 10px rgba(255, 150, 210, 0.2);
}
