@import url('https://fonts.googleapis.com/css2?family=Patrick+Hand&display=swap');

/* ── TOPBAR ── */

.topbar{
  position:sticky;
  top:0;
  z-index:1000;

  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:14px 18px;
  margin-bottom:20px;

  background:rgba(255,255,255,.75);
  backdrop-filter:blur(12px);

  border-radius:18px;

  box-shadow:0 6px 20px rgba(255,182,193,.15);
}

.logo-text{
  text-decoration:none;
  color:#f29bb2;
  font-size:22px;
  font-weight:700;
}

.menu-btn{
  background:none;
  border:none;
  font-size:28px;
  color:#f29bb2;
  cursor:pointer;
}

/* ── SIDE MENU ── */

.side-menu{
  position:fixed;
  top:0;
  right:-60%;

  width:50%;
  max-width:260px;
  height:100vh;

  background:white;

  z-index:2000;

  padding:80px 25px;

  display:flex;
  flex-direction:column;
  gap:22px;

  transition:.35s ease;

  box-shadow:-10px 0 30px rgba(0,0,0,.08);
}

.side-menu.show{
  right:0;
}

.side-menu a{
  text-decoration:none;
  color:#5a4a50;
  font-size:22px;
  transition:.2s;
}

.side-menu a:hover{
  color:#f29bb2;
  transform:translateX(4px);
}

/* ── CLOSE BUTTON ── */

.close-btn{
  position:absolute;
  top:18px;
  right:20px;

  background:none;
  border:none;

  font-size:34px;
  color:#f29bb2;

  cursor:pointer;
}

/* ── DARK OVERLAY ── */

.overlay{
  position:fixed;
  inset:0;

  background:rgba(0,0,0,.25);

  opacity:0;
  visibility:hidden;

  transition:.3s;

  z-index:1500;
}

.overlay.show{
  opacity:1;
  visibility:visible;
}

/* ───────────────────────── */
/* RESET */
/* ───────────────────────── */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  scroll-behavior:smooth;
}

html{
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
}

body{
  font-family:'Patrick Hand',cursive;
  background:linear-gradient(to bottom,#fff7fa,#ffe7ee);
  color:#5a4a50;
  padding:20px;
  letter-spacing:.3px;
}

/* ───────────────────────── */
/* LAYOUT */
/* ───────────────────────── */

.container{
  max-width:420px;
  margin:auto;
}

.card{
  background:white;
  border-radius:28px;
  padding:24px;
  margin-bottom:22px;
  box-shadow:0 10px 30px rgba(255,182,193,.25);
  border:1px solid rgba(255,255,255,.5);
}

/* ───────────────────────── */
/* HERO */
/* ───────────────────────── */

.hero{
  text-align:center;
  position:relative;
  overflow:hidden;
}

.hero::before{
  content:'';
  position:absolute;
  width:180px;
  height:180px;
  background:#ffdce5;
  border-radius:50%;
  top:-60px;
  right:-60px;
  z-index:0;
}

.hero img{
  width:140px;
  height:140px;
  object-fit:cover;
  border-radius:50%;
  border:6px solid #fff;
  box-shadow:0 8px 25px rgba(255,182,193,.45);
  position:relative;
  z-index:2;
}

.hero h1{
  font-size:30px;
  margin-top:18px;
  color:#f29bb2;
  position:relative;
  z-index:2;
}

.tagline{
  font-size:14px;
  color:#888;
  margin-top:6px;
  position:relative;
  z-index:2;
}

.hero p{
  margin-top:18px;
  line-height:1.9;
  font-size:18px;
  text-align:left;
}

/* ───────────────────────── */
/* BUTTON */
/* ───────────────────────── */

.btn{
  display:inline-block;
  margin-top:20px;
  background:linear-gradient(to right,#ffb5c8,#f59db4);
  color:white;
  padding:12px 28px;
  border-radius:999px;
  text-decoration:none;
  font-weight:700;
  box-shadow:0 8px 18px rgba(245,157,180,.4);
  transition:.3s;
  font-size:18px;
}

.btn:hover{
  transform:translateY(-3px);
}

/* ───────────────────────── */
/* SECTION TITLE */
/* ───────────────────────── */

.section-title{
  font-size:24px;
  margin-bottom:18px;
  color:#f39db4;
  display:flex;
  align-items:center;
  gap:8px;
}

/* ───────────────────────── */
/* ABOUT */
/* ───────────────────────── */

.about p{
  line-height:2;
  font-size:18px;
}

/* ───────────────────────── */
/* STORY */
/* ───────────────────────── */

.story p{
  line-height:2;
  font-size:18px;
  margin-bottom:18px;
}

/* ───────────────────────── */
/* QUOTE BOX */
/* ───────────────────────── */

.quote-box{
  background:linear-gradient(to right,#fff0f5,#ffe8f0);
  border-left:4px solid #f29bb2;
  border-radius:0 16px 16px 0;
  padding:16px 20px;
  margin:20px 0;
  font-style:italic;
  font-size:18px;
  line-height:1.9;
  color:#c4788e;
}

/* ───────────────────────── */
/* MISSION */
/* ───────────────────────── */

.mission{
  background:linear-gradient(135deg,#fff0f5,#ffe8f0);
  border-radius:20px;
  padding:20px;
  text-align:center;
  margin-top:20px;
}

.mission h3{
  color:#f29bb2;
  font-size:22px;
  margin-bottom:12px;
}

.mission p{
  font-size:18px;
  line-height:1.9;
}

/* ───────────────────────── */
/* STATS */
/* ───────────────────────── */

.stats{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-top:16px;
}

.stat-box{
  background:#fff5f8;
  border-radius:16px;
  padding:16px;
  text-align:center;
}

.stat-number{
  font-size:28px;
  font-weight:700;
  color:#f29bb2;
}

.stat-label{
  font-size:15px;
  color:#888;
  margin-top:4px;
  line-height:1.5;
}

/* ───────────────────────── */
/* VALUES */
/* ───────────────────────── */

.values{
  display:grid;
  gap:12px;
}

.value-box{
  background:#fff5f8;
  border-radius:16px;
  padding:16px;
}

.value-box h4{
  color:#f29bb2;
  font-size:18px;
  margin-bottom:6px;
}

.value-box p{
  font-size:16px;
  line-height:1.8;
}

/* ───────────────────────── */
/* PROFILE */
/* ───────────────────────── */

.info{
  display:grid;
  gap:12px;
}

.info-box{
  background:#fff5f8;
  padding:14px;
  border-radius:16px;
  font-size:17px;
  line-height:1.8;
}

.info-box strong{
  color:#f29bb2;
  display:block;
  margin-bottom:5px;
  font-size:18px;
}

.info-box ul{
  list-style:none;
  padding:0;
}

.info-box ul li{
  padding-left:16px;
  position:relative;
}

.info-box ul li::before{
  content:'•';
  position:absolute;
  left:0;
  color:#f29bb2;
}

/* ───────────────────────── */
/* GALLERY */
/* ───────────────────────── */

.gallery{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.gallery img{
  width:100%;
  border-radius:18px;
  height:140px;
  object-fit:cover;
}

/* ───────────────────────── */
/* TIMELINE */
/* ───────────────────────── */

.timeline{
  position:relative;
  padding-left:20px;
}

.timeline::before{
  content:'';
  position:absolute;
  left:7px;
  top:0;
  width:3px;
  height:100%;
  background:#ffc7d4;
  border-radius:20px;
}

.timeline-item{
  position:relative;
  margin-bottom:28px;
  padding-left:18px;
}

.timeline-item::before{
  content:'';
  position:absolute;
  left:-18px;
  top:6px;
  width:16px;
  height:16px;
  background:#f7a9bc;
  border-radius:50%;
  border:3px solid white;
  box-shadow:0 0 0 4px #ffd8e3;
}

.timeline-item h4{
  color:#f29bb2;
  margin-bottom:8px;
  font-size:20px;
}

.timeline-item p{
  font-size:17px;
  line-height:1.9;
}

.timeline-item ul{
  list-style:none;
  padding:0;
  margin-top:6px;
}

.timeline-item ul li{
  font-size:16px;
  line-height:1.9;
  padding-left:16px;
  position:relative;
}

.timeline-item ul li::before{
  content:'→';
  position:absolute;
  left:0;
  color:#f29bb2;
}

/* ───────────────────────── */
/* SOCIALS */
/* ───────────────────────── */

.socials{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
}

.socials a{
  width:52px;
  height:52px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:18px;
  background:#fff5f8;
  font-size:24px;
  text-decoration:none;
  transition:.3s;
  box-shadow:0 6px 15px rgba(255,182,193,.18);
}

.socials a:hover{
  transform:translateY(-4px);
}

/* ───────────────────────── */
/* PLATFORMS */
/* ───────────────────────── */

.platforms{
  display:grid;
  gap:10px;
}

.platform-item{
  background:#fff5f8;
  border-radius:14px;
  padding:12px 16px;
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:#5a4a50;
  transition:.3s;
  font-size:16px;
}

.platform-item:hover{
  transform:translateX(6px);
  background:#ffe8f0;
}

.platform-item span{
  font-size:24px;
}

.platform-item strong{
  color:#f29bb2;
  display:block;
}

/* ───────────────────────── */
/* CONTACT */
/* ───────────────────────── */

.contact-list{
  list-style:none;
  padding:0;
  margin-top:16px;
  display:grid;
  gap:10px;
}

.contact-list li{
  background:#fff5f8;
  padding:12px 16px;
  border-radius:14px;
  font-size:16px;
  line-height:1.7;
}

.contact-list li a{
  color:#f29bb2;
  text-decoration:none;
  font-weight:600;
}

.contact-note{
  margin-top:16px;
  font-size:16px;
  line-height:1.9;
  color:#888;
  text-align:center;
  font-style:italic;
}

/* ───────────────────────── */
/* MUSIC */
/* ───────────────────────── */

.music{
  background:linear-gradient(to right,#ffe1ea,#fff0f5);
  border-radius:18px;
  padding:15px;
  margin-top:18px;
  text-align:center;
  font-size:16px;
  color:#c4788e;
  font-style:italic;
}

/* ───────────────────────── */
/* BACK BUTTON */
/* ───────────────────────── */

.back-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:20px;
  color:#f29bb2;
  text-decoration:none;
  font-weight:700;
  font-size:16px;
}

/* ───────────────────────── */
/* FOOTER */
/* ───────────────────────── */

footer{
  text-align:center;
  padding:20px;
  color:#999;
  font-size:15px;
}

footer a{
  color:#f29bb2;
  text-decoration:none;
  font-weight:600;
}

/* ───────────────────────── */
/* MOBILE */
/* ───────────────────────── */

@media(max-width:500px){

  body{
    padding:14px;
  }

  .hero h1{
    font-size:28px;
  }

  .section-title{
    font-size:22px;
  }

  .hero p,
  .story p,
  .about p{
    font-size:17px;
  }

}