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

:root {
  --bg-main: #0E0B0F;
  --bg-secondary: #1A1522;
  --bg-card: #1E1828;
  --text-primary: #F0E8E8;
  --text-secondary: #8A7E88;
  --accent-main: #D4A0A0;
  --accent-bright: #E8B4B8;
  --accent-luxury: #C9A96E;
}

body {
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
  overflow-x: hidden;
  margin: 0;
}

@media (pointer: fine) {
  body {
    cursor: none;
  }
}

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

/* Custom Cursor */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: var(--accent-bright);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background-color 0.3s, opacity 0.2s;
}

.custom-cursor::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(232, 180, 184, 0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
}

.custom-cursor.hover {
  width: 12px;
  height: 12px;
  background-color: var(--accent-main);
}
.custom-cursor.hover::after {
  width: 48px;
  height: 48px;
  border-color: rgba(232, 180, 184, 0.8);
}

/* Overlay Grain Background */
.grain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Card Hover Lines */
.card-glow-line {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  background-color: var(--bg-card);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.card-glow-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-main), var(--accent-luxury), var(--accent-bright));
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: shimmer 3s infinite linear;
}

@keyframes shimmer {
  0% {background-position: 100% 0;}
  100% {background-position: -100% 0;}
}

.card-glow-line:hover::before {
  opacity: 1;
}
.card-glow-line:hover {
  border-color: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

/* Rotating dashed circle */
.rotating-circle {
  border: 1px dashed var(--accent-luxury);
  border-radius: 50%;
  opacity: 0.2;
  animation: rotate-slow 20s linear infinite;
  pointer-events: none;
}

@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Button variants */
.btn-primary {
  background-color: #25D366; /* WhatsApp Green */
  color: white;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-outline {
  border: 1px solid var(--accent-main);
  color: var(--accent-main);
  transition: all 0.3s;
}
.btn-outline:hover {
  background-color: rgba(212, 160, 160, 0.1);
  color: var(--text-primary);
  border-color: var(--accent-bright);
}

/* Filtering Pills */
.filter-pill {
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    background-color: var(--bg-card);
    color: var(--text-secondary);
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s;
    white-space: nowrap;
}
.filter-pill:hover, .filter-pill.active {
    background-color: var(--accent-main);
    color: #0E0B0F;
    border-color: var(--accent-main);
}
