/* Reset & Base customizations */
:root {
  --brand-bg: #f4f4f4;
  --brand-black: #111111;
  --brand-gray: #f9f9f9;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #ffffff;
  color: var(--brand-black);
}

/* Custom Scrollbars */
.custom-scrollbar::-webkit-scrollbar {
  width: 4px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.4);
}

/* Main Page Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #ffffff;
}

::-webkit-scrollbar-thumb {
  background: #dddddd;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #bbbbbb;
}

/* Custom underlines for links (Welovewood style) */
.custom-underline {
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
}

.custom-underline::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: currentColor;
  opacity: 0.3;
  transition: opacity 0.3s;
}

.custom-underline:hover::after {
  opacity: 1;
}

/* Animations */
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-fade-in-scale {
  animation: fadeInScale 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Title Glow Effect */
.title-glow {
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

/* Heart button hover effect */
.heart-btn {
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.2s;
}

.heart-btn:hover {
  transform: scale(1.1);
}

/* Ensure mobile menu behaves smoothly */
.no-scroll {
  overflow: hidden;
}