/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --gold-primary: #d4af37;
  --gold-light: #f3e5ab;
  --green-deep: #0f392b;
  --green-darker: #051b14;
}

body {
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  background-color: #fcfcfc;
}

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

/* Premium Gold Gradient Text */
.text-gold-gradient {
  background: linear-gradient(135deg, #d4af37 0%, #f3e5ab 50%, #b4912f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Premium Gold Button */
.btn-gold {
  background: linear-gradient(135deg, #d4af37 0%, #c5a028 100%);
  color: #051b14;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(212, 175, 55, 0.4);
}

.btn-gold::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.btn-gold:hover::after {
  left: 100%;
}

/* Navbar Blur */
.glass-nav {
  background: rgba(15, 57, 43, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

/* Card Hover Effects */
.product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: var(--gold-primary);
}

/* Review Stars */
.star-rating {
  color: var(--gold-primary);
}

/* Whatsapp Float */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Hero Overlay */
.hero-overlay {
  background: linear-gradient(to right, rgba(5, 27, 20, 0.95) 0%, rgba(15, 57, 43, 0.7) 100%);
}

/* Map grayscale filter for style */
.map-frame iframe {
  filter: grayscale(100%) invert(92%) contrast(83%);
  border-radius: 0.5rem;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #0f392b;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #051b14;
}

/* Animations Utility */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
}
