:root {
  --background: 40 20% 97.6%;
  --foreground: 30 10% 15%;

  --card: 30 20% 95%;
  --card-foreground: 30 10% 15%;

  --popover: 40 20% 97.6%;
  --popover-foreground: 30 10% 15%;

  --primary: 43 72% 52%;
  --primary-foreground: 40 20% 97.6%;

  --secondary: 25 25% 87%;
  --secondary-foreground: 30 10% 15%;

  --muted: 30 15% 92%;
  --muted-foreground: 30 8% 50%;

  --accent: 25 25% 87%;
  --accent-foreground: 30 10% 15%;

  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 210 40% 98%;

  --border: 30 20% 88%;
  --input: 30 20% 88%;
  --ring: 43 72% 52%;

  --radius: 1rem;

  --gold: 43 72% 52%;
  --gold-light: 43 60% 70%;
  --gold-dark: 43 80% 40%;
  --nude: 25 25% 87%;
  --nude-light: 25 30% 93%;
  --cream: 40 30% 96%;
}

body {
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: 'Montserrat', sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
}

/* Utilities from index.css */
.glass-card {
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.gold-gradient {
  background: linear-gradient(135deg, hsl(var(--gold)) 0%, hsl(var(--gold-light)) 50%, hsl(var(--gold)) 100%);
}

.gold-text {
  background: linear-gradient(135deg, hsl(var(--gold-dark)), hsl(var(--gold)), hsl(var(--gold-light)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.section-padding {
  padding: 5rem 1.5rem;
}

@media (min-width: 768px) {
  .section-padding {
    padding: 5rem 3rem;
  }
}

@media (min-width: 1024px) {
  .section-padding {
    padding: 5rem 6rem;
  }
}

@media (min-width: 1280px) {
  .section-padding {
    padding: 5rem 8rem;
  }
}

/* Animation Utilities */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
