/* CALL ME ROSE - Luxury Bridal & Botanical Keepsake Aesthetic System */
@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&family=Pinyon+Script&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --color-olive-dark: #1C1917;
  --color-olive-deep: #353C27;
  --color-olive-primary: #5C6447;
  --color-olive-medium: #8A9A5B;
  --color-olive-sage: #D1C2B0;
  --color-olive-light: #F4EFE6;
  --color-bg-pure: #FAF8F5;
  --color-bg-soft: #F4EFE6;
  --color-bg-card: #FFFFFF;
  --color-text-main: #1C1917;
  --color-text-sub: #78716C;
  --font-heading: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-calligraphy: 'Alex Brush', 'Pinyon Script', cursive;
}

.font-calligraphy {
  font-family: var(--font-calligraphy) !important;
  font-weight: 400 !important;
  letter-spacing: 0.02em !important;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--color-bg-pure);
  color: var(--color-text-main);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  line-height: 1.7;
}

/* Header Aesthetics - Vivi Embellish & Kinda Feel Glass Header */
.glass-header {
  background: rgba(250, 248, 245, 0.92) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(231, 221, 208, 0.7);
  box-shadow: 0 4px 20px rgba(28, 25, 23, 0.03);
  z-index: 1000 !important;
  position: sticky;
  top: 0;
}

/* Bilingual Navigation Styling (Kinda Feel Style) */
.nav-bilingual-item {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  padding: 4px 6px;
  position: relative;
  transition: all 0.25s ease;
}

.nav-bilingual-en {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1C1917;
  transition: color 0.25s ease;
}

.nav-bilingual-vi {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #8C8275;
  margin-top: -1px;
  transition: color 0.25s ease;
}

.nav-bilingual-item:hover .nav-bilingual-en {
  color: #5C6447;
}

.nav-bilingual-item:hover .nav-bilingual-vi {
  color: #1C1917;
}

.nav-bilingual-item::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 1.5px;
  background-color: #5C6447;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
}

.nav-bilingual-item:hover::after {
  width: 70%;
}

/* Minimal Hero Container */
.hero-minimal-bg {
  position: relative;
  background-color: #FAF8F5;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(209, 194, 176, 0.25) 0%, transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(92, 100, 71, 0.12) 0%, transparent 50%),
    url('../assets/workshop_banner.png');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  background: rgba(250, 248, 245, 0.85);
  backdrop-filter: blur(6px);
}

/* Feature Circle Icon Badges */
.feature-badge-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #F4EFE6;
  color: #5C6447;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  border: 1px solid #E7DDD0;
  transition: all 0.3s ease;
}

.feature-badge-icon:hover {
  background: #5C6447;
  color: #FFFFFF;
  border-color: #5C6447;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(92, 100, 71, 0.2);
}

/* Clean Luxury Cards */
.clean-card {
  background: #FFFFFF;
  border: 1px solid #E7DDD0;
  border-radius: 20px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.clean-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px rgba(28, 25, 23, 0.08);
  border-color: #D1C2B0;
}

/* Custom Luxury Buttons */
.btn-pill-olive {
  background-color: #5C6447;
  color: #FFFFFF;
  border-radius: 9999px;
  padding: 13px 34px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(92, 100, 71, 0.22);
}

.btn-pill-olive:hover {
  background-color: #485036;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(92, 100, 71, 0.35);
}

.btn-outline-luxury {
  border: 1px solid #5C6447;
  color: #5C6447;
  background: transparent;
  border-radius: 9999px;
  padding: 13px 34px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-outline-luxury:hover {
  background-color: #5C6447;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(92, 100, 71, 0.2);
}

.btn-circle-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #E7DDD0;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1C1917;
  transition: all 0.2s ease;
}

.btn-circle-icon:hover {
  border-color: #5C6447;
  color: #5C6447;
  background: #FAF8F5;
  transform: scale(1.04);
}

/* Minimalist Login Modal & Drawers */
.login-modal-box {
  background: #FFFFFF;
  border-radius: 28px;
  padding: 48px 40px;
  box-shadow: 0 24px 60px -12px rgba(28, 25, 23, 0.15);
  border: 1px solid #E7DDD0;
}

/* Modal Overlay & Slide Drawers */
.modal-backdrop {
  background: rgba(28, 25, 23, 0.45);
  backdrop-filter: blur(8px);
}

@keyframes slideRight {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

.animate-slide-right {
  animation: slideRight 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #FAF8F5;
}
::-webkit-scrollbar-thumb {
  background: #D1C2B0;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #5C6447;
}
