/* ==========================================================================
   FIORI DI VIGORE - HAUTE COUTURE FLORAL DESIGN SYSTEM (LIGHT LUXURY THEME)
   Italian Botanical Aesthetic • Alabaster White, Warm Ivory & Brushed Gold
   ========================================================================== */

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

:root {
  /* Brand Luxury Light Color Palette */
  --bg-primary: #fbf9f5;
  --bg-secondary: #f4eee3;
  --bg-card: rgba(255, 255, 255, 0.92);
  --bg-card-hover: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.85);
  --bg-glass-light: rgba(255, 255, 255, 0.6);

  /* Noble Metallic Golds (Tailored for Light Theme contrast) */
  --gold-300: #8c6a23;
  --gold-400: #a37c2a;
  --gold-500: #b88d33;
  --gold-600: #7a5c18;
  --gold-gradient: linear-gradient(135deg, #a37c2a 0%, #7a5c18 100%);
  --gold-gradient-soft: linear-gradient(135deg, rgba(184, 141, 51, 0.12) 0%, rgba(184, 141, 51, 0.04) 100%);
  --gold-glow: 0 0 25px rgba(184, 141, 51, 0.2);

  /* Deep Botanical Emeralds */
  --emerald-900: #102417;
  --emerald-800: #163622;
  --emerald-700: #1e4a30;
  --emerald-600: #29613f;
  --emerald-accent: #1e4a30;

  /* Rose Velvet & Romantic Accents */
  --rose-velvet: #7a1d33;
  --rose-velvet-light: #9e3952;
  --rose-blush: #fcedef;
  --rose-gradient: linear-gradient(135deg, #9e3952 0%, #7a1d33 100%);

  /* Neutrals & Crisp High-Contrast Typography */
  --text-primary: #151c17;
  --text-secondary: #4a544d;
  --text-muted: #758078;
  --text-gold: #8c6a23;
  --border-subtle: rgba(184, 141, 51, 0.22);
  --border-bright: rgba(184, 141, 51, 0.55);
  --border-glass: rgba(0, 0, 0, 0.06);

  /* Refined Diffused Shadows */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 26px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(184, 141, 51, 0.06);
  --shadow-lg: 0 18px 45px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(184, 141, 51, 0.1);
  --shadow-gold: 0 10px 30px -5px rgba(184, 141, 51, 0.28);
  --shadow-rose: 0 10px 30px -5px rgba(158, 57, 82, 0.25);

  /* Typography */
  --font-serif-display: 'Italiana', 'Playfair Display', Georgia, serif;
  --font-serif-sub: 'Playfair Display', Georgia, serif;
  --font-cinzel: 'Cinzel', serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout & Spacing */
  --container-max: 1280px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset & Base Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Ambient Morning Sun & Rose Glow Background FX */
body::before {
  content: '';
  position: fixed;
  top: -15%;
  left: 15%;
  width: 65vw;
  height: 65vw;
  background: radial-gradient(circle, rgba(184, 141, 51, 0.08) 0%, rgba(244, 238, 227, 0.6) 50%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(90px);
}

body::after {
  content: '';
  position: fixed;
  bottom: 0%;
  right: -10%;
  width: 55vw;
  height: 55vw;
  background: radial-gradient(circle, rgba(158, 57, 82, 0.06) 0%, rgba(184, 141, 51, 0.05) 45%, transparent 75%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(100px);
}

/* Typography Presets */
h1, h2, h3, h4, .serif-title {
  font-family: var(--font-serif-display);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
}

h3 {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-family: var(--font-serif-sub);
}

p {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  z-index: 1;
}

/* Section Tag & Header */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  background: rgba(184, 141, 51, 0.09);
  border: 1px solid var(--border-subtle);
  font-family: var(--font-cinzel);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 16px;
  font-weight: 600;
}

.section-tag i {
  font-size: 0.85rem;
  color: var(--gold-500);
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px auto;
}

.section-header p {
  margin-top: 14px;
  font-size: 1.1rem;
}

/* Gold Gradient Text Utility */
.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 600;
}

/* Glassmorphism Card Container */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.glass-panel:hover {
  border-color: var(--border-bright);
  box-shadow: var(--shadow-lg);
}

/* Buttons & CTAs */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  text-align: center;
}

.btn i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #ffffff;
  box-shadow: var(--shadow-gold);
}

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

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(184, 141, 51, 0.4);
}

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

.btn-outline {
  background: #ffffff;
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  background: rgba(184, 141, 51, 0.08);
  border-color: var(--gold-500);
  color: var(--gold-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #1fa855 0%, #128C7E 100%);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(31, 168, 85, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(31, 168, 85, 0.45);
}

/* Badges */
.badge-gold {
  background: rgba(184, 141, 51, 0.12);
  color: var(--gold-600);
  border: 1px solid var(--gold-500);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.badge-rose {
  background: var(--rose-blush);
  color: var(--rose-velvet);
  border: 1px solid rgba(158, 57, 82, 0.35);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Section Spacing */
section {
  padding: 90px 0;
  position: relative;
  z-index: 1;
}

/* Lucide Icon Standard Size Helpers */
.lucide {
  width: 1.15em;
  height: 1.15em;
  vertical-align: middle;
  stroke-width: 1.75;
}

.lucide-sm {
  width: 1em;
  height: 1em;
}

.lucide-lg {
  width: 1.5em;
  height: 1.5em;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 12px rgba(184, 141, 51, 0.15); }
  50% { box-shadow: 0 0 25px rgba(184, 141, 51, 0.35); }
}

@keyframes floatGentle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.fade-in {
  animation: fadeIn 0.8s ease forwards;
}

.float-animation {
  animation: floatGentle 5s ease-in-out infinite;
}
