@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* Global variables and styles matching timbalatourism.com */
:root {
  --primary: #11223A;
  --primary-hover: #0d1a2c;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #11223A;
  color: #f3f4f6;
}

/* Custom animations */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(30, 64, 74, 0.12);
}

/* Timeline Custom styles */
.timeline-line::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #e5e7eb;
}

@media (min-width: 768px) {
  .timeline-line::before {
    left: 24px;
  }
}

/* Transition utility classes */
.fade-in-up {
  animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scrollbar setup */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Responsive height helper for portrait cards to prevent laptop screen congestion */
.responsive-card-img {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 3 / 4 !important;
  object-fit: cover !important;
}

@media (min-width: 1024px) {
  .responsive-card-img {
    aspect-ratio: 3 / 5 !important; /* Taller on desktop and laptop screens */
  }
}

/* CSS Filter to turn black/dark PNG icons into gold (#C19A58) */
.gold-icon {
  filter: brightness(0) saturate(100%) invert(67%) sepia(35%) saturate(836%) hue-rotate(4deg) brightness(92%) contrast(85%);
}
