* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #fffafc;
  color: #333;
  line-height: 1.6;
}

.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #fce4ec, #f8bbd0);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
}

.hero-content {
  max-width: 700px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background: white;
  color: #d63384;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  transform: scale(1.05);
}

.section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}

.section h2 {
  text-align: center;
  margin-bottom: 15px;
  font-size: 2rem;
  color: #c2185b;
}

.section-text {
  text-align: center;
  margin-bottom: 35px;
  color: #666;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  padding-bottom: 15px;
}

.card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

.card p {
  padding: 12px;
  font-size: 0.95rem;
  text-align: center;
}

.songs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.song-item {
  background: white;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  text-align: center;
}

.song-item h3 {
  margin-bottom: 10px;
  color: #ad1457;
}

.song-item p {
  margin-bottom: 12px;
}

.song-item a {
  text-decoration: none;
  color: white;
  background: #d63384;
  padding: 10px 16px;
  border-radius: 20px;
  display: inline-block;
}

.notes ul {
  max-width: 750px;
  margin: auto;
  padding-left: 20px;
}

.notes li {
  margin-bottom: 14px;
}

.letter p {
  max-width: 760px;
  margin: auto;
  background: white;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  text-align: center;
}

.footer {
  text-align: center;
  padding: 25px;
  color: #777;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 999;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
}

.lightbox img {
  max-width: 90%;
  max-height: 70vh;
  border-radius: 14px;
  margin-bottom: 15px;
}

.lightbox p {
  color: white;
  text-align: center;
  max-width: 700px;
  font-size: 1rem;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  cursor: pointer;
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .card img {
    height: 220px;
  }
}
