html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background-color: #fff0f5;
      color: #333;
    }
    section {
      padding: 60px 20px;
      text-align: center;
    }
    .hero {
      background: url('https://adustdivact.com/wp-content/uploads/2025/05/pink-sparkle-bg.jpg') center/cover no-repeat;
      color: #000;
      padding: 160px 20px 100px;
    }
    .hero-header {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
    }
    .hero img.logo { width: 160px; max-width: 100%; }
    .hero-text { text-align: left; max-width: 400px; }
    .hero-text h1 { font-size: 2.5rem; margin: 10px 0 0; }
    .hero-text p.slogan { font-size: 1.1rem; margin-top: 5px; font-weight: 500; color: #222; }
    .hero p.intro { font-size: 1.2rem; margin-top: 30px; }

    .nav-section {
      background: #f8bbd0;
      text-align: center;
      padding: 15px 0;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      animation: fadeInDown 0.5s ease forwards;
    }
    .nav-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      transition: all 0.3s ease-in-out;
    }
    .nav-link {
      color: #d63384;
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s ease, border-bottom 0.3s ease;
      border-bottom: 2px solid transparent;
      padding-bottom: 4px;
    }
    .nav-link:hover {
      color: #a64ac9;
      border-bottom: 2px solid #a64ac9;
    }
    .menu-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 1.8rem;
      font-weight: bold;
      color: #d63384;
      cursor: pointer;
      position: relative;
      z-index: 999;
    }
    .menu-toggle::before {
      content: "☰";
      transition: transform 0.3s ease;
    }
    .menu-toggle.open::before {
      content: "✖";
    }
    .nav-blur {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      height: 100vh;
      background: rgba(255, 235, 245, 0.75);
      backdrop-filter: blur(10px);
      z-index: 1;
    }
    .nav-section.open .nav-blur {
      display: block;
    }
    .button-group {
      margin-top: 30px;
    }
    .button-group a {
      text-decoration: none;
      background-color: #ff69b4;
      color: white;
      padding: 12px 26px;
      margin: 10px 5px;
      border-radius: 30px;
      font-weight: bold;
      display: inline-block;
      transition: background 0.3s ease-in-out;
    }
    .button-group a:hover {
      background-color: #e055a0;
    }
    .section-heading {
      font-size: 2rem;
      margin-bottom: 20px;
      color: #c2185b;
    }
    .fade { animation: fadeIn 1.5s ease-in-out; }
    .about img {
      border-radius: 50%;
      width: 140px;
      height: 140px;
      object-fit: cover;
      margin-bottom: 20px;
    }
    footer {
      padding: 30px;
      background: #fce4ec;
      font-size: 0.9rem;
    }
    footer p { margin: 6px 0; }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    @keyframes fadeInDown {
      from { opacity: 0; transform: translateY(-15px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @media screen and (max-width: 768px) {
      .hero-header { flex-direction: column; text-align: center; }
      .hero-text { text-align: center; }
      .hero-text h1 { font-size: 2rem; }
      .hero-text p.slogan { font-size: 1rem; }
      .hero p.intro { font-size: 1rem; }
      .section-heading { font-size: 1.5rem; }
      .nav-links {
        flex-direction: column;
        margin-top: 10px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.3s ease, opacity 0.3s ease;
        z-index: 2;
        position: relative;
      }
      .nav-section.open .nav-links {
        max-height: 500px;
        opacity: 1;
      }
      .menu-toggle { display: block; }
    }
/* Hide default "Welcome to your Dashboard" text */
.page-id-3026 .jetpack-crm-clientportal-dashboard h2 {
  display: none;
}

/* Add custom glam welcome message */
.page-id-3026 .jetpack-crm-clientportal-dashboard::before {
  content: "💖 Welcome to your Diva Dashboard!";
  display: block;
  font-size: 26px;
  font-weight: bold;
  color: #e91e63; /* Hot pink */
  margin-bottom: 10px;
}

.page-id-3026 .jetpack-crm-clientportal-dashboard::after {
  content: "Manage your glam cleanings, invoices, quotes & preferences — all in one fabulous place!";
  display: block;
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}
/* Hide Jetpack CRM's default welcome message */
.page-id-3026 .jetpack-crm-clientportal-dashboard h2,
.page-id-3026 .jetpack-crm-clientportal-dashboard p {
  display: none;
}
footer .subscribe, 
footer .ast-button-wrap, 
footer .ast-footer-widget-area .widget:has(button),
.ast-scroll-to-top-right {
  display: none !important;
}
