body {
  font-family: 'Inter', sans-serif;
  background: #fff5f8;
  margin: 0;
  color: #333;
}

header {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 44px;
  width: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #f25ca2;
  transform: translateY(-4px);
  text-decoration: none;
  line-height: 44px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
}

nav a {
  text-decoration: none;
  color: #f25ca2;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
}

nav a::after {
  content: '';
  width: 0%;
  height: 2px;
  background: #f25ca2;
  position: absolute;
  bottom: -4px;
  left: 0;
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

h1 {
  text-align: center;
  font-size: 42px;
  color: #f25ca2;
  margin-top: 60px;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

.section-title {
  font-size: 28px;
  color: #f25ca2;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  margin-top: 60px;
  margin-bottom: 20px;
}

.insta-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  padding: 30px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.insta-embed {
  width: 300px;
  max-width: 100%;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  padding: 20px;
  max-width: 1000px;
  margin: 40px auto;
}

.gallery img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  object-fit: cover;
  height: 220px;
}

footer {
  background: #f25ca2;
  color: white;
  text-align: center;
  padding: 24px;
  font-size: 14px;
  margin-top: 60px;
}