/* Custom styles for El M7 Mariscos y Mas */

:root {
  --terracotta: #C0603A;
  --terracotta-dark: #A8502E;
  --sand: #F4C28A;
  --sand-light: #FDF6EE;
  --brown-dark: #3C2415;
  --brown-mid: #5C3A28;
  --brown-muted: #8B6B55;
}

html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Menu card hover effect */
.menu-card {
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-6px);
}

/* Smooth section transitions */
section {
  scroll-margin-top: 80px;
}

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

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

::-webkit-scrollbar-thumb {
  background: #C0603A;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #A8502E;
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile menu animation */
#mobile-menu {
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Active nav link */
a.active {
  color: #C0603A;
}

/* Pulse animation for CTA */
@keyframes gentle-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

/* Selection color */
::selection {
  background-color: #C0603A;
  color: #FDF6EE;
}
