
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Quicksand', 'Segoe UI', Arial, sans-serif;
  background: linear-gradient(135deg, #ffe6f7 0%, #cce6ff 100%);
  color: #181a1b;
  min-height: 100vh;
  letter-spacing: 0.02em;
}

nav {
  background: #fff;
  box-shadow: 0 8px 32px 0 rgba(135, 206, 250, 0.15);
  border-radius: 0 0 30px 30px;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  color: #ff69b4;
  text-shadow: 2px 2px 8px #cce6ff;
  letter-spacing: 2px;
  transform: rotateY(-10deg);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #181a1b;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}
.nav-links a:hover {
  background: #ffe6f7;
  color: #ff69b4;
  box-shadow: 0 2px 12px #cce6ff;
}

header {
  text-align: center;
  padding: 5rem 2rem 3rem 2rem;
  background: linear-gradient(120deg, #ffe6f7 60%, #cce6ff 100%);
  border-radius: 0 0 60px 60px;
  box-shadow: 0 8px 32px 0 rgba(255, 182, 193, 0.15);
  transform: rotateX(8deg);
  color: #181a1b;
}

header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #181a1b;
  text-shadow: 0 2px 8px #fff, 0 1px 0 #ffb6c1;
}

header p {
  font-size: 1.3rem;
  color: #22223b;
  margin-bottom: 2rem;
}

.btn {
  background: linear-gradient(90deg, #ffb6c1 60%, #6ec6ff 100%);
  color: #181a1b;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 4px 16px #cce6ff;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s, color 0.3s;
  transform: translateZ(20px);
}
.btn:hover {
  transform: scale(1.08) translateZ(40px);
  box-shadow: 0 8px 32px #ffb6c1;
  color: #ff69b4;
}

section {
  margin: 3rem auto;
  max-width: 900px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  box-shadow: 0 4px 24px #cce6ff;
  padding: 2rem;
  transform: rotateY(6deg);
  text-align: center;
  color: #181a1b;
}

section h2 {
  color: #181a1b;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 8px #fff, 0 1px 0 #ffb6c1;
}

.cards, .gallery {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.card {
  background: #fff;
  color: #181a1b;
  border-radius: 20px;
  box-shadow: 0 4px 16px #ffb6c1;
  padding: 2rem 1.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
  transform: rotateY(-8deg) scale(1);
  cursor: pointer;
  min-width: 180px;
  max-width: 220px;
  margin-bottom: 1rem;
  backdrop-filter: blur(6px);
}
.card:hover {
  transform: rotateY(0deg) scale(1.08);
  box-shadow: 0 8px 32px #6ec6ff;
  color: #ff69b4;
}
.item {
  background: #fff;
  color: #181a1b;
  border-radius: 20px;
  box-shadow: 0 4px 16px #6ec6ff;
  padding: 2rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
  transform: rotateY(8deg) scale(1);
  cursor: pointer;
  min-width: 180px;
  max-width: 220px;
  margin-bottom: 1rem;
  backdrop-filter: blur(6px);
}
.item:hover {
  transform: rotateY(0deg) scale(1.08);
  box-shadow: 0 8px 32px #ffb6c1;
  color: #6ec6ff;
}

#about p {
  font-size: 1.2rem;
  color: #181a1b;
  background: rgba(255, 182, 193, 0.2);
  border-radius: 20px;
  padding: 1rem;
  box-shadow: 0 2px 8px #cce6ff;
}

#contactForm {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin: 0 auto;
  max-width: 400px;
  margin-top: 1.5rem;
}

#contactForm input,
#contactForm textarea {
  padding: 1rem;
  border-radius: 20px;
  border: 1.5px solid #ff69b4;
  background: #fff;
  box-shadow: 0 2px 8px #cce6ff;
  font-size: 1rem;
  color: #181a1b;
  transition: box-shadow 0.3s, background 0.3s;
}

#contactForm input:focus,
#contactForm textarea:focus {
  outline: none;
  background: #cce6ff;
  box-shadow: 0 4px 16px #ffb6c1;
  color: #181a1b;
}

#contactForm button {
  background: linear-gradient(90deg, #ffb6c1 60%, #6ec6ff 100%);
  color: #181a1b;
  padding: 1rem 2rem;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 4px 16px #cce6ff;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s, color 0.3s;
  transform: translateZ(20px);
}
#contactForm button:hover {
  transform: scale(1.08) translateZ(40px);
  box-shadow: 0 8px 32px #ffb6c1;
  color: #ff69b4;
}

footer {
  text-align: center;
  padding: 2rem 0 1rem 0;
  background: rgba(204, 230, 255, 0.5);
  color: #181a1b;
  font-size: 1.1rem;
  border-radius: 30px 30px 0 0;
  box-shadow: 0 -4px 24px #ffb6c1;
  margin-top: 3rem;
  font-weight: 700;
}

@media (max-width: 700px) {
  .cards, .gallery {
    flex-direction: column;
    gap: 1rem;
  }
  section {
    padding: 1rem;
  }
}

/* Add a soft floating animation to cards and items */
.card, .item {
  animation: float 3s ease-in-out infinite alternate;
}

@keyframes float {
  0% { transform: translateY(0) rotateY(-8deg); }
  100% { transform: translateY(-12px) rotateY(8deg); }
}
