@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&family=Playfair+Display:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Old+Standard+TT:ital,wght@0,400;0,700;1,400');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900');

* {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

body {
  font-family: 'Roboto', serif;
}

body::-webkit-scrollbar {
  display: none;
}

@tailwind base;
@tailwind components;
@tailwind utilities;

h1,
h2,
h3 {
  font-family: 'Roboto', serif;
}

.font-playfair {
  font-family: 'Roboto', serif;
}

.animate-fadeInUp {
  animation: fadeInUp 0.8s ease-out both;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-link {
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
  transition: color 0.3s;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: 0;
  background-color: black;
  transition: width 0.4s ease;
}

.nav-link:hover::after {
  width: 50%;
}

.more-products-heading::after {
  content: "";
  display: block;
  width: 64px;
  border-bottom: 2px solid black;
  margin-top: 8px;
}

.furniture-part:hover,
.furniture-part.hovered {
  background-color: #f3f4f6;
}

.custom-cursor-wrapper {
  cursor: none;
  position: relative;
}

.custom-cursor-wrapper a,
.custom-cursor-wrapper button {
  cursor: none;
}

.custom-cursor-wrapper::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 9999px;
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 50;
  left: var(--x);
  top: var(--y);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.custom-cursor-wrapper:hover::after {
  opacity: 1;
}

.custom-cursor-wrapper:hover {
  cursor: none;
}

.zoom-container {
  overflow: hidden;
  position: relative;
}

.zoom-container img {
  transition: transform 7s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zoom-container:hover img {
  transform: scale(1.1);
}