/* ===== FONTS ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; }
.font-playfair { font-family: 'Playfair Display', serif; }

/* ===== COLORS ===== */
:root {
  --gold: #D4AF37;
  --gold-light: #FFD700;
  --black: #0A0A0A;
  --charcoal: #111111;
  --glass: rgba(255,255,255,0.06);
  --glass-border: rgba(255,255,255,0.12);
}

/* ===== GOLD TEXT ===== */
.gold-text {
  background: linear-gradient(135deg, #D4AF37, #FFD700, #D4AF37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gold { color: #D4AF37; }
.ring-gold { --tw-ring-color: #D4AF37; }
.bg-gold\/20 { background: rgba(212,175,55,0.2); }

/* ===== WATER FLOW BACKGROUND ===== */
#waterCanvas { opacity: 0.35; }

.hero-bg {
  background: radial-gradient(ellipse at 20% 50%, rgba(212,175,55,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(255,215,0,0.08) 0%, transparent 50%),
              radial-gradient(ellipse at 50% 80%, rgba(212,175,55,0.1) 0%, transparent 60%);
  animation: heroShift 8s ease-in-out infinite alternate;
}
@keyframes heroShift {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}

/* ===== GLASS NAVBAR ===== */
.glass-nav {
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212,175,55,0.15);
}

/* ===== NAV LINKS ===== */
.nav-link {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color 0.3s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, #D4AF37, #FFD700);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-link:hover { color: #D4AF37; }
.nav-link:hover::after { transform: scaleX(1); }

/* ===== BUTTONS ===== */
.gold-btn {
  display: inline-block;
  background: linear-gradient(135deg, #D4AF37, #FFD700);
  color: #0A0A0A;
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  text-decoration: none;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
}
.gold-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,175,55,0.4);
}

.glass-btn {
  display: inline-block;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  transition: all 0.3s;
  text-decoration: none;
  font-size: 0.9rem;
  cursor: pointer;
  letter-spacing: 0.03em;
}
.glass-btn:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(212,175,55,0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

/* ===== GLASS CARD ===== */
.glass-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  transition: all 0.4s;
}
.glass-card:hover {
  border-color: rgba(212,175,55,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(212,175,55,0.08);
}

/* ===== PRODUCT CARD ===== */
.product-card {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.4s;
  text-decoration: none;
  cursor: pointer;
}
.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.product-card:hover img { transform: scale(1.08); }
.product-card:hover {
  border-color: rgba(212,175,55,0.4);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 20px rgba(212,175,55,0.1);
  transform: translateY(-4px);
}
.product-card-body {
  padding: 1rem 1.25rem;
  background: linear-gradient(to top, rgba(10,10,10,0.9), transparent);
}
.product-card-body h3 {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}

/* ===== GLASS IMG ===== */
.glass-img {
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.4s;
}
.glass-img:hover {
  border-color: rgba(212,175,55,0.4);
  box-shadow: 0 10px 40px rgba(212,175,55,0.15);
  transform: scale(1.02);
}

/* ===== HOVER LIFT ===== */
.hover-lift { transition: transform 0.3s, box-shadow 0.3s; }
.hover-lift:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }

/* ===== ORBS ===== */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orbFloat 6s ease-in-out infinite;
}
.orb-1 { width: 400px; height: 400px; background: rgba(212,175,55,0.08); top: 10%; left: -10%; animation-delay: 0s; }
.orb-2 { width: 300px; height: 300px; background: rgba(255,215,0,0.06); top: 50%; right: -5%; animation-delay: 2s; }
.orb-3 { width: 250px; height: 250px; background: rgba(212,175,55,0.05); bottom: 10%; left: 40%; animation-delay: 4s; }
@keyframes orbFloat {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

/* ===== CTA GLOW ===== */
.cta-glow {
  box-shadow: 0 0 60px rgba(212,175,55,0.1), inset 0 0 60px rgba(212,175,55,0.03);
  border-color: rgba(212,175,55,0.2) !important;
}

/* ===== TESTIMONIAL SLIDER ===== */
#testimonialSlider { width: 100%; }
.testimonial-slide { min-width: calc(33.333% - 1.5rem); }
@media (max-width: 768px) { .testimonial-slide { min-width: calc(100% - 1.5rem); } }

/* ===== FAQ ===== */
.faq-item { overflow: hidden; }
.faq-btn { background: none; border: none; color: #fff; cursor: pointer; }
.faq-btn:hover span:first-child { color: #D4AF37; }
.faq-answer { transition: all 0.3s; }
.faq-icon.open { transform: rotate(45deg); }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, rgba(212,175,55,0.1) 0%, transparent 50%, rgba(212,175,55,0.05) 100%);
  border-bottom: 1px solid rgba(212,175,55,0.15);
}

/* ===== GALLERY ===== */
.masonry-grid {
  columns: 3;
  column-gap: 1rem;
}
@media (max-width: 1024px) { .masonry-grid { columns: 2; } }
@media (max-width: 640px) { .masonry-grid { columns: 1; } }
.masonry-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.4s;
}
.masonry-item:hover { border-color: rgba(212,175,55,0.4); transform: scale(1.02); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.masonry-item img { width: 100%; display: block; transition: transform 0.5s; }
.masonry-item:hover img { transform: scale(1.05); }
.masonry-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.masonry-item:hover .masonry-overlay { opacity: 1; }

/* ===== LIGHTBOX ===== */
#lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.95);
  display: none; align-items: center; justify-content: center;
  backdrop-filter: blur(10px);
}
#lightbox.active { display: flex; }
#lightbox img { max-width: 90vw; max-height: 90vh; border-radius: 12px; border: 1px solid rgba(212,175,55,0.3); }
#lightboxClose {
  position: absolute; top: 20px; right: 30px;
  color: #fff; font-size: 2.5rem; cursor: pointer; line-height: 1;
  transition: color 0.3s;
}
#lightboxClose:hover { color: #D4AF37; }

/* ===== CONTACT FORM ===== */
.form-input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  color: #fff;
  font-size: 0.95rem;
  transition: all 0.3s;
  outline: none;
  font-family: 'Inter', sans-serif;
}
.form-input:focus {
  border-color: rgba(212,175,55,0.5);
  box-shadow: 0 0 20px rgba(212,175,55,0.1);
  background: rgba(255,255,255,0.08);
}
.form-input::placeholder { color: rgba(255,255,255,0.3); }
textarea.form-input { resize: vertical; min-height: 140px; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0A0A0A; }
::-webkit-scrollbar-thumb { background: linear-gradient(#D4AF37, #FFD700); border-radius: 3px; }

/* ===== SMOOTH SCROLL ===== */
html { scroll-behavior: smooth; }

/* ===== ABOUT PAGE ===== */
.stat-card {
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
}
.stat-card:hover { background: rgba(212,175,55,0.12); transform: translateY(-4px); }

/* ===== PRODUCT DETAIL CARD ===== */
.prod-detail-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s;
}
.prod-detail-card:hover {
  border-color: rgba(212,175,55,0.35);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 30px rgba(212,175,55,0.08);
  transform: translateY(-6px);
}
.prod-detail-card img {
  width: 100%; height: 260px; object-fit: cover;
  transition: transform 0.5s;
}
.prod-detail-card:hover img { transform: scale(1.06); }
.prod-detail-body { padding: 1.5rem; }
.prod-detail-body h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 0.5rem; }
.prod-detail-body p { color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.6; }

/* ===== PAGE LOADER ===== */
#pageLoader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0A0A0A;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#pageLoader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Logo pulse */
.loader-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #D4AF37;
  animation: logoPulse 1.5s ease-in-out infinite;
}
@keyframes logoPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,175,55,0.5); transform: scale(1); }
  50%       { box-shadow: 0 0 0 18px rgba(212,175,55,0); transform: scale(1.06); }
}

/* Brand name */
.loader-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #D4AF37, #FFD700, #D4AF37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.08em;
}

/* Liquid progress bar */
.loader-bar-wrap {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 99px;
  overflow: hidden;
}
.loader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #D4AF37, #FFD700);
  border-radius: 99px;
  animation: loaderFill 1.6s ease forwards;
}
@keyframes loaderFill {
  0%   { width: 0%; }
  60%  { width: 75%; }
  100% { width: 100%; }
}

/* Three liquid dots */
.loader-dots {
  display: flex;
  gap: 8px;
}
.loader-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D4AF37;
  animation: dotBounce 1.2s ease-in-out infinite;
}
.loader-dot:nth-child(2) { animation-delay: 0.2s; background: #FFD700; }
.loader-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes dotBounce {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.4; }
  40%            { transform: translateY(-10px); opacity: 1; }
}
