@charset "utf-8";

/* ============================================================
   about-110326-001.css  --  Bellydancing Barbie about page
   All content ASCII-safe (no bytes above 127)
   ============================================================ */


/* -- PAGE WRAPPER ------------------------------------------- */
#about {
  width: 960px;
  margin: 0;
  padding: 0;
}

#newspaper {
  width: 100%;
  box-sizing: border-box;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.slide-exit-left {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateX(-100%);
  opacity: 0;
}

.slide-exit-right {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateX(100%);
  opacity: 0;
}

.slide-enter-from-right {
  transform: translateX(100%);
  opacity: 0;
}

.slide-enter-from-left {
  transform: translateX(-100%);
  opacity: 0;
}


/* -- SLIDES: fixed height for consistency ------------------- */

.about-page {
  width: 100%;
  box-sizing: border-box;
  padding: 30px;
  overflow: hidden;
  position: relative;
  will-change: transform;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              opacity   0.45s cubic-bezier(0.4, 0, 0.2, 1);
}


/* -- BODY TEXT ---------------------------------------------- */

.paper-body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
  line-height: 1.7;
  color: #333;
  margin: 0 0 9px 0;
  padding: 0;
  text-indent: 1.2em;
}

/* No indent on the opening paragraph — drop-cap or top-of-column handles that visually */
.paper-columns p.paper-body:first-child,
.paper-columns p.paper-body:first-of-type {
  text-indent: 0;
}


/* -- DROP CAP ----------------------------------------------- */

.drop-cap-img {
  float: left;
  margin: 2px 6px 2px 0;
  line-height: 1;
}

.drop-cap-hide {
  display: none;
}


/* ============================================================
   SLIDE 0: COVER BANNER
   ============================================================ */

#about-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
  overflow: hidden;
  text-align: center;
}

#about-banner::before {
  content: 'B';
  font-family: Georgia, serif;
  font-size: 300px;
  font-style: italic;
  color: rgba(185, 0, 104, 0.05);
  position: absolute;
  top: -40px;
  right: 0;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

#about-banner .eyebrow {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #aaa;
  margin: 0 0 10px 0;
  padding: 0;
}

#about-banner h1 {
  font-family: Georgia, serif;
  font-size: 3.4em;
  font-weight: normal;
  font-style: italic;
  color: #555;
  line-height: 1.2;
  margin: 0 0 10px 0;
  padding: 0;
}

#about-banner h1 em {
  color: rgba(181, 113, 112, 1);
  font-style: normal;
}

#about-banner .divider {
  color: rgba(181, 113, 112, 1);
  display: block;
  margin: 0 0 12px 0;
  padding: 0;
  font-size: 1.3em;
}

#about-banner .sub {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
  color: #bbb;
  font-style: italic;
  letter-spacing: 0.07em;
  margin: 0 0 24px 0;
  padding: 0;
}

#about-banner .banner-hint {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
  color: rgba(181, 113, 112, 1);
  letter-spacing: 0.05em;
  margin: 0;
  padding: 0;
}

/* ============================================ CODE TO SHAKE LOGO */
@keyframes shake-logo {
  0% { transform: translate(2px, 1px) rotate(0deg); }
  10% { transform: translate(-1px, -2px) rotate(-1deg); }
  20% { transform: translate(-3px, 0px) rotate(1deg); }
  30% { transform: translate(0px, 2px) rotate(0deg); }
  40% { transform: translate(1px, -1px) rotate(1deg); }
  50% { transform: translate(-1px, 2px) rotate(-1deg); }
  60% { transform: translate(-3px, 1px) rotate(0deg); }
  70% { transform: translate(2px, 1px) rotate(-1deg); }
  80% { transform: translate(-1px, -1px) rotate(1deg); }
  90% { transform: translate(2px, 2px) rotate(0deg); }
  100% { transform: translate(1px, -2px) rotate(-1deg); }
}

.shake-logo:hover, .shake-logo:focus {
  animation: shake-logo 1s linear 5;
  transform-origin: 50% 50%;
}


/* ============================================================
   SLIDE 1: THREE-COLUMN NEWSPAPER
   ============================================================ */

.paper-columns {
  column-count: 3;
  column-gap: 28px;
  column-rule: 1px solid #e8e8e8;
  text-align: justify;
  -webkit-hyphens: auto;
  hyphens: auto;
}


/* Pull quote: floated within a single column so text flows around it naturally.
   Width ~88% fills the column it lands in without spanning into the next. */
.pull-quote-wrap {
  float: right;
  width: 100%;
  clear: right;
  margin: 4px 0 12px 0;
  break-inside: avoid;
  page-break-inside: avoid;
}

.pull-quote {
  width: 100%;
  box-sizing: border-box;
  position: relative;
  padding: 14px 24px;
  text-align: center;
  background: none;
}

/* Left bracket [ */
.pull-quote::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 10px;
  border-top: 3px solid rgba(181, 113, 112, 1);
  border-bottom: 3px solid rgba(181, 113, 112, 1);
  border-left: 3px solid rgba(181, 113, 112, 1);
}

/* Right bracket ] */
.pull-quote::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 10px;
  border-top: 3px solid rgba(181, 113, 112, 1);
  border-bottom: 3px solid rgba(181, 113, 112, 1);
  border-right: 3px solid rgba(181, 113, 112, 1);
}

.pull-quote p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.05em !important;
  font-style: italic;
  color: rgba(181, 113, 112, 1) !important;
  font-weight: bold;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.5 !important;
}




/* ============================================================
   SLIDE 2: DANCER + TEXT WRAP
   ============================================================ */

#dancer-img {
  float: right;
  margin: 0 0 6px 22px;
  display: block;
  /* Polygon traces her left-side silhouette so text hugs her shape */
  shape-outside: polygon(
    50% 0%,
    15% 3%,
    5%  10%,
    10% 20%,
    25% 32%,
    28% 48%,
    30% 58%,
    22% 68%,
    8%  80%,
    2%  92%,
    0%  100%,
    100% 100%,
    100% 0%
  );
  shape-margin: 8px;
  -webkit-mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
}

/* Inline pull quote for slide 2 - no column-span needed */
.pull-quote-inline {
  position: relative;
  padding: 10px 20px;
  margin: 60px 30px;
  background: none;
  text-align: center;
  clear: left;
  max-width: 600px;
}

.pull-quote-inline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 10px;
  border-top: 3px solid rgba(181, 113, 112, 1);
  border-bottom: 3px solid rgba(181, 113, 112, 1);
  border-left: 3px solid rgba(181, 113, 112, 1);
}

.pull-quote-inline::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 10px;
  border-top: 3px solid rgba(181, 113, 112, 1);
  border-bottom: 3px solid rgba(181, 113, 112, 1);
  border-right: 3px solid rgba(181, 113, 112, 1);
}

.pull-quote-inline p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.05em !important;
  font-style: italic;
  color: rgba(181, 113, 112, 1) !important;
  font-weight: bold;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.5 !important;
}

.milestone {
  color: #999 !important;
  font-style: italic;
  font-size: 1em !important;
  border-top: 1px solid #eee;
  padding-top: 10px;
  margin-top: 12px !important;
}

.signoff-name {
  font-style: italic;
  color: rgba(181, 113, 112, 1) !important;
  font-weight: bold;
  margin-top: 14px !important;
}


/* ============================================================
   SLIDE 3: HISTORY OF BELLYDANCE
   ============================================================ */

.history-columns {
  column-count: 2;
  column-gap: 36px;
  column-rule: 1px solid #e8e8e8;
  text-align: justify;
  -webkit-hyphens: auto;
  hyphens: auto;
}

.history-heading {
  column-span: all;
  -webkit-column-span: all;
  font-family: Georgia, serif;
  font-size: 1.2em;
  font-style: italic;
  font-weight: bold;
  color: rgba(181, 113, 112, 1);
  margin: 0 0 12px 0;
  padding: 0 0 8px 0;
  border-bottom: 1px solid #f0d0e0;
}

.history-img-placeholder {
  background: #fdf5f9;
  border: 1px dashed #e0a0c0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.history-img-left {
  float: left;
  width: 130px;
  height: 100px;
  margin: 4px 14px 10px 0;
}

.history-img-right {
  float: right;
  width: 130px;
  height: 100px;
  margin: 4px 0 10px 14px;
}

.history-close {
  font-style: italic;
  color: rgba(181, 113, 112, 1) !important;
  font-weight: bold;
  column-span: all;
  -webkit-column-span: all;
  text-align: center;
  margin-top: 14px !important;
  border-top: 1px solid #f0d0e0;
  padding-top: 10px;
}


/* ============================================================
   PAGE CONTROLS
   ============================================================ */

#paper-controls {
  width: 100%;
  box-sizing: border-box;
  padding: 30px;
  height: 35px;
  background: #fff;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  margin: 0;
}

#paper-controls li {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

/* Image-replacement buttons using page1.png / page2.png */
#ctrl-prev a,
#ctrl-next a {
  display: block;
  width: 85px;
  height: 35px;
  overflow: hidden;
  text-indent: -9999px;
  background-size: 85px 35px;
  transition: opacity 0.15s;
}

#ctrl-prev a:hover,
#ctrl-next a:hover {
  opacity: 0.75;
}

#ctrl-prev a {
  background: url(page1.png) 0 0 no-repeat;
}

#ctrl-next a {
  background: url(page2.png) 0 0 no-repeat;
}

#page-indicator {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
  color: #bbb;
  letter-spacing: 0.1em;
}