@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@500;700;800&family=Poppins:wght@400;500;600&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background:
    radial-gradient(circle at 10% 15%, rgba(255, 255, 255, 0.9), transparent 18%),
    radial-gradient(circle at 85% 20%, rgba(255, 245, 170, 0.45), transparent 16%),
    linear-gradient(135deg, #ffd6f5, #d9f6ff, #e9d6ff);
  color: #2b2230;
  line-height: 1.6;
}

/* HEADER */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px;
}

.logo {
  font-family: 'Baloo 2', cursive;
  font-size: 34px;
  font-weight: 800;
  color: #ff86dc;
  text-decoration: none;
  line-height: 1;
  text-shadow:
    -2px -2px 0 #2b2230,
     2px -2px 0 #2b2230,
    -2px  2px 0 #2b2230,
     2px  2px 0 #2b2230,
     0 5px 0 rgba(255, 255, 255, 0.55);
}

.nav a {
  margin-left: 22px;
  text-decoration: none;
  color: #3a3040;
  font-weight: 700;
}

.nav a:hover {
  color: #ff4fc3;
}

/* GLOBAL TEXT */
h1,
h2,
h3 {
  font-family: 'Baloo 2', cursive;
  line-height: 1.05;
}

.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #9b819d;
  margin-bottom: 10px;
  font-weight: 700;
}

/* HERO */
.hero {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  padding: 85px 40px 95px;
  flex-wrap: wrap;
}

.hero::before {
  content: "✨ 💕 ⭐ ✨ 💅";
  position: absolute;
  top: 28px;
  left: 42px;
  font-size: 30px;
  opacity: 0.32;
  pointer-events: none;
}

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

.hero h1 {
  font-size: clamp(46px, 6vw, 78px);
  margin-bottom: 18px;
  color: #ff86dc;
  text-shadow:
    -2px -2px 0 #2b2230,
     2px -2px 0 #2b2230,
    -2px  2px 0 #2b2230,
     2px  2px 0 #2b2230,
     0 6px 0 rgba(255, 255, 255, 0.65);
}

.hero-text {
  max-width: 780px;
  font-size: 18px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* BUTTONS */
.btn {
  padding: 15px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  display: inline-block;
  transition: 0.25s ease;
}

.btn.primary {
  background: linear-gradient(45deg, #ff4fc3, #ff9be8);
  color: white;
  box-shadow: 0 10px 22px rgba(255, 79, 195, 0.35);
}

.btn.primary:hover {
  transform: translateY(-3px) scale(1.04);
}

.btn.secondary {
  background: white;
  border: 3px solid #ff4fc3;
  color: #ff4fc3;
}

.btn.secondary:hover {
  background: #ff4fc3;
  color: white;
  transform: translateY(-3px);
}

/* HERO IMAGE */
.hero-image {
  position: relative;
  display: inline-block;
  margin: 0 auto;
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: -18px;
  background: linear-gradient(135deg, #ff9be8, #b8f2ff, #fff0a8);
  border-radius: 34px;
  z-index: -1;
  transform: rotate(4deg);
  opacity: 0.9;
}

.hero-image::after {
  content: "✨ 💕 ✨";
  position: absolute;
  top: -30px;
  right: -22px;
  font-size: 34px;
  animation: sparkleFloat 2.5s ease-in-out infinite;
}

.hero-image img {
  width: 390px;
  max-width: 100%;
  border-radius: 30px;
  box-shadow: 0 22px 55px rgba(255, 79, 195, 0.28);
  transform: rotate(-2deg);
  transition: 0.3s ease;
  border: 7px solid white;
}

.hero-image img:hover {
  transform: rotate(0deg) scale(1.04);
}

/* OLD HERO CARD FALLBACK */
.hero-card {
  background: white;
  padding: 25px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.price-badge {
  font-family: 'Baloo 2', cursive;
  font-size: 26px;
  color: #ff4fc3;
  font-weight: 800;
}

.nail-preview {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 10px 0;
}

.nail-preview span {
  width: 34px;
  height: 68px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffc0e9, #ff7ad9);
}

/* SECTIONS */
.section {
  padding: 75px 40px;
}

.section h2 {
  font-size: clamp(34px, 4vw, 50px);
  margin-bottom: 24px;
  color: #ff4fc3;
  text-shadow: 0 4px 0 rgba(255,255,255,0.6);
}

/* CARDS */
.cards {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.card {
  background: rgba(255,255,255,0.92);
  padding: 28px;
  border-radius: 24px;
  flex: 1;
  min-width: 240px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.07);
  transition: 0.25s ease;
}

.card:hover {
  transform: translateY(-6px) rotate(-1deg);
}

.fun-card {
  border: 3px dashed rgba(255, 79, 195, 0.28);
}

.card h3 {
  font-size: 28px;
  color: #ff4fc3;
  margin-bottom: 8px;
}

/* GALLERY */
.gallery-section {
  text-align: center;
}

.gallery-intro {
  max-width: 640px;
  margin: 0 auto 34px;
  font-size: 17px;
}

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

.gallery-grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 26px;
  border: 6px solid white;
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
  transition: 0.25s ease;
}

.gallery-grid img:hover {
  transform: scale(1.04) rotate(-1deg);
}

/* STEPS */
.split {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.steps {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  flex: 1;
}

.step {
  background: rgba(255,255,255,0.92);
  padding: 28px;
  border-radius: 24px;
  flex: 1;
  min-width: 230px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.07);
}

.step span {
  font-family: 'Baloo 2', cursive;
  font-size: 34px;
  color: #ff4fc3;
  display: block;
  margin-bottom: 8px;
}

/* ORDER */
.order-section {
  text-align: center;
}

.order-intro,
.included-note {
  max-width: 600px;
  margin: 0 auto 18px;
}

.included-note {
  color: #ff4fc3;
  font-weight: 800;
}

.order-form {
  max-width: 580px;
  margin: 28px auto 0;
  background: rgba(255,255,255,0.95);
  padding: 28px;
  border-radius: 28px;
  box-shadow: 0 16px 36px rgba(255, 79, 195, 0.18);
  display: flex;
  flex-direction: column;
  gap: 15px;
  border: 4px solid rgba(255, 255, 255, 0.9);
}

.order-form input,
.order-form textarea {
  width: 100%;
  padding: 15px 17px;
  border: 3px solid #ffd1ef;
  border-radius: 18px;
  font-family: inherit;
  font-size: 15px;
  outline: none;
}

.order-form input:focus,
.order-form textarea:focus {
  border-color: #ff4fc3;
  box-shadow: 0 0 0 4px rgba(255, 79, 195, 0.12);
}

.order-form textarea {
  resize: vertical;
}

.order-form button {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.phone-note {
  margin-top: 22px;
}

.phone-note a {
  color: #ff4fc3;
  font-weight: 800;
  text-decoration: none;
}

.small-note {
  margin-top: 14px;
  font-size: 14px;
  color: #6b5d70;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 34px;
  font-size: 14px;
}

.footer a {
  display: block;
  margin-top: 5px;
  color: #666;
  text-decoration: none;
}
.vibe-section {
  text-align: center;
  position: relative;
}

.vibe-heading {
  margin-bottom: 30px;
}

/* cloud layout */
.vibe-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

/* base bubble */
.vibe-item {
  background: linear-gradient(145deg, #ffffff, #ffe8fb);
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  box-shadow:
    0 6px 14px rgba(255, 79, 195, 0.15),
    inset 0 2px 4px rgba(255,255,255,0.7);
  transition: 0.25s;
  border: 2px solid #fff;
}

/* bigger ones for variation */
.vibe-item.big {
  font-size: 16px;
  padding: 14px 24px;
}

/* hover = playful */
.vibe-item:hover {
  transform: translateY(-4px) scale(1.05) rotate(-2deg);
  background: linear-gradient(145deg, #fff, #ffd6f5);
}

/* floating sparkles */
.vibe-section::after {
  content: "✨ 💕 ✨";
  position: absolute;
  top: -10px;
  right: 40px;
  font-size: 28px;
  opacity: 0.6;
  animation: sparkleFloat 3s ease-in-out infinite;
}
.checkout-note {
  margin: 18px auto 0;
  font-size: 15px;
  color: #7a5a80;
  font-weight: 600;
}

.checkout-note a {
  color: #ff4fc3;
  font-weight: 800;
  text-decoration: none;
}

.checkout-note a:hover {
  text-decoration: underline;
}

/* ANIMATION */
@keyframes sparkleFloat {
  0%, 100% {
    transform: translateY(0) rotate(-4deg);
  }

  50% {
    transform: translateY(-8px) rotate(4deg);
  }
}

/* MOBILE */
@media (max-width: 800px) {
  .site-header {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 22px;
  }

  .nav a {
    margin: 0 8px;
    font-size: 14px;
  }

  .hero {
    padding: 60px 24px;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .section {
    padding: 58px 24px;
  }

  .gallery-grid img {
    height: 280px;
  }
}