/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 14 2025 | 08:09:57 */
/* ============================================
   PIGMENTS LIVE – Full Width + Brand Theme
   ============================================ */

/* === 1️⃣ Global Setup === */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "Poppins", "Inter", sans-serif;
  background-color: #0A0612; /* brand dark background */
  color: #FFFFFF;
  scroll-behavior: smooth;
}

/* === 2️⃣ Brand Background with Subtle Glow === */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(
      circle at 15% 20%,
      rgba(243, 2, 129, 0.08),
      transparent 60%
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(122, 48, 233, 0.08),
      transparent 60%
    ),
    radial-gradient(
      circle at 40% 100%,
      rgba(237, 171, 0, 0.05),
      transparent 70%
    );
  z-index: -1;
  pointer-events: none;
  background-attachment: fixed;
}

/* === 3️⃣ Ensure All Containers are Full Width === */
body,
.site,
.site-content,
#content,
.wrap,
.container,
.entry-content,
.page-content,
.wp-block-group,
.wp-block-cover,
.wp-block-columns,
.alignfull,
.alignwide,
.site-header,
.site-footer {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Stretch images, covers, and videos */
img,
video,
.wp-block-cover__image-background,
.wp-block-cover img {
  width: 100%;
  height: auto;
  display: block;
}

/* === 4️⃣ Full Width Section Control === */
.alignfull,
.wp-block-cover.alignfull,
.wp-block-image.alignfull,
.wp-block-group.alignfull {
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  width: 100vw !important;
}

/* Background-enabled sections use full width */
section,
.wp-block-group.has-background,
.wp-block-cover {
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

/* === 5️⃣ Header Styling (Sticky & Branded) === */
.site-header {
  background: rgba(10, 6, 18, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  z-index: 999;
  position: sticky;
  top: 0;
}

/* Navigation Links */
.main-navigation a {
  color: #FFFFFF !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  position: relative;
  transition: color 0.3s ease;
}

/* Gradient underline animation */
.main-navigation a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, #F30281, #7A30E9, #EDAB00);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.main-navigation a:hover::after {
  width: 100%;
}

.main-navigation a:hover {
  color: #EDAB00 !important;
}

.current-menu-item a {
  color: #F30281 !important;
}

/* === 6️⃣ Buttons & CTAs === */
button,
input[type="submit"],
.wp-block-button__link,
a.button {
  background: linear-gradient(120deg, #F30281, #7A30E9);
  color: #fff !important;
  padding: 12px 28px !important;
  border-radius: 40px;
  border: none;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(122, 48, 233, 0.25);
  transition: all 0.3s ease;
}

button:hover,
input[type="submit"]:hover,
.wp-block-button__link:hover,
a.button:hover {
  background: linear-gradient(120deg, #7A30E9, #EDAB00);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(243, 2, 129, 0.4);
}

/* === 7️⃣ Section Accent Overlay (optional aesthetic) === */
section::before {
  content: "";
  position: absolute;
  top: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(243, 2, 129, 0.1), transparent 70%);
  filter: blur(80px);
  z-index: 0;
}

/* === 8️⃣ Footer Styling === */
.site-footer {
  background: #0A0612;
  color: #FFFFFF;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.site-footer a {
  color: #EDAB00;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: #F30281;
}

/* === 9️⃣ Responsive === */
@media (max-width: 768px) {
  .main-navigation ul {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }
}
