html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Fredoka', sans-serif;
  cursor: url("heart-cursor.png") 8 8, auto;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 182, 213, 0.35) 0 45px, transparent 46px),
    radial-gradient(circle at 80% 12%, rgba(255, 220, 150, 0.30) 0 35px, transparent 36px),
    radial-gradient(circle at 8% 85%, rgba(196, 229, 255, 0.32) 0 40px, transparent 41px),
    radial-gradient(circle at 88% 78%, rgba(255, 196, 228, 0.28) 0 32px, transparent 33px),
    linear-gradient(to bottom, #fff8fc, #ffeef7 45%, #fff7fb 100%);
  color: #2b1b24;
  line-height: 1.7;
}

a,
button,
.button,
.nav a {
  cursor: url("heart-pointer.png") 8 8, pointer;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 90%;
  max-width: 1120px;
  margin: 0 auto;
}

.site-header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 3px dashed #ff5aa9;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  flex-wrap: wrap;
}

.brand-name {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: #ff2f92;
}

.brand-tagline {
  margin: 6px 0 0;
  font-size: 13px;
  color: #7a2654;
}

.nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.nav a {
  color: #7a2654;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  background: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  border: 2px solid #ffc4df;
  box-shadow: 4px 4px 0 #ffe0ee;
  transition: 0.2s ease;
}

.nav a:hover {
  transform: translateY(-2px);
  background: #fff0f7;
}

.hero {
  padding: 80px 0;
  position: relative;
}

.hero::before {
  content: "TONI";
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(90px, 20vw, 240px);
  color: rgba(255, 109, 171, 0.12);
  letter-spacing: 10px;
}

.hero-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 100px;
  color: #ff2f92;
  margin: 0;
}

.button {
  display: inline-block;
  background: linear-gradient(to right, #ff4fa3, #ff7bbd);
  color: white;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 16px;
  font-weight: 600;
}

.hero-image {
  max-width: 390px;
  position: relative;
}

.avatar {
  width: 100%;
  border-radius: 28px;
  border: 4px solid #ff4fa3;
}

.section {
  padding: 70px 0;
}

.section-pink {
  background: rgba(255, 236, 245, 0.78);
  border-top: 2px dashed #ffc4df;
  border-bottom: 2px dashed #ffc4df;
}

h2 {
  font-family: 'Playfair Display', serif;
  color: #ff2f92;
  font-size: 46px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.top-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.info-card {
  background: white;
  padding: 24px;
  border-radius: 24px;
  border: 2px solid #ffd5e7;
  box-shadow: 6px 6px 0 #ffe4f0;
}

.projects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project {
  background: white;
  padding: 16px;
  border-radius: 24px;
  border: 2px solid #ffd5e7;
  box-shadow: 6px 6px 0 #ffe4f0;
}

.project img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
}

.site-footer {
  background: #fff0f7;
  color: #7a2654;
  text-align: center;
  padding: 24px;
  border-top: 3px dashed #ff4fa3;
}

.hero-image::before {
  content: "✦";
  position: absolute;
  top: -15px;
  left: -15px;
  font-size: 34px;
  color: #ff76b6;
}

.hero-image::after {
  content: "♡";
  position: absolute;
  bottom: -15px;
  right: -10px;
  font-size: 30px;
  color: #ff76b6;
}

.music {
  text-align: center;
  padding: 70px 0;
}

.music p {
  color: #7a2654;
  font-weight: 600;
  margin-bottom: 20px;
}

.music-link {
  display: inline-block;
  background: linear-gradient(to right, #ff4fa3, #ff7bbd);
  color: white;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 16px;
  font-weight: 600;
  box-shadow: 4px 4px 0 #ffd4e8;
}

.music-link:hover {
  transform: translateY(-2px);
}
