:root {
  --v-font-size: 1.2rem;
  --v-background-color: #fbc6e5;
  --v-light-color: #9da3bb;
  --v-cool-color: #7e819a;
  --v-blue: #222d4c;
  --v-highlight-color: white;
  --transition-speed: 0;
  --transition-step: 0;
  --v-box-shadow: rgba(17, 12, 46, 0.15);
  --v-font-color: #e9a447;
  --v-font-color-pink: #ed1491;
  --v-font-family: "Montserrat", sans-serif;
}

html {
  height: 100%;
  box-sizing: border-box;
}
body {
  background-color: var(--v-font-color-pink);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main {
  flex: 1 0 auto; /* optional — or just flex: 1; */
  min-height: 0;
  background-color: var(--v-background-color);
}

.logo {
  max-width: 200px;
}
#hero {
  min-height: 90vh;
  padding-top: 5rem;
}
.hero-img {
  margin-top: 5rem;
}
h1 {
  color: var(--v-font-color-pink);
  font-size: 5rem;
}
nav {
  box-shadow: 0 6px 18px rgba(255, 60, 160, 0.35);
}

footer {
  background-color: var(--v-font-color-pink);
  color: white;
  padding-top: 2rem;
  padding-bottom: 4rem;
  margin-bottom: 0;
}

/*ScrollBar Start*/

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background-color: var(--v-font-color-pink);
  border-radius: 10px;
  border: 3px solid #f1f1f1;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--v-font-color-pink);
}

::-ms-scrollbar {
  width: 12px;
}

::-ms-scrollbar-track {
  background: #f1f1f1;
}

::-ms-scrollbar-thumb {
  background-color: var(--qrs-primay-color);
  border-radius: 10px;
  border: 3px solid #f1f1f1;
}

::-ms-scrollbar-thumb:hover {
  background: #555;
}
/*Scroll Bar End */

.lexend-exa-body {
  font-family: "Lexend Exa", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}
.licorice-regular {
  font-family: "Licorice", cursive;
  font-weight: 400;
  font-style: normal;
}

.lead {
  font-weight: 600;
}

/* bubble button start*/
.bubble-btn {
  position: relative;
  color: white;
  padding: 14px 32px;
  border: 3px solid white;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  color: #3a003a;
  background: linear-gradient(180deg, #ffb3e8, #ff3fb4);
  box-shadow: 0 6px 18px rgba(255, 60, 160, 0.35),
    inset 0 -6px 12px rgba(255, 255, 255, 0.25);
  transition: transform 200ms cubic-bezier(0.2, 0.9, 0.3, 1),
    box-shadow 200ms ease;
}

/* Glossy highlight */
.bubble-btn::before {
  content: "";
  position: absolute;
  top: 6%;
  left: 12%;
  right: 12%;
  height: 25%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  filter: blur(4px);
  pointer-events: none;
}

/* Hover / active */
.bubble-btn:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 16px 32px rgba(255, 60, 160, 0.35);
}

.bubble-btn:active {
  transform: scale(0.96);
}

/* Decorative floating bubbles */
.bubble-btn .bubble {
  position: absolute;
  bottom: -6px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 8px rgba(255, 150, 210, 0.25);
  animation: floatUp 2.2s ease infinite;
  pointer-events: none;
  opacity: 0;
}

.bubble-btn .b1 {
  left: 20%;
  animation-delay: 0ms;
}
.bubble-btn .b2 {
  left: 50%;
  animation-delay: 300ms;
}
.bubble-btn .b3 {
  left: 75%;
  animation-delay: 600ms;
}

@keyframes floatUp {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-40px);
    opacity: 0;
  }
}
/* bubble button end*/

/* Form layout */
/* 🎀 OUTER HOT-PINK BUBBLE WRAPPER 🎀 */
.bubble-form-wrapper {
  max-width: 420px;
  margin: 40px auto;
  padding: 32px 28px;
  border-radius: 40px;

  background: linear-gradient(180deg, #ffc6f0, #ff5ac7);
  border: 4px solid white;

  box-shadow: 0 12px 30px rgba(255, 70, 170, 0.35),
    inset 0 -12px 20px rgba(255, 255, 255, 0.22),
    inset 0 8px 20px rgba(255, 255, 255, 0.35);

  position: relative;
}

/* Glossy highlight on the bubble container */
.bubble-form-wrapper::before {
  content: "";
  position: absolute;
  top: 6%;
  left: 10%;
  right: 10%;
  height: 18%;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.55);
  filter: blur(10px);
  pointer-events: none;
}

/* 🎀 Form layout inside bubble */
.bubble-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* Labels */
.bubble-form label span {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
  color: #54003f;
  font-size: 0.9rem;
}

/* 🎀 Inputs & textarea, matching bubble theme */
.bubble-form input,
.bubble-form textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 999px;
  border: 3px solid white;
  font-size: 1rem;

  background: linear-gradient(180deg, #ffe7f7, #ffc7ec);
  color: #3a003a;

  box-shadow: 0 6px 18px rgba(255, 60, 160, 0.22),
    inset 0 -4px 10px rgba(255, 255, 255, 0.35);

  outline: none;
  transition: transform 0.2s ease, box-shadow 0.25s ease;
}

.bubble-form textarea {
  border-radius: 26px;
  min-height: 110px;
}

/* Cute placeholder color */
.bubble-form input::placeholder,
.bubble-form textarea::placeholder {
  color: #8b3b7b;
  opacity: 0.55;
}

/* 🎀 Focus glow (matches button hover color) */
.bubble-form input:focus,
.bubble-form textarea:focus {
  box-shadow: 0 0 0 4px rgba(255, 90, 190, 0.45),
    0 8px 22px rgba(255, 60, 160, 0.25),
    inset 0 -4px 10px rgba(255, 255, 255, 0.4);

  transform: translateY(-3px);
}
