@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* Base & Typography */
:root {
  --color-gold: #D4AF37;
  --color-gold-light: #F4D06F;
  --color-dark: #0a0a0a;
}

body {
  font-family: 'Manrope', sans-serif;
  background-color: var(--color-dark);
  color: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
}

/* Custom Utilities */
.text-gold {
  color: var(--color-gold);
}

.text-gradient-gold {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 50%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: shine 5s linear infinite;
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

.bg-glass {
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Animations using GSAP mainly, but some CSS helpers */
.reveal-text {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

/* Image Effects */
.img-hover-zoom {
  overflow: hidden;
}

.img-hover-zoom img {
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

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

/* Button Luxury */
.btn-luxury {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--color-gold);
  z-index: 1;
}

.btn-luxury::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: var(--color-gold);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: -1;
}

.btn-luxury:hover::before {
  width: 100%;
}

.btn-luxury:hover {
  color: var(--color-dark);
}

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

::-webkit-scrollbar-track {
  background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold);
}