/**
 * ISLAMIC & INDIAN WEDDING ORNAMENTS & PATTERNS
 * 
 * Includes vector patterns, gold foil borders, Islamic arches, 
 * delicate floral flourishes, and geometric arabesque motifs.
 */

:root {
  --gold-metallic: linear-gradient(135deg, #ECC870 0%, #C59B27 35%, #F4E297 70%, #9B781E 100%);
  --gold-border-gradient: linear-gradient(90deg, transparent, #ECC870 20%, #C59B27 50%, #ECC870 80%, transparent);
}

/* Islamic Arch Frame */
.islamic-arch-frame {
  position: relative;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 120px 120px 24px 24px;
  background: radial-gradient(circle at 50% 10%, rgba(212, 175, 55, 0.08) 0%, rgba(255, 255, 255, 0) 70%), #FFFFFF;
  box-shadow: 0 15px 40px rgba(10, 42, 30, 0.07), 0 1px 3px rgba(212, 175, 55, 0.2);
  overflow: hidden;
}

/* Luxury Card with Gold Filigree Border */
.luxury-card {
  position: relative;
  background: #FFFFFF;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 10px 35px -5px rgba(10, 42, 30, 0.08);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.luxury-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px -5px rgba(10, 42, 30, 0.12), 0 0 15px rgba(212, 175, 55, 0.2);
}

/* Four Corner Gold Flourishes */
.corner-ornament {
  position: absolute;
  width: 28px;
  height: 28px;
  pointer-events: none;
  opacity: 0.85;
}

.corner-top-left {
  top: 12px;
  left: 12px;
}

.corner-top-right {
  top: 12px;
  right: 12px;
  transform: rotate(90deg);
}

.corner-bottom-left {
  bottom: 12px;
  left: 12px;
  transform: rotate(-90deg);
}

.corner-bottom-right {
  bottom: 12px;
  right: 12px;
  transform: rotate(180deg);
}

/* Gold Divider */
.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 20px auto;
  width: 100%;
  max-width: 320px;
}

.gold-divider::before,
.gold-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--gold-border-gradient);
}

.gold-divider-icon {
  color: #C59B27;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 2px 4px rgba(197, 155, 39, 0.3));
}

/* Subtle Geometric Arabesque Pattern Overlay */
.arabesque-pattern {
  background-color: #FAF7F2;
  background-image: radial-gradient(#C59B27 0.75px, transparent 0.75px), radial-gradient(#C59B27 0.75px, #FAF7F2 0.75px);
  background-size: 30px 30px;
  background-position: 0 0, 15px 15px;
  background-opacity: 0.04;
}

/* Metallic Gold Text */
.gold-text-gradient {
  background: linear-gradient(135deg, #ECC870 0%, #C59B27 40%, #ECC870 80%, #9B781E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Shimmer animation */
@keyframes goldShimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.shimmer-text {
  background: linear-gradient(90deg, #C59B27 0%, #FFF3C4 50%, #C59B27 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShimmer 6s infinite linear;
}

/* Floating Gold Particle Effect in Envelope */
@keyframes floatUp {
  0% {
    transform: translateY(100%) rotate(0deg);
    opacity: 0;
  }
  20% {
    opacity: 0.8;
  }
  80% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(-120vh) rotate(360deg);
    opacity: 0;
  }
}

.floating-petal {
  position: absolute;
  pointer-events: none;
  background: radial-gradient(circle, rgba(243, 229, 171, 0.8) 0%, rgba(212, 175, 55, 0.4) 60%, transparent 100%);
  border-radius: 50%;
  animation: floatUp 9s infinite ease-in;
}
