@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=DM+Sans:wght@400;500;600&display=swap');

:root {
  --primary-color: #b45309;
  --primary-dark: #92400e;
  --secondary-color: #1e293b;
  --light-bg: #f8fafc;
}

* {
  font-family: 'DM Sans', sans-serif;
}

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

/* Hero Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.animate-fadeIn {
  animation: fadeIn 0.8s ease-out forwards;
}

.animate-slideInRight {
  animation: slideInRight 0.8s ease-out forwards;
}

.animate-bounce {
  animation: bounce 2s infinite;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Utility Classes */
.glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: #b45309;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #92400e;
}

/* Button Animations */
button, a[class*="btn"] {
  position: relative;
  overflow: hidden;
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, #b45309 0%, #ea580c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Smooth Link Hover */
a {
  transition: color 0.3s ease;
}

/* Mobile Nav Transitions */
#mobileMenu {
  transition: all 0.3s ease-in-out;
}

/* Responsive Images */
img {
  max-width: 100%;
  height: auto;
}

/* Section Spacing */
section {
  position: relative;
}

/* Focus States */
input:focus, textarea:focus {
  outline: none;
}

/* Form Styling */
input, textarea {
  transition: all 0.3s ease;
}

input:hover, textarea:hover {
  border-color: #b45309;
}

/* Card Hover Effects */
.group {
  transition: all 0.3s ease;
}

/* Loading & Interaction States */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

