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

:root {
  --color-primary: #14281D;
  --color-primary-dark: #0D1A13;
  --color-primary-light: #1E3A2B;
  --color-primary-surface: #254634;
  --color-gold: #C5A059;
  --color-gold-light: #DFC283;
  --color-gold-dark: #A07F3B;
  --color-gold-gradient: linear-gradient(135deg, #DFCA91 0%, #C5A059 50%, #9E7933 100%);
  --color-bg-cream: #FBF9F4;
  --color-bg-cream-dark: #F3EFE6;
  --color-text-dark: #19221C;
  --color-text-muted: #536258;
}

html {
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
  background-color: var(--color-bg-cream);
  color: var(--color-text-dark);
  overflow-x: hidden;
}

.font-serif-title {
  font-family: 'Cinzel', serif;
}

.font-serif-sub {
  font-family: 'Playfair Display', serif;
}

/* Luxury Gold Text Gradient */
.gold-gradient-text {
  background: linear-gradient(135deg, #F3E5AB 0%, #D4AF37 40%, #AA7C11 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gold-gradient-bg {
  background: linear-gradient(135deg, #DFCA91 0%, #C5A059 50%, #9E7933 100%);
}

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

/* Subtle Shimmer for High-End CTAs */
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

.btn-shimmer {
  position: relative;
  overflow: hidden;
}

.btn-shimmer::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    60deg,
    rgba(255, 255, 255, 0) 20%,
    rgba(255, 255, 255, 0.25) 50%,
    rgba(255, 255, 255, 0) 80%
  );
  transform: translateX(-100%);
  animation: shimmer 4s infinite linear;
  pointer-events: none;
}

/* Glassmorphism */
.glass-nav {
  background: rgba(13, 26, 19, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.glass-card-dark {
  background: rgba(20, 40, 29, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(197, 160, 89, 0.25);
}

.glass-card-light {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(197, 160, 89, 0.2);
}

/* Pattern Overlays */
.pattern-grid {
  background-image: radial-gradient(rgba(197, 160, 89, 0.15) 1px, transparent 1px);
  background-size: 24px 24px;
}

.pattern-dark-mesh {
  background: radial-gradient(circle at 10% 20%, rgba(30, 58, 43, 0.6) 0%, transparent 40%),
              radial-gradient(circle at 90% 80%, rgba(197, 160, 89, 0.12) 0%, transparent 40%),
              #0D1A13;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #0D1A13;
}
::-webkit-scrollbar-thumb {
  background: #254634;
  border-radius: 5px;
  border: 2px solid #0D1A13;
}
::-webkit-scrollbar-thumb:hover {
  background: #C5A059;
}

/* Floating WhatsApp Pulse */
@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 0.3; }
  100% { transform: scale(1.25); opacity: 0; }
}

.pulse-bubble::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 9999px;
  background-color: #25D366;
  opacity: 0.7;
  z-index: -1;
  animation: pulse-ring 2.5s cubic-bezier(0.24, 0, 0.38, 1) infinite;
}

/* Gallery Hover Zoom & Overlay */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
}

.gallery-item img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.gallery-overlay {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Accordion Smooth Transitions */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out, opacity 0.3s ease-out, padding 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  opacity: 1;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* Language Switcher Active Indicator */
.lang-btn.active {
  background-color: #C5A059;
  color: #0D1A13;
  font-weight: 700;
}
