:root {
  --forest: #1B4332;
  --gold: #B8860B;
  --burgundy: #722F37;
  --cream: #FAF8F5;
  --charcoal: #2D3436;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  background-color: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
}

.font-display {
  font-family: 'Playfair Display', serif;
}

.font-accent {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}

.font-sans {
  font-family: 'Source Sans 3', sans-serif;
}

/* Custom colors */
.bg-forest { background-color: var(--forest); }
.bg-gold { background-color: var(--gold); }
.bg-burgundy { background-color: var(--burgundy); }
.bg-cream { background-color: var(--cream); }
.bg-charcoal { background-color: var(--charcoal); }

.text-forest { color: var(--forest); }
.text-gold { color: var(--gold); }
.text-burgundy { color: var(--burgundy); }
.text-cream { color: var(--cream); }
.text-charcoal { color: var(--charcoal); }

.border-forest { border-color: var(--forest); }
.border-gold { border-color: var(--gold); }
.border-burgundy { border-color: var(--burgundy); }
.border-cream { border-color: var(--cream); }

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { 
    opacity: 0;
    transform: translateY(30px);
  }
  to { 
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(6px); opacity: 0.5; }
}

.animate-fade-in {
  animation: fadeIn 1s ease forwards;
}

.animate-fade-in-delay {
  animation: fadeIn 1s ease 0.6s forwards;
  opacity: 0;
}

.animate-slide-up {
  animation: slideUp 0.8s ease forwards;
}

.animate-slide-up-delay {
  animation: slideUp 0.8s ease 0.3s forwards;
  opacity: 0;
}

.animate-scroll-dot {
  animation: scrollDot 1.5s ease infinite;
}

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

::-webkit-scrollbar-track {
  background: var(--cream);
}

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

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

/* Selection */
::selection {
  background-color: var(--gold);
  color: var(--forest);
}

/* Focus states */
input:focus, textarea:focus, select:focus, button:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Smooth image loading */
img {
  opacity: 1;
  transition: opacity 0.3s ease;
}

img[src=""] {
  opacity: 0;
}

/* Mobile menu animation */
@keyframes slideIn {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

/* Card hover effects */
.group:hover .group-hover\:scale-105 {
  transform: scale(1.05);
}

.group:hover .group-hover\:scale-110 {
  transform: scale(1.1);
}

/* Responsive typography */
@media (max-width: 640px) {
  h1 { font-size: 2.5rem !important; }
  h2 { font-size: 2rem !important; }
}

/* Print styles */
@media print {
  nav, footer, button { display: none !important; }
  body { background: white !important; }
}