.elementor-kit-7{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-color-f14eb53:#1A75C0;--e-global-color-8a91ebb:#9C11A0;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-7 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */@font-face {
  font-family: 'NyghtSerif';
  src: url('/wp-content/fonts/NyghtSerif.woff2') format('woff2'),
       url('/wp-content/fonts/NyghtSerif.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}



/* Curated Text - Primary Heading Style */
.text-primary-heading {
  font-family: 'Outfit', 'Outfit Fallback', sans-serif;
  color: #ffffff;
  font-size: 3.75rem;
  font-weight:500;
  text-shadow:
    rgba(255, 255, 255, 0.05) 0px 4px 8px,
    rgba(255, 255, 255, 0.25) 0px 8px 30px;
	
}

/* Work Text - Animated Gradient */
.text-animated-gradient {
  font-family: 'NyghtSerif', serif;
  font-size: 3.75rem;
  
  background: linear-gradient(270deg, #ff6a00, #ff0099 50%, #0066ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: textGradientMove 6s ease infinite;
  text-shadow:
    rgba(255, 255, 255, 0.05) 0px 4px 8px,
    rgba(255, 255, 255, 0.25) 0px 8px 30px;
}

/* Gradient Animation */
@keyframes textGradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Responsive Typography */
@media (max-width: 1024px) {
  .text-primary-heading,
  .text-animated-gradient {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .text-primary-heading,
  .text-animated-gradient {
    font-size: 2.25rem;
  }
}

@media (max-width: 480px) {
  .text-primary-heading,
  .text-animated-gradient {
    font-size: 1.75rem;
  }
}
======================================

/*portfolio images*/

.image-hover-container {
  position: relative;
  display: inline-block;
  border-radius: 12px;
  overflow: hidden; /* Prevents image from spilling out */
  width: 100%;
  
  cursor: pointer;
}

.hover-transform-image {
  display: block;
  top:0;
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
  transform: translateY(0px) scale(1) rotate(0deg);
  will-change: transform;
}

.image-hover-container:hover .hover-transform-image {
   transform: translateY(0px) scale(1.08) rotate(-3deg);
}
======================================/* End custom CSS */