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

/* Base Styles & Custom CSS Variables */
:root {
  --color-gold-primary: #D4AF37;
  --color-gold-light: #F3E5AB;
  --color-gold-dark: #AA7C11;
  --color-charcoal-dark: #121212;
  --color-charcoal-medium: #1E1E24;
  --color-charcoal-card: #282830;
  --color-sand-bg: #FBF8F3;
  --color-sand-card: #F4EFEA;
}

html {
  scroll-behavior: smooth;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: var(--color-sand-bg);
  color: #2D3748;
  overflow-x: hidden;
}

/* Typography Helpers */
.font-heading {
  font-family: 'Playfair Display', Georgia, serif;
}

.font-body {
  font-family: 'Poppins', sans-serif;
}

.gold-gradient-text {
  background: linear-gradient(135deg, #D4AF37 0%, #F3E5AB 50%, #B8860B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gold-gradient-bg {
  background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
}

.gold-gradient-bg-hover:hover {
  background: linear-gradient(135deg, #E5C158 0%, #C59B27 100%);
}

.gold-border-glow {
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
}

.gold-border-glow-hover:hover {
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.35);
}

/* Custom Navigation Highlight */
.nav-link {
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #D4AF37, #F3E5AB);
  transition: width 0.3s ease-in-out;
  border-radius: 2px;
}

.nav-link.active-nav {
  color: #D4AF37 !important;
  font-weight: 600;
}

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

/* Header Glassmorphism */
.header-glass {
  background: rgba(18, 18, 18, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

/* Pulse Animation for Floating WhatsApp Button */
@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.animate-whatsapp-pulse {
  animation: whatsapp-pulse 2s infinite;
}

/* Scroll Reveal Animations */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation delays */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }

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

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

::-webkit-scrollbar-thumb {
  background: #333338;
  border-radius: 4px;
  border: 2px solid #121212;
}

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

/* Gallery Item Hover Animation */
.gallery-card {
  overflow: hidden;
}

.gallery-card img {
  transition: transform 0.6s ease;
}

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

/* Lightbox Modal Animation */
.lightbox-modal {
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

/* Testimonial Slider Styles */
.testimonial-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.testimonial-slide.active-slide {
  display: block;
  opacity: 1;
}

/* Form Focus Style */
.form-input-focus:focus {
  outline: none;
  border-color: #D4AF37;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}
