/* Lyons Group index.css (extracted) */
/* Custom animations */
@keyframes fade-in-down {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in-left {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fade-in-right {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-in-down {
  animation: fade-in-down 1s ease-out;
}

.animate-fade-in-up {
  animation: fade-in-up 1s ease-out;
}

.animate-fade-in-left {
  animation: fade-in-left 1s ease-out;
}

.animate-fade-in-right {
  animation: fade-in-right 1s ease-out;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #1a1a1a;
}

.dark ::-webkit-scrollbar-track {
  background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
  background: #c5a47e;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #b8946e;
}

/* Root variables for theme colors */
:root {
  --footer-bg: #f5f5f5;
  --footer-text: #333;
  --border-color: #e0e0e0;
}

/* Dark mode variables */
.dark {
  --footer-bg: #1a1a1a;
  --footer-text: #ffffff;
  --border-color: #333;
}

/* Theme transitions */
* {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Footer styles */
.footer {
  background-color: var(--footer-bg, #f5f5f5);
  color: var(--footer-text, #333);
  padding: 2rem 0;
  width: 100%;
  border-top: 1px solid var(--border-color, #e0e0e0);
  margin-top: auto;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

.footer-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer .main-text {
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0;
}

.footer .sub-text {
  font-size: 0.75rem;
  opacity: 0.7;
  margin: 0;
}

/* Dark mode footer */
.dark .footer {
  background-color: var(--footer-bg, #1a1a1a);
  color: var(--footer-text, #ffffff);
  border-top-color: var(--border-color, #333);
}

/* Hover effects */
.hover-lift {
  transition: transform 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
}

/* Loading animation */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Button hover effects */
.btn-primary {
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(197, 164, 126, 0.3);
}

/* Text selection */
::selection {
  background: #c5a47e;
  color: #111111;
}

/* Focus styles */
.focus-gold:focus {
  outline: 2px solid #c5a47e;
  outline-offset: 2px;
}

/* Responsive typography */
@media (max-width: 768px) {
  .text-responsive {
    font-size: clamp(1rem, 4vw, 1.5rem);
  }
}

/* Image hover effects */
.image-hover {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.image-hover:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* Image optimization */
img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: transform;
}

/* Loading skeleton animation */
@keyframes shimmer {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: calc(200px + 100%) 0;
  }
}

.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200px 100%;
  animation: shimmer 1.5s infinite;
}

.dark .skeleton {
  background: linear-gradient(90deg, #2a2a2a 25%, #3a3a3a 50%, #2a2a2a 75%);
  background-size: 200px 100%;
  animation: shimmer 1.5s infinite;
}
