/* Icon fix */
:where([class^="ri-"])::before {
  content: "\f3c2";
} 

/* Font */
.handwritten {
  font-family: "Winky Rough";
}

/* Gradient effects */
.gradient-text {
  background: linear-gradient(45deg, #00bcd4, #e91e63);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-bg-section {
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.1) 0%, rgba(0, 188, 212, 0.1) 100%);
  backdrop-filter: blur(10px);
}

/* Card hover effects */
.card-hover {
  transition: all 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(233, 30, 99, 0.2);
}

/* Touch effects */
.touch-ripple {
  position: relative;
  overflow: hidden;
}

.touch-ripple::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 100%);
  transform: scale(0);
  opacity: 0;
  transition: transform 0.5s, opacity 0.3s;
  border-radius: inherit;
  left: 0;
  top: 0;
}

.touch-ripple:active::after {
  transform: scale(2);
  opacity: 0;
}

/* Header styles */
#main-header {
  background: transparent;
}

#main-header.scrolled {
  background: rgba(26, 26, 26, 0.9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

/* Mobile navigation */
#mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.4s;
}

#mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

#mobile-nav nav a {
  font-size: 1.75rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

#mobile-nav.active nav a {
  opacity: 1;
  transform: translateY(0);
}

/* Animation delays for mobile nav items */
#mobile-nav.active nav a:nth-child(1) { transition-delay: 0.1s; }
#mobile-nav.active nav a:nth-child(2) { transition-delay: 0.2s; }
#mobile-nav.active nav a:nth-child(3) { transition-delay: 0.3s; }
#mobile-nav.active nav a:nth-child(4) { transition-delay: 0.4s; }
#mobile-nav.active nav a:nth-child(5) { transition-delay: 0.5s; }
#mobile-nav.active nav a:nth-child(6) { transition-delay: 0.6s; }

/* Utility classes */
.touch-scale {
  transition: transform 0.3s ease;
}

.touch-scale:active {
  transform: scale(0.95);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
  
  #mobile-menu-btn {
    position: relative;
    z-index: 10000;
  }
}

/* Fade in animation */
.fade-in {
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}












/* Hero section background */
.hero-bg {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(233, 30, 99, 0.1)), url('../imgs/bg.jpg');
  background-size: cover;
  background-position: center;
}

/* Slide in animation for hero content */
.slide-in-left {
  animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Button hover effects */
.transform {
  transition: transform 0.3s ease;
}

.hover\:scale-105:hover {
  transform: scale(1.05);
}

/* Rounded button override */
/* .!rounded-button {
  border-radius: 20px !important;
} */

/* Additional responsive styles for hero section */
@media (max-width: 768px) {
  .hero-bg {
    padding-top: 6rem;
  }
  
  h1.text-4xl {
    font-size: 2.5rem;
  }
}



/* Hero section background */
.hero-bg {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(233, 30, 99, 0.1)), url('../imgs/bg.jpg');
  background-size: cover;
  background-position: center;
}

/* Section background */
/* .section-bg, 
.gradient-bg-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d1b69 100%);
} */

body{
  background: linear-gradient(135deg, #1a1a1a 0%, #2d1b69 100%);
}

/* Footer background */
footer.bg-black {
  background: #000000;
  position: relative;
  z-index: 1;
}

/* WhatsApp float button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
}

.whatsapp-float a {
  transition: all 0.3s ease;
}

.whatsapp-float a:hover {
  transform: scale(1.1);
  filter: brightness(1.1);
}

/* Add hover animation for WhatsApp button */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-float a {
  animation: pulse 2s infinite;
}

/* Ensure WhatsApp button is visible on mobile */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }
}









































