@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Alex+Brush&family=Inter:wght@300;400;500&display=swap');

:root {
  --bg-color: #000000;
  --text-color: #ffffff;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-color);
  color: var(--text-color);
}

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .font-bebas {
  font-family: 'Bebas Neue', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.font-signature {
  font-family: 'Alex Brush', cursive;
  text-transform: none;
  font-weight: 400;
}

.hero-text-overlay {
  text-shadow: 0px 4px 20px rgba(0, 0, 0, 0.7);
}

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

.image-container img {
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.image-container:hover img {
  transform: scale(1.05);
}

.tab-btn {
  transition: all 0.3s ease;
  position: relative;
}

.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: center;
}

.tab-btn.active::after {
  transform: scaleX(1);
}

.star-rating {
  letter-spacing: 0.2em;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #000;
}

::-webkit-scrollbar-thumb {
  background: #333;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}
