/* ================================================================
   ABOUT PAGE STYLES
   ================================================================ */

.about-page {
  background: var(--paper);
  overflow-x: hidden;
}

/* ================================================================
   HERO BANNER
   ================================================================ */
.about-hero {
  width: 100%;
  padding-top: 80px; /* Account for fixed nav */
}

.about-hero-banner {
  width: 100%;
  overflow: hidden;
}

.about-hero-banner img {
  width: 100%;
  height: auto;
  display: block;
  animation: bannerReveal 1.2s ease-out;
}

@keyframes bannerReveal {
  from {
    opacity: 0;
    transform: scale(1.05);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ================================================================
   MISSION STATEMENT
   ================================================================ */
.about-mission {
  padding: 100px 24px 80px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.mission-content {
  position: relative;
  z-index: 2;
}

.mission-text {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 30px;
}

.mission-subtext {
  font-family: 'Caveat', cursive;
  font-size: clamp(20px, 3vw, 28px);
  color: var(--graphite);
  line-height: 1.5;
  font-style: italic;
}

/* Floating stars decoration */
.floating-star {
  position: absolute;
  font-size: 24px;
  color: var(--lime);
  animation: floatStar 4s ease-in-out infinite;
  opacity: 0.7;
}

.floating-star.star-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  color: #ec4899;
}

.floating-star.star-2 {
  top: 60%;
  right: 5%;
  animation-delay: 1.5s;
  color: var(--teal);
}

.floating-star.star-3 {
  bottom: 10%;
  left: 20%;
  animation-delay: 0.8s;
  color: var(--purple);
}

@keyframes floatStar {
  0%, 100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  50% {
    transform: translateY(-15px) rotate(20deg) scale(1.2);
  }
}

/* ================================================================
   FOUNDER SECTION
   ================================================================ */
.about-founder {
  padding: 80px 24px 100px;
  background: linear-gradient(180deg, var(--paper) 0%, #fff 100%);
}

.founder-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.founder-image-wrapper {
  flex: 0 0 400px;
  position: relative;
}

.founder-image {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}

.founder-image-wrapper:hover .founder-image {
  transform: scale(1.03) rotate(-2deg);
}

.founder-content {
  flex: 1;
}

.founder-title {
  margin-bottom: 24px;
}

.founder-label {
  font-family: 'Caveat', cursive;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--pink);
  font-weight: 500;
  display: inline-block;
  transform: rotate(-2deg);
}

.founder-text {
  font-family: 'Open Sans', 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.8;
  color: var(--graphite);
}

/* Responsive */
@media (max-width: 900px) {
  .founder-container {
    flex-direction: column;
    text-align: center;
  }
  
  .founder-image-wrapper {
    flex: 0 0 auto;
    max-width: 350px;
  }
  
  .founder-label {
    transform: rotate(0deg);
  }
}

/* ================================================================
   CLOSING QUOTE
   ================================================================ */
.about-quote {
  padding: 80px 24px 100px;
  position: relative;
  overflow: hidden;
}

.quote-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.quote-text {
  font-family: 'Fraunces', serif;
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
  margin: 0;
  padding: 0 20px;
}

.quote-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.watercolor-splash {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
}

.splash-pink {
  background: var(--pink);
  top: 20%;
  left: 10%;
  animation: splashFloat 8s ease-in-out infinite;
}

.splash-teal {
  background: var(--teal);
  bottom: 20%;
  right: 10%;
  animation: splashFloat 8s ease-in-out infinite reverse;
  animation-delay: -4s;
}

@keyframes splashFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -20px) scale(1.1);
  }
}

/* ================================================================
   TEAM SECTION
   ================================================================ */
.about-team {
  padding: 80px 24px 120px;
  background: var(--paper);
}

.team-title {
  font-family: 'Caveat', cursive;
  font-size: clamp(36px, 5vw, 56px);
  color: var(--ink);
  text-align: center;
  margin-bottom: 60px;
  transform: rotate(-1deg);
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.team-member {
  text-align: center;
  width: 200px;
  transition: transform 0.4s ease;
}

.team-member:hover {
  transform: translateY(-8px);
}

/* Alternate rotations for playful look */
.team-member:nth-child(odd) {
  transform: rotate(-2deg);
}

.team-member:nth-child(even) {
  transform: rotate(2deg);
}

.team-member:nth-child(odd):hover {
  transform: rotate(-2deg) translateY(-8px) scale(1.02);
}

.team-member:nth-child(even):hover {
  transform: rotate(2deg) translateY(-8px) scale(1.02);
}

.member-image-wrapper {
  width: 180px;
  height: 180px;
  margin: 0 auto 16px;
  overflow: hidden;
  border-radius: 50%;
  position: relative;
}

.member-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-member:hover .member-image-wrapper img {
  transform: scale(1.08);
}

.member-name {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}

.member-role {
  font-family: 'Open Sans', 'Inter', sans-serif;
  font-size: 14px;
  color: var(--graphite);
  line-height: 1.4;
}

/* ================================================================
   FOOTER
   ================================================================ */
.about-footer {
  background: var(--paper);
  padding: 40px 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.about-footer .footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.about-footer .footer-left {
  flex: 0 0 auto;
}

.about-footer .footer-social {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.about-footer .social-link {
  display: block;
  width: 60px;
  height: 60px;
  transition: transform 0.4s ease;
}

.about-footer .social-link:nth-child(1) {
  transform: rotate(-3deg);
}

.about-footer .social-link:nth-child(2) {
  transform: rotate(2deg) translateY(-4px);
}

.about-footer .social-link:nth-child(3) {
  transform: rotate(-2deg) translateY(2px);
}

.about-footer .social-link:hover {
  transform: scale(1.12) rotate(-6deg);
}

.about-footer .social-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-footer .footer-right {
  flex: 0 0 auto;
  text-align: right;
}

.about-footer .footer-right p {
  font-family: 'Open Sans', 'Inter', sans-serif;
  font-size: 13px;
  color: var(--ink);
  margin-bottom: 8px;
}

.about-footer .footer-right a {
  display: block;
  font-family: 'Open Sans', 'Inter', sans-serif;
  font-size: 12px;
  color: var(--graphite);
  text-decoration: none;
  margin-bottom: 4px;
  transition: color 0.3s;
}

.about-footer .footer-right a:hover {
  color: var(--pink);
}

/* ================================================================
   ANIMATIONS
   ================================================================ */

/* Fade in up animation */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Fade in left/right */
.fade-in-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* WhatsApp Widget */
.whatsapp-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  z-index: 1000;
  transition: transform 0.3s ease;
}

.whatsapp-widget:hover {
  transform: scale(1.1);
}

.whatsapp-widget img {
  width: 100%;
  height: 100%;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 768px) {
  .about-footer .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .about-footer .footer-right {
    text-align: center;
  }
  
  .team-grid {
    gap: 30px;
  }
  
  .team-member {
    width: 160px;
  }
  
  .member-image-wrapper {
    width: 140px;
    height: 140px;
  }
}
