@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;
}
  
  html{
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
}
    *{
      margin:0;
      padding:0;
      box-sizing:border-box;
      scroll-behavior:smooth;
    }

    body{
  font-family:'Patrick Hand',cursive;
  background:linear-gradient(to bottom,#fff7fa,#ffe7ee);
  color:#5a4a50;
  padding:20px;
  letter-spacing:.3px;
}

    .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;
    }

    .tagline{
      font-size:14px;
      color:#888;
      margin-top:6px;
    }

    .hero p{
      margin-top:18px;
      line-height:1.8;
      font-size:15px;
      text-align:left;
    }

    .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;
    }

    .btn:hover{
      transform:translateY(-3px);
    }

    .section-title{
      font-size:20px;
      margin-bottom:18px;
      color:#f39db4;
      display:flex;
      align-items:center;
      gap:8px;
    }

    /* ── ABOUT ── */
    .about p{
      line-height:1.9;
      font-size:15px;
    }

    /* ── PROFILE ── */
    .info{
      display:grid;
      gap:12px;
    }

    .info-box{
      background:#fff5f8;
      padding:14px;
      border-radius:16px;
    }

    .info-box strong{
      color:#f29bb2;
      display:block;
      margin-bottom:5px;
      font-size:15px;
    }

    .info-box ul{
      list-style:none;
      padding:0;
    }

    .info-box ul li{
      font-size:14px;
      line-height:1.8;
      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:last-child{
      margin-bottom:0;
    }

    .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:16px;
    }

    .timeline-item p{
      font-size:14px;
      line-height:1.8;
    }

    .timeline-item ul{
      list-style:none;
      padding:0;
      margin-top:6px;
    }

    .timeline-item ul li{
      font-size:14px;
      line-height:1.8;
      padding-left:16px;
      position:relative;
    }

    .timeline-item ul li::before{
      content:'→';
      position:absolute;
      left:0;
      color:#f29bb2;
      font-size:12px;
    }

    /* ── 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);
      box-shadow:0 10px 20px rgba(255,182,193,.35);
    }

    /* ── 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:14px;
      line-height:1.6;
    }

    .contact-list li a{
      color:#f29bb2;
      text-decoration:none;
      font-weight:600;
    }

    .contact-list li a:hover{
      text-decoration:underline;
    }

    .contact-note{
      margin-top:16px;
      font-size:14px;
      line-height:1.8;
      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:14px;
      color:#c4788e;
      font-style:italic;
    }

    /* ── FOOTER ── */
    footer{
      text-align:center;
      padding:20px;
      color:#999;
      font-size:14px;
    }

    footer a{
      color:#f29bb2;
      text-decoration:none;
      font-weight:600;
    }

    @media(max-width:500px){
      body{
        padding:14px;
      }
      .hero h1{
        font-size:26px;
      }
    }