:root {
  /* Updated theme colors */
  --background: oklch(0.99 0.005 85);
  --foreground: oklch(0.2 0.02 180);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.2 0.02 180);
  --popover: oklch(1 0 0);
  --popover-foreground: oklch(0.2 0.02 180);
  
  /* Primary: Dark teal #0A4049 */
  --primary: #0A4049;
  --primary-foreground: #FFFFFF;
  
  /* Secondary: Medium teal #216974 */
  --secondary: #216974;
  --secondary-foreground: #FFFFFF;
  
  /* Muted: Light gray #D1D0CB */
  --muted: #D1D0CB;
  --muted-foreground: #6B6B6B;
  
  /* Accent: Warm orange #E09453 */
  --accent: #E09453;
  --accent-foreground: #0A4049;
  
  --destructive: #dc2626;
  --destructive-foreground: #FFFFFF;
  --border: #e5e5e5;
  --input: #e5e5e5;
  --ring: #0A4049;
  --radius: 0.5rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: #FFFFFF;
  color: #0A4049;
  line-height: 1.5;
}

.font-serif {
  font-family: 'Playfair Display', serif;
}

/* Scrollbar styles */
.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Custom button styles */
.btn-primary {
  background-color: var(--accent);
  color: var(--accent-foreground);
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary:hover {
  background-color: #d08645;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid white;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-outline:hover {
  background-color: white;
  color: var(--primary);
}

/* Card styles */
.card {
  background-color: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

/* Input styles */
.input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10, 64, 73, 0.1);
}

textarea.input {
  min-height: 120px;
  resize: vertical;
}

/* Animation utilities */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* Mobile menu styles */
.mobile-menu {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background-color: var(--primary);
  padding: 1rem;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  z-index: 40;
}

.mobile-menu.active {
  transform: translateY(0);
}
