.elementor-2933 .elementor-element.elementor-element-33fdf70{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-2933 .elementor-element.elementor-element-6a294f1{columns:1;}.elementor-2933 .elementor-element.elementor-element-6a294f1 .elementor-drop-cap{margin-inline-end:10px;}.elementor-2933 .elementor-element.elementor-element-2d43ec3{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for text-editor, class: .elementor-element-6a294f1 *//* 🌸 GLOBAL BACKGROUND */
body {
  background: linear-gradient(135deg, #fff0f5, #ffe4ec, #fff);
  color: #333;
  scroll-behavior: smooth;
}

/* ✨ SECTION SPACING */
section {
  padding: 60px 20px;
  animation: fadeUp 1s ease forwards;
  opacity: 0;
}

/* 🌟 FADE UP ANIMATION */
@keyframes fadeUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* 💖 HEADINGS STYLE */
h1, h2, h3 {
  color: #e91e63;
  letter-spacing: 1px;
  position: relative;
}

/* ✨ UNDERLINE EFFECT */
h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #ff4d88;
  position: absolute;
  left: 0;
  bottom: -10px;
  border-radius: 10px;
}

/* 📝 TEXT */
p {
  line-height: 1.7;
  color: #555;
}

/* 💎 CARD STYLE (for services / content blocks) */
.card, .box, .elementor-widget-container {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(255, 105, 180, 0.1);
  transition: all 0.3s ease;
}

/* 🔥 HOVER EFFECT */
.card:hover, .box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(255, 105, 180, 0.25);
}

/* 💅 BUTTON STYLE */
button, .btn, a.button {
  background: linear-gradient(135deg, #ff4d88, #ff80ab);
  color: #fff !important;
  padding: 12px 22px;
  border-radius: 30px;
  border: none;
  transition: all 0.3s ease;
}

/* ✨ BUTTON HOVER */
button:hover, .btn:hover {
  transform: scale(1.08);
  background: linear-gradient(135deg, #e91e63, #ff4d88);
}

/* 📸 IMAGE HOVER ZOOM */
img {
  border-radius: 12px;
  transition: all 0.4s ease;
}

img:hover {
  transform: scale(1.05);
}

/* 💖 HERO SECTION UPGRADE */
.hero, .page-header {
  background: linear-gradient(135deg, #ffb6c1, #e91e63);
  color: #fff;
  text-align: center;
  animation: fadeUp 1s ease;
}

/* 🌸 INSTAGRAM SECTION */
.instagram, .insta-section {
  background: linear-gradient(135deg, #3b2c24, #5a4438);
  color: #fff;
  padding: 50px 20px;
}

/* ✨ GRID HOVER */
.grid img {
  transition: transform 0.4s ease, filter 0.4s ease;
}

.grid img:hover {
  transform: scale(1.1);
  filter: brightness(1.1);
}

/* 💫 SCROLL REVEAL DELAY (OPTIONAL) */
section:nth-child(2) { animation-delay: 0.2s; }
section:nth-child(3) { animation-delay: 0.4s; }
section:nth-child(4) { animation-delay: 0.6s; }

/* 🌟 SMOOTH PAGE FEEL */
* {
  transition: all 0.2s ease-in-out;
}/* End custom CSS */