@charset "utf-8";
/* =========================================================
   Whisker Witch — About (page-only)
   Keep this file limited to About-page components.
   Everything else should be handled by magicstyle.css
   ========================================================= */

/* Lead + subcopy */
.about-lead{
  text-align: center;
  margin: 0 auto 0.2rem;
  color: #5b3a29;
  font-size: 1.02rem;
}

.about-subcopy{
  text-align: center;
  margin: 0 auto 1.1rem;
  color: #7b6b5d;
  font-size: 0.96rem;
  font-style: italic;
}

/* About content card */
.about-card{
  max-width: 920px;
  margin: 0 auto;
  background: rgba(255,252,240,0.96);
  border-radius: 14px;
  border: 1px solid rgba(190,150,90,0.9);
  box-shadow:
    0 6px 16px rgba(0,0,0,0.22),
    0 0 18px rgba(223,188,115,0.45);
  padding: 1.4rem 1.6rem;
  position: relative;
  overflow: hidden;
}

.about-card::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(255,255,255,0.40) 0, transparent 55%),
    radial-gradient(circle at 100% 0%, rgba(255,240,210,0.30) 0, transparent 60%);
  pointer-events: none;
  opacity: 0.9;
}

.about-card-inner{
  position: relative;
  z-index: 1;
  font-family: 'Crimson Pro', serif;
  color: #4b2c16;
  line-height: 1.75;
  font-size: 1.02rem;
}

.about-card-inner h2{
  font-family: 'Cinzel', serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 1.05rem;
  margin: 1.2rem 0 0.6rem;
  color: #4b2c16;
}

/* Team section */
.team-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 0.8rem;
}

@media (max-width: 720px){
  .team-grid{ grid-template-columns: 1fr; }
}

.team-member{
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(190,150,90,0.55);
  background: rgba(255,255,255,0.55);
  min-width: 0; /* prevents long text forcing overflow */
}

.team-member img{
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(190,150,90,0.95);
  box-shadow: 0 6px 14px rgba(0,0,0,0.18);
  flex: 0 0 auto;
}

@media (max-width: 640px){
  .team-member img{
    width: 64px;
    height: 64px;
  }
}

.team-name{
  font-family: 'Cinzel', serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.92rem;
  margin-bottom: 2px;
}

.team-role{
  font-size: 0.92rem;
  color: #5c3921;
  font-style: italic;
  margin-bottom: 4px;
  overflow-wrap: anywhere;
}

/* Collapsible mini-bio */
.team-bio-toggle{
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(190,150,90,0.85);
  background: rgba(255,255,255,0.55);
  color: #4b2c16;
  font-family: 'Cinzel', serif;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  user-select: none;
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.team-bio-toggle:hover{
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

.team-bio-toggle .chev{
  display: inline-block;
  transition: transform 160ms ease;
  font-size: 0.9rem;
  line-height: 1;
}

.team-bio-panel{
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(190,150,90,0.55);
  background: rgba(255,255,255,0.65);
}

.team-bio{
  font-size: 0.95rem;
  color: #4b2c16;
  line-height: 1.55;
  margin-top: 6px;
  word-break: break-word;
}

.team-quote{
  margin-top: 10px;
  font-size: 0.92rem;
  color: #5c3921;
  font-style: italic;
  padding-left: 10px;
  border-left: 3px solid rgba(190,150,90,0.7);
  word-break: break-word;
  overflow-wrap: anywhere;
}

.team-bio-panel[hidden]{
  display: none !important;
}

.team-member[data-open="true"] .team-bio-toggle .chev{
  transform: rotate(180deg);
}

@media (max-width: 640px){
  .team-bio-toggle{
    width: 100%;
    justify-content: center;
  }
}

/* CTA button */
.about-cta{
  display: flex;
  justify-content: center;
  margin-top: 1.6rem;
}

.about-cta a{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(233,195,120,0.95);
  background: linear-gradient(to bottom, #fbe4b3, #d8b36b);
  color: #3c2210;
  font-family: 'Cinzel', serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow:
    0 8px 18px rgba(0,0,0,0.35),
    0 0 10px rgba(224,188,115,0.85);
  transition: transform 120ms ease, box-shadow 120ms ease, background 160ms ease;
  white-space: nowrap;
}

.about-cta a:hover{
  transform: translateY(-1px);
  background: linear-gradient(to bottom, #ffeaba, #deb873);
  box-shadow:
    0 12px 24px rgba(0,0,0,0.45),
    0 0 16px rgba(255,228,145,0.95);
}

@media (max-width: 640px){
  .about-cta a{
    width: 100%;
    justify-content: center;
  }

  .about-card{
    padding: 1.05rem 1.05rem;
  }

  .about-card-inner{
    font-size: 1rem;
    line-height: 1.7;
  }
}
