@import "tailwindcss";
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap");

body, * {
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
.font-heading {
  font-family: "Oswald", sans-serif;
}

.hero-pattern {
  background-color: #111827;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.barber-pole {
  position: relative;
  overflow: hidden;
  height: 100%;
  width: 8px;
}

.barber-pole::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    #e11d48,
    #e11d48 10px,
    white 10px,
    white 20px,
    #1e40af 20px,
    #1e40af 30px,
    white 30px,
    white 40px
  );
  animation: barberPole 12s linear infinite;
}

@keyframes barberPole {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100px);
  }
}

.testimonial-card {
  transition: all 0.3s ease;
}

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

.gallery-img {
  transition: all 0.3s ease;
}

.gallery-img:hover {
  transform: scale(1.05);
  z-index: 10;
}

