/* Design System - All colors are HSL */
:root {
  --background: 40 33% 98%;
  --foreground: 220 25% 12%;
  --card: 0 0% 100%;
  --card-foreground: 220 25% 12%;
  --popover: 0 0% 100%;
  --popover-foreground: 220 25% 12%;
  --primary: 220 75% 28%;
  --primary-foreground: 40 33% 98%;
  --primary-glow: 220 80% 42%;
  --secondary: 40 20% 94%;
  --secondary-foreground: 220 25% 12%;
  --muted: 40 15% 92%;
  --muted-foreground: 220 12% 42%;
  --accent: 220 75% 28%;
  --accent-foreground: 40 33% 98%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 210 40% 98%;
  --border: 220 15% 88%;
  --input: 220 15% 88%;
  --ring: 220 75% 28%;
  --radius: 0.25rem;
  --gradient-hero: linear-gradient(135deg, hsl(40 33% 98%) 0%, hsl(220 30% 95%) 100%);
  --shadow-elegant: 0 20px 60px -20px hsl(220 75% 28% / 0.15);
  --shadow-soft: 0 4px 20px -4px hsl(220 25% 12% / 0.08);
  --transition-smooth: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, .logo-text, .font-serif {
  font-family: 'Playfair Display', Georgia, serif;
  font-feature-settings: "lnum";
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

/* Utility Classes */
.italic-text {
  font-style: italic;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border-radius: 0.25rem;
  box-shadow: var(--shadow-elegant);
}

.btn-primary:hover {
  background-color: hsl(220 75% 32%);
  transform: translateY(-1px);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 0.75rem 2rem;
  font-size: 1rem;
}

.arrow-icon {
  transition: transform 0.2s ease;
}

.btn-primary:hover .arrow-icon {
  transform: translateX(4px);
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s var(--transition-smooth), transform 0.9s var(--transition-smooth);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.logo-image{
    height:40px;
    width:auto;
    display:block;
}