/* Add your CSS code here.

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */
.gradient-heading {
  --color-accent: 250, 8, 195;
  --color-accent-2: 250, 8, 34;

  background-color: rgb(var(--color-accent)) !important;
  background-image: linear-gradient(
    45deg,
    transparent,
    rgb(var(--color-accent-2)),
    transparent,
    rgb(var(--color-accent-2))
  ) !important;

  background-size: 400% !important;
  background-clip: text !important;
  -webkit-background-clip: text !important;

  text-fill-color: transparent !important;
  -webkit-text-fill-color: transparent !important;

  animation: headings-gradient 7s ease infinite !important;

  -webkit-box-decoration-break: clone !important;
  padding-right: 0.2em;
  margin-right: -0.2em;
}

@keyframes headings-gradient {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.sticky-header {
  background-color: #9999992E !important; /* same as bg-[#999999]/18 */
  transition: background-color 0.3s ease;
}

.scrolled .sticky-header {
  background-color: #0000004D !important; /* same as bg-[#000000]/30 */
	backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* for Safari */
}

.header-bottom-right-section{
	 background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.8) 57%,
    rgba(250, 8, 195, 0.1) 100%
  );
}

.pulse-button {
  position: relative;
	display: inline-flex;           /* ensures it behaves like a button */
  justify-content: center;
  align-items: center;
  min-width: 290px;
  min-height: 52px;
  padding: 12px 32px;
  border: none;
  border-radius: 5px;
  color: #ffffff !important;
  font-family: 'Roboto';
  font-size: 18px;
  font-weight: 500;
  background: #FA08C3; /* fallback bg color */
  overflow: hidden;
  cursor: pointer;
	text-decoration:none !important;
}

.pulse-button:hover {
 background: #FA08C3;
}
.pulse-button .btn-label {
  position: relative;
  z-index: 2;
}

.pulse-button .pulse-bg {
  position: absolute;
  inset: 0;
  background-image: url('/artspace/wp-content/uploads/2025/10/pulse-img.webp'); /* replace with your image path */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.6;
  animation: pulse-move 5s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
  border-radius: 5px;
}

@keyframes pulse-move {
  0% {
    transform: translateX(-100%);
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateX(100%);
    opacity: 0.5;
  }
}

.contact-title{
	-webkit-text-stroke: 1px #FFFFFF; /* stroke width and color */
	paint-order: stroke fill;
}

.newsletter-form {
  display: flex;
  align-items: center;
  border: 1px solid #FA08C3;
  border-radius: 5px;
  overflow: hidden;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 17px 16px;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #000;
  border: none;
  outline: none;
}

.newsletter-form button {
  background-color: #FA08C3;
  color: #fff;
  border: none;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 18px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 5px;
/*   transition: background-color 0.3s ease; */
}

.wpcf7-response-output{
	max-width:485px;
}

.newsletter-form p{
	margin-block-end:0;
}

.newsletter-form p .wpcf7-not-valid-tip{
	display:none;
}

.newsletter-form button:hover {
  background-color: #FA08C3;
}

.newsletter-form img {
  height: 20px;
}


/* ====== Contact Form 7 Custom Design ====== */
.custom-contact-form {
  width:100%; 	
  display: flex;
  flex-direction: column;
}


/* Two-column rows */
.custom-contact-form .form-row.two-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.custom-contact-form .form-col {
  flex: 1;
  min-width: 0;
}

/* Two-column layout on desktop */
.custom-contact-form .form-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

@media (min-width: 768px) {
  .custom-contact-form .form-row {
    flex-direction: row;
  }
}

/* Inputs & Textarea */
.custom-contact-form input[type="text"],
.custom-contact-form input[type="email"],
.custom-contact-form input[type="tel"],
.custom-contact-form textarea {
  flex: 1;
  padding: 16.33px 12px;
  border-radius: 5px;
  border: 1px solid #ddd;
  font-size: 14px;
  font-family: "Roboto";
	font-weight: "light";
  color: #000;
  outline: none;
  transition: border-color 0.2s ease;
}


.custom-contact-form input:focus,
.custom-contact-form textarea:focus {
  border-color: #007bff; /* primary color */
}

/* Textarea height */
.custom-contact-form .form-col textarea {
  resize: none;	
  min-height: 120px;
}

/* Checkbox */
.custom-contact-form .form-checkbox {
  width:100%;	 
  display: flex;
  align-items: center; /* align top for multiline text */
  gap: 8px;
  margin-top: 10px;
  font-family: "Roboto";
  font-size: 12px;
  color: #fff;
}

.custom-contact-form .form-checkbox input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  accent-color: #FA08C3; /* your theme pink */
  margin-top: 2px;
  cursor: pointer;
}

/* Submit Button */
.custom-contact-form .submit-btn {
  width: 100%;
  background-color: #FA08C3;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 500;
  padding: 21.57px 0px;
  border: none;
  border-radius: 5px;
  margin-top: 22.86px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  max-width: 357.19px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-contact-form .submit-btn:hover {
  background-color: #FA08C3;
}

.custom-contact-form .form-checkbox a{
	text-decoration:none;
	color:white;
}

.wpcf7-list-item {
	margin:0px;
}
br{
	display:none;
}

@media only screen and (max-width: 767px) {
	.wpcf7-response-output{
	max-width:100%;
}
	.newsletter-form button img {
		margin-right:10px;
	}
	.custom-contact-form .form-checkbox{color:black;}
	.custom-contact-form .form-checkbox a{
	text-decoration:none;
	color:black;
}
	
	.custom-contact-form .submit-btn{
		padding:12px 29px;
		text-transform:uppercase;
	}
	
	#contact-section{
		background:none;
	}
	
  .mobile-why-us-cards {
    display: flex;
    flex-wrap: nowrap;      /* prevents wrapping so it can scroll horizontally */
    gap: 20px;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    width: 100%;
  }

  .mobile-why-us-cards > * {
    flex: 0 0 auto;     /* keep children at their intrinsic width */
    min-width: 100%;   /* tweak to your card width */
  }

  .mobile-why-us-cards::-webkit-scrollbar { display: none; }
  .mobile-why-us-cards { -ms-overflow-style: none; scrollbar-width: none; }
}


/* Gradient Button Style */
.gradient-btn {
    background-image: linear-gradient(-45deg, #fa0822, #fa08c3, #fa0822);
    background-color: #fa08c3; /* Fallback */
    background-size: 400% 400%;
    color: #fff;
    /*padding: 12px 28px;*/
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    position: relative;
    animation: gradient-move 5s ease infinite;
}

/* Pulse Animation */
.gradient-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 10px;
    animation: button-pulse 2s infinite;
	pointer-events: none; /* <-- FIX */
}

.gradient-btn:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Background Gradient Movement Animation */
@keyframes gradient-move {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Pulse Box Shadow Animation (Sequence You Gave) */
@keyframes button-pulse {
    0% {
        box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 10px;
    }
    50% {
        box-shadow: rgba(250, 8, 195, 0.314) 0px 0px 0px 6.86257px;
    }
    100% {
        box-shadow: rgba(250, 8, 195, 0.027) 0px 0px 0px 9.71102px;
    }
}

.private-art-image-box{
  position: relative;
  width: 100%;
  max-height: 767px; /* or your desired height */
  overflow: hidden; /* keeps zoomed image inside */
}

/* target the image inside the box */
.private-art-image-box img {
  position: initial; 
  top: -90px;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center; /* smooth zoom from center */
  animation: slowZoom 15s ease-in-out infinite alternate;
  will-change: transform;
}

.art-experience-image-box {
  position: relative;
  width: 100%;
  max-height: 80vh; /* or your desired height */
  overflow: hidden; /* keeps zoomed image inside */
}

/* target the image inside the box */
.art-experience-image-box img {
  position: inherit; 
  top: -150px;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center; /* smooth zoom from center */
  animation: slowZoom 15s ease-in-out infinite alternate;
  will-change: transform;
}

.malkurse-image-box {
  position: relative;
  width: 100%;
  max-height: 66vh; /* or your desired height */
  overflow: hidden; /* keeps zoomed image inside */
}

/* target the image inside the box */
.malkurse-image-box img {
  position: inherit; 
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center; /* smooth zoom from center */
  animation: slowZoom 15s ease-in-out infinite alternate;
  will-change: transform;
}

/* Overlay SVG */
.malkurse-overlay {
  position: inherit;
  bottom: 0;           /* place at bottom */
  left: 0;
  width: 100%;
  height: 100%;        /* full height or adjust as needed */
  z-index: 2;
  pointer-events: none; /* don't block clicks */
}

/* Style the SVG shape */
.malkurse-overlay path {
  fill: rgba(0, 0, 0, 0.3); /* black overlay with transparency */
}


.atelier-image-box {
  position: relative;
  width: 100%;
  height: 100%;           /* or a fixed height like 500px */
  overflow: hidden;       /* 🟢 ensures scaled image stays inside */
}

.atelier-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* make it fill the box */
  display: block;
/* clip-path: ellipse(140% 60% at 5% 60%); */
  /* 🟢 Curve only top-right corner */


  transform-origin: center center;
  animation: slowZoom 15s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes slowZoom {
  0% {
    transform: scale(1) translateY(0);
  }
  50% {
    transform: scale(1.05) translateY(-0.5%);
  }
  100% {
    transform: scale(1.08) translateY(-1%);
  }
}

.gradiant-text{
  background: linear-gradient(90deg, #ff0099, #ff1e00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;

}

/* === Custom Contact Form 7 Styling === */
.custom-contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-family: "Poppins";
  color: #333;
}

/* Label styling */
.custom-contact-form label {
  font-weight: 300;
  font-size: 14.4px;
  color: #000;
  margin-bottom: 5px;
}

.custom-contact-form label span {
  font-weight: 300;
  font-size: 12px;
  color: #fff;
}

.custom-contact-form label span a{
  font-weight: 500;
  font-size: 12px;
  color: #fff;
}

/* Two-column layout for first + last name */
.form-row.two-cols {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.form-col {
  flex: 1;
  min-width: 0;
}

/* Input + textarea base style */
.custom-contact-form input[type="text"],
.custom-contact-form input[type="email"],
.custom-contact-form input[type="tel"],
.custom-contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  background: #FFFFFF;
  border: none;
  border-radius: 8px;
  font-size: 14.4px;
  color: #000;
  outline: none;
  transition: box-shadow 0.2s ease;
}

.custom-contact-form input:focus,
.custom-contact-form textarea:focus {
  box-shadow: 0 0 0 2px #ff00aa40;
}

/* Checkbox row */
.checkbox-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #333;
}

/* Submit Button */
.custom-contact-form input[type="submit"] {
  background: linear-gradient(90deg, #ff00cc, #ff0066);
  color: #fff;
  font-weight: 600;
  border: none;
  padding: 12px 28px;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 6px #ffe5f9;
}

.custom-contact-form input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 0, 153, 0.4);
}

/* Responsive fix */
@media (max-width: 600px) {
  .form-row.two-cols {
    flex-direction: column;
  }
}

.blur-container{
	 backdrop-filter: blur(60px);
  -webkit-backdrop-filter: blur(60px);

  background: rgba(255, 255, 255, 0.41); /* light transparent background */
  
}

.blur-form-container{
	background: rgba(255, 255, 255, 0.01); /* light transparent background */
	 backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  
}

.contact-page-form .custom-contact-form {
	
  width: 100%;
  margin: 0 auto;
  color: #000;
font-family: 'Poppins';	
  font-size: 16px;
}

.contact-page-form label {
  display: block;
  margin-bottom: 6px;
	color:hsla(0,0%,0%,1);
	font-size:14.4px;
}

.contact-page-form .custom-contact-form input{
  width: 100%;
  padding: 5px 10px;
  background-color: #fdeef9;
  border: none;
  border-radius: 12px;
  margin-bottom: 22px;
  color: #000;
  font-size: 16px;
}

.contact-page-form textarea {
    height: 100px;
}

.contact-page-form .form-row {
  display: flex;
  gap: 20px;
}

.contact-page-form .form-col {
  flex: 1;
}

.contact-page-form .custom-contact-form span.wpcf7-not-valid-tip {
/*   color: #ff0066 !important; */
}

