@import "tailwindcss";

@theme {
  --color-pink-gold: #E6BEAE;
  --color-pink-gold-light: #F5E6E8;
  --color-champagne: #D4AF37;
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
}

:root {
  scroll-behavior: smooth;
}

body {
  background-color: #FFF9F9;
  color: #333;
}

.glass-effect {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(230, 190, 174, 0.3);
}

.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(230, 190, 174, 0.2);
}

.btn-primary {
  background-color: var(--color-pink-gold);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.btn-primary:hover {
  background-color: #D4AF37;
  transform: scale(1.05);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  position: relative;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 4px;
  background-color: var(--color-pink-gold);
  border-radius: 2px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--color-pink-gold);
  border-radius: 4px;
}

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

/* Floating Button */
.floating-download {
  position: fixed;
  right: 20px;
  bottom: 100px;
  z-index: 50;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Movie Card */
.movie-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
}

.movie-card img {
  transition: transform 0.5s ease;
}

.movie-card:hover img {
  transform: scale(1.1);
}

.movie-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  color: white;
}

.movie-card:hover .movie-overlay {
  opacity: 1;
}
