/*
Theme Name: Salient Child Theme
Description: This is a custom child theme for Salient
Theme URI:   https://themeforest.net/item/salient-responsive-multipurpose-theme/4363266
Author: ThemeNectar
Author URI:  https://themeforest.net/user/themenectar
Template: salient
Version: 1.0
*/



.mask {
    -webkit-mask-image: url(https://1111sweet.com.au/wp-content/uploads/2025/04/blob.png);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    
    mask-image: url(https://1111sweet.com.au/wp-content/uploads/2025/04/blob.png);
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
 
    animation: rotateMask 2s linear infinite;
}

.mask1 {
    -webkit-mask-image: url(https://1111sweet.com.au/wp-content/uploads/2025/04/mask2.png);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    
    mask-image: url(https://1111sweet.com.au/wp-content/uploads/2025/04/mask2.png);
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
 
    animation: rotateMask 2s linear infinite;
}



@keyframes rotateMask {
    0% { -webkit-mask-position: 50% 0%; mask-position: 50% 0%; }
    25% { -webkit-mask-position: 100% 50%; mask-position: 100% 50%; }
    50% { -webkit-mask-position: 50% 100%; mask-position: 50% 100%; }
    75% { -webkit-mask-position: 0% 50%; mask-position: 0% 50%; }
    100% { -webkit-mask-position: 50% 0%; mask-position: 50% 0%; }
} 
@keyframes pulseClip {
  0% {
    clip-path: circle(75px at 300px 300px);
    -webkit-clip-path: circle(75px at 300px 300px);
  }
  40% {
    clip-path: circle(300px at 300px 300px);
    -webkit-clip-path: circle(300px at 300px 300px);
  }
  60% {
    clip-path: circle(300px at 300px 300px);
    -webkit-clip-path: circle(300px at 300px 300px);
  }
  100% {
    clip-path: circle(75px at 300px 300px);
    -webkit-clip-path: circle(75px at 300px 300px);
  }
}

.melt-enter-active {
   animation: pulseClip 4s ease-in-out infinite;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  transform: scale(1);
  opacity: 0.95;
}
#header-outer #logo img{
	height:70px !important;
}

body #header-outer[data-format=centered-logo-between-menu] #top #logo{
	margin-top: 15px !important;
}




    .card {
      background-color: #dcbab5;
      border-radius: 75px;
      display: flex;
      flex-direction: row;
      align-items: center;
      
      width: 100%;
      max-width: 450px;
      transition: transform 0.3s;
		margin-bottom:30px !important;
    }

    .card:hover {
      transform: scale(1.03);
    }

    .card img {
      width: 150px !important;
      height: 150px !important;
      object-fit: cover;
      border-radius: 50%;
      margin-right: 20px;
    }

    .card-text {
      color: #000;
    }

    .card-text h3 {
      margin: 0;
      font-size: 1.2em;
    }

    .card-text p {
      margin: 5px 0 0;
      font-size: 0.95em;
    }

    @media (max-width: 600px) {
      .card {
        flex-direction: column;
        text-align: center;
      }

      .card img {
        margin: 0 0 10px;
      }
    }
