/* Custom styles for Pedro's Tacos and Tequila Bar */

:root {
  --plum-50: #fdf4f6;
  --plum-100: #fce8ec;
  --plum-200: #f5cdd7;
  --plum-300: #eaa4b8;
  --plum-400: #d47492;
  --plum-500: #c05272;
  --plum-600: #a83d5c;
  --plum-700: #8e2f4a;
  --plum-800: #762740;
  --plum-900: #5f2035;
  --amber-300: #fcd34d;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
}

/* Google Fonts */
.font-playfair {
  font-family: 'Playfair Display', serif;
}

.font-nunito {
  font-family: 'Nunito', sans-serif;
}

/* Color utilities */
.bg-plum-800 { background-color: var(--plum-800); }
.bg-plum-700 { background-color: var(--plum-700); }
.bg-plum-100 { background-color: var(--plum-100); }
.bg-plum-900 { background-color: var(--plum-900); }
.bg-amber-50 { background-color: #fffbeb; }
.bg-amber-100 { background-color: #fef3c7; }
.bg-amber-200 { background-color: #fde68a; }
.bg-amber-500 { background-color: var(--amber-500); }
.bg-amber-600 { background-color: var(--amber-600); }
.text-plum-800 { color: var(--plum-800); }
.text-plum-700 { color: var(--plum-700); }
.text-plum-900 { color: var(--plum-900); }
.text-plum-200 { color: var(--plum-200); }
.text-plum-300 { color: var(--plum-300); }
.text-plum-400 { color: var(--plum-400); }
.text-amber-400 { color: var(--amber-400); }
.text-amber-600 { color: var(--amber-600); }
.text-amber-100 { color: #fef3c7; }
.border-amber-200 { border-color: #fde68a; }

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--plum-700), var(--plum-800));
  color: #fff;
  font-weight: 700;
  border-radius: 9999px;
  padding: 0.75rem 2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(118, 39, 64, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(118, 39, 64, 0.4);
  color: #fff;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #fff;
  color: var(--plum-800);
  font-weight: 700;
  border-radius: 9999px;
  padding: 0.75rem 2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid var(--plum-200);
}

.btn-secondary:hover {
  border-color: var(--plum-400);
  background: var(--plum-50);
  transform: translateY(-2px);
  color: var(--plum-800);
}

.btn-amber {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--amber-400), var(--amber-500));
  color: #1a1a1a;
  font-weight: 700;
  border-radius: 9999px;
  padding: 0.75rem 2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-amber:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
  color: #1a1a1a;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--plum-800);
  font-weight: 700;
  border-radius: 9999px;
  padding: 0.75rem 2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid var(--plum-200);
}

.btn-outline:hover {
  background: var(--plum-50);
  border-color: var(--plum-400);
  transform: translateY(-2px);
  color: var(--plum-800);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: #fff;
  font-weight: 700;
  border-radius: 9999px;
  padding: 0.75rem 2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
  color: #fff;
}

/* Tags & Labels */
.tag-label {
  display: inline-block;
  background: var(--plum-100);
  color: var(--plum-700);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
}

.tag-price {
  display: inline-block;
  background: linear-gradient(135deg, var(--amber-400), var(--amber-500));
  color: #1a1a1a;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 9999px;
  white-space: nowrap;
}

/* Navbar */
.navbar {
  background: rgba(255, 251, 235, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(253, 244, 246, 0.5);
}

.navbar.scrolled {
  background: rgba(255, 251, 235, 0.98);
  box-shadow: 0 4px 20px rgba(118, 39, 64, 0.08);
}

.nav-link {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--amber-500);
  transition: width 0.3s ease;
  border-radius: 1px;
}

.nav-link:hover::after {
  width: 100%;
}

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

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

.mobile-link {
  display: block;
}

.mobile-link:hover {
  color: var(--amber-600);
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #fffbeb 0%, #fdf4f6 100%);
}

.hero-img-wrapper {
  box-shadow: 0 25px 50px -12px rgba(118, 39, 64, 0.2);
}

.hero-img {
  transition: transform 0.7s ease;
}

.hero-img-wrapper:hover .hero-img {
  transform: scale(1.02);
}

.floating-card {
  animation: float 3s ease-in-out infinite;
}

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

/* Features Strip */
.feature-item {
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-4px);
}

/* Menu Cards */
.menu-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* About Images */
.about-img-secondary {
  border: 4px solid #fff;
}

/* Gallery */
.gallery-item {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
}

/* Contact Cards */
.contact-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(118, 39, 64, 0.12);
}

/* Input Fields */
.input-field {
  transition: all 0.3s ease;
}

.input-field:focus {
  border-color: var(--plum-400);
  box-shadow: 0 0 0 4px rgba(212, 116, 146, 0.1);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--plum-700), var(--plum-800));
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(118, 39, 64, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 40;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(118, 39, 64, 0.4);
}

/* Scroll Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-content {
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .floating-card {
    display: none;
  }

  .about-img-secondary {
    width: 36px;
    height: 36px;
  }

  .about-img-secondary {
    bottom: -4px;
    right: -4px;
  }

  .menu-card {
    text-align: center;
  }

  .menu-card-img .w-full.h-56 {
    height: 200px;
  }
}
