/* ================= ABOUT PAGE STYLES ================= */

/* Creator Section */
.creator-section {
  padding: 80px 20px;
}

.section-kicker {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.creator-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 40px 0;
  line-height: 1.1;
}

.creator-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.creator-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink);
  margin: 0 0 20px 0;
}

.creator-text p:last-child {
  margin-bottom: 0;
}

.creator-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.creator-photo {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.creator-photo:first-child {
  grid-column: 1 / -1;
}

/* Fun Facts Section */
.fun-facts-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.fun-facts-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fun-facts-photo {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.fun-facts-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 30px 0;
}

.facts-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.facts-list li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink);
  margin-bottom: 18px;
  padding-left: 24px;
  position: relative;
}

.facts-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
  font-size: 20px;
}

.facts-quote {
  font-style: italic;
  font-size: 16px;
  color: var(--accent);
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

/* Memories Gallery */
.memories-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.gallery-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 1;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-strong);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .creator-intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .fun-facts-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .creator-name {
    font-size: 52px;
  }

  .fun-facts-content h2 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .creator-section {
    padding: 60px 20px;
  }

  .creator-name {
    font-size: 42px;
    margin-bottom: 30px;
  }

  .creator-text p {
    font-size: 15px;
  }

  .creator-photos {
    grid-template-columns: 1fr;
  }

  .creator-photo:first-child {
    grid-column: 1;
  }

  .fun-facts-content h2 {
    font-size: 28px;
  }

  .facts-list li {
    font-size: 14px;
  }

  .memories-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .creator-name {
    font-size: 32px;
  }

  .creator-text p {
    font-size: 14px;
    line-height: 1.6;
  }

  .memories-gallery {
    grid-template-columns: 1fr;
  }
}

/* ================= DECORATIVE ELEMENTS ================= */
.section {
  position: relative;
  overflow: hidden;
}

.section .container {
  position: relative;
}

.decoration {
  position: absolute;
  opacity: 0.48;
  pointer-events: none;
  z-index: 0;
}

.decoration img {
  display: block;
  width: 100%;
  height: auto;
}

.creator-intro,
.fun-facts-wrapper,
.memories-gallery,
.section h1,
.section h2,
.section p,
.section ul {
  position: relative;
  z-index: 1;
}

.decoration-about-top-left {
  left: -64px;
  top: -42px;
  width: 150px;
  transform: rotate(-22deg);
}

.decoration-about-top-right {
  right: -52px;
  top: -36px;
  width: 144px;
  transform: rotate(24deg) scaleX(-1);
}

.decoration-about-left {
  left: -36px;
  top: 31%;
  transform: translateY(-50%) rotate(-10deg);
  width: 108px;
}

.decoration-about-mid-right {
  right: -32px;
  top: 56%;
  width: 104px;
  transform: rotate(-28deg) scaleX(-1);
}

.decoration-about-bottom-left {
  left: -54px;
  bottom: -34px;
  width: 132px;
  transform: rotate(16deg);
}

.decoration-facts-top-left {
  left: -48px;
  top: -32px;
  width: 124px;
  transform: rotate(-24deg);
}

.decoration-about-right {
  right: -40px;
  top: 42%;
  transform: translateY(-50%) rotate(18deg);
  width: 116px;
}

.decoration-facts-bottom-right {
  right: -46px;
  bottom: -40px;
  width: 132px;
  transform: rotate(30deg) scaleX(-1);
}

.decoration-memories-top-right {
  right: -42px;
  top: -34px;
  width: 120px;
  transform: rotate(22deg);
}

.decoration-memories-bottom-left {
  left: -52px;
  bottom: -42px;
  width: 138px;
  transform: rotate(-18deg);
}

@media (max-width: 1200px) {
  .decoration-about-top-left,
  .decoration-about-top-right,
  .decoration-about-left {
    width: 96px;
  }

  .decoration-about-mid-right,
  .decoration-about-bottom-left,
  .decoration-facts-top-left,
  .decoration-about-right {
    width: 92px;
  }

  .decoration-facts-bottom-right,
  .decoration-memories-top-right,
  .decoration-memories-bottom-left {
    width: 100px;
  }
}

@media (max-width: 768px) {
  .decoration-about-top-left,
  .decoration-about-top-right,
  .decoration-about-left,
  .decoration-about-mid-right,
  .decoration-about-bottom-left,
  .decoration-facts-top-left,
  .decoration-about-right,
  .decoration-facts-bottom-right,
  .decoration-memories-top-right,
  .decoration-memories-bottom-left {
    display: none;
  }
}

