@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --color-green: #B9E534;
  --color-green-dark: #9bc026;
  --color-gray: #6b7280;
  --color-white: #ffffff;
}

body {
  font-family: 'Outfit', sans-serif;
  color: #374151;
  background-color: var(--color-white);
  overflow-x: hidden;
}

.text-brand-green {
  color: var(--color-green);
}
.text-brand-gray {
  color: var(--color-gray);
}
.bg-brand-green {
  background-color: var(--color-green);
}
.bg-brand-gray {
  background-color: var(--color-gray);
}
.hover-bg-brand-green:hover {
  background-color: var(--color-green-dark);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-green);
  color: #111827;
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(185, 229, 52, 0.4), 0 2px 4px -1px rgba(185, 229, 52, 0.2);
}
.btn-primary:hover {
  background-color: var(--color-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(185, 229, 52, 0.5), 0 4px 6px -2px rgba(185, 229, 52, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: 2px solid var(--color-green);
  color: #111827;
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  background-color: var(--color-green);
  color: #111827;
}

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #25D366;
  color: white;
  width: 65px;
  height: 65px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
  z-index: 100;
  transition: transform 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  color: white;
}

/* Animations */
.animate-blob {
  animation: blob 7s infinite;
}
.animation-delay-2000 {
  animation-delay: 2s;
}
.animation-delay-4000 {
  animation-delay: 4s;
}
@keyframes blob {
  0% { transform: translate(0px, 0px) scale(1); }
  33% { transform: translate(30px, -50px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
  100% { transform: translate(0px, 0px) scale(1); }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ig-item {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  aspect-ratio: 1;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.ig-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.ig-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.ig-item:hover img {
  transform: scale(1.05);
}
.ig-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.ig-item:hover .ig-overlay {
  opacity: 1;
}

/* Schedule Table */
.schedule-table tr {
  border-bottom: 1px solid #e5e7eb;
}
.schedule-table tr:last-child {
  border-bottom: none;
}
.schedule-table td {
  padding: 0.75rem 0;
}
