@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --color-gold: #c5a880;
  --color-gold-hover: #b3956c;
  --color-navy: #0b2545;
  --color-navy-light: #134074;
}

body {
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .font-serif-luxury {
  font-family: 'Playfair Display', serif;
}

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

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

::-webkit-scrollbar-thumb {
  background: var(--color-navy);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-navy-light);
}

/* Custom Utilities & Animations */
.text-gold {
  color: var(--color-gold);
}

.bg-gold {
  background-color: var(--color-gold);
}

.bg-gold-hover:hover {
  background-color: var(--color-gold-hover);
}

.border-gold {
  border-color: var(--color-gold);
}

/* Card Hover Zoom */
.hover-zoom img {
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.hover-zoom:hover img {
  transform: scale(1.08);
}

/* Float Animation */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

/* Fade-In Up Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* Delayed Animation Utility */
.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }
.delay-400 { animation-delay: 400ms; }
.delay-500 { animation-delay: 500ms; }
.delay-600 { animation-delay: 600ms; }

/* ---------------------------------------------------- */
/* Attraction / Discover Cards - premium hover system    */
/* ---------------------------------------------------- */
.attraction-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1),
              box-shadow 0.5s cubic-bezier(0.25, 1, 0.5, 1),
              border-color 0.5s ease;
}

.attraction-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px -12px rgba(11, 37, 69, 0.35);
}

.attraction-card .attraction-img {
  transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s ease;
}

.attraction-card:hover .attraction-img {
  transform: scale(1.1);
  filter: brightness(1.05);
}

/* Diagonal shine sweep on hover */
.attraction-card .shine {
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.35) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-20deg);
  pointer-events: none;
  z-index: 20;
  transition: left 0.9s ease;
}

.attraction-card:hover .shine {
  left: 125%;
}

/* Gold underline grow on hover */
.title-underline {
  display: block;
  height: 2px;
  width: 32px;
  background: var(--color-gold);
  transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.attraction-card:hover .title-underline {
  width: 64px;
}

/* Badge pulse */
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(197, 168, 128, 0.55); }
  50% { box-shadow: 0 0 0 6px rgba(197, 168, 128, 0); }
}

.badge-pulse {
  animation: badgePulse 2.4s ease-in-out infinite;
}

/* Arrow nudge on hover for "View on Maps / Learn More" links */
.arrow-nudge {
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.attraction-card:hover .arrow-nudge,
a:hover .arrow-nudge {
  transform: translateX(4px);
}

/* Compact discover cards (index page) */
.discover-mini-card {
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.45s ease;
}

.discover-mini-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -10px rgba(11, 37, 69, 0.3);
}


/* Custom Lightbox Transitions */
#lightbox {
  transition: opacity 0.3s ease-in-out;
}

#lightbox.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Glassmorphism Classes */
.glass-panel {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.glass-panel-dark {
  background: rgba(11, 37, 69, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
