/* MYSYA Luxury Botanical Atelier Custom Styles */

:root {
  --bg-dark: #080e0b;
  --bg-surface: #0e1411;
  --bg-surface-elevated: #151d18;
  --color-gold: #c5a880;
  --color-gold-light: #e0c298;
  --color-gold-dim: rgba(197, 168, 128, 0.25);
  --color-cream: #ede8df;
  --color-cream-muted: #a6aba6;
  --color-olive-deep: #16241b;
}

body {
  background-color: var(--bg-dark);
  color: var(--color-cream);
  font-family: 'Playfair Display', serif;
  overflow-x: hidden;
}

.font-mono-luxury {
  font-family: 'Space Mono', monospace;
}

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

/* Atmospheric Gradients & Spotlights */
.ambient-spotlight {
  background: radial-gradient(circle at 30% 40%, rgba(197, 168, 128, 0.09) 0%, rgba(8, 14, 11, 0) 70%),
              radial-gradient(circle at 80% 60%, rgba(22, 36, 27, 0.4) 0%, rgba(8, 14, 11, 0) 70%);
}

.ambient-glow-subtle {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(197, 168, 128, 0.05) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

/* Luxury Gold & Glass Layers */
.atmospheric-layer-1 {
  background-color: var(--bg-surface);
  border: 1px solid rgba(197, 168, 128, 0.15);
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.6);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.atmospheric-layer-1:hover {
  border-color: rgba(197, 168, 128, 0.45);
  box-shadow: 0 15px 50px -10px rgba(197, 168, 128, 0.1);
}

.atmospheric-layer-2 {
  background-color: rgba(14, 20, 17, 0.75);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(197, 168, 128, 0.2);
}

.golden-thread {
  border: 1px solid var(--color-gold);
}

.golden-thread-bottom {
  border-bottom: 1px solid rgba(197, 168, 128, 0.25);
}

.golden-thread-top {
  border-top: 1px solid rgba(197, 168, 128, 0.25);
}

/* Luxury Interactive Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-gold);
  color: var(--color-cream);
  background: transparent;
  padding: 14px 28px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 11px;
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(197, 168, 128, 0.2), transparent);
  transition: all 0.6s ease;
}

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

.btn-primary:hover {
  background-color: var(--color-gold);
  color: var(--bg-dark);
  box-shadow: 0 0 25px rgba(197, 168, 128, 0.35);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid rgba(237, 232, 223, 0.35);
  color: var(--color-cream);
  padding-bottom: 4px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px;
  font-family: 'Space Mono', monospace;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-ghost:hover {
  border-bottom-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateX(4px);
}

/* Specimen Card Aesthetics */
.specimen-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.6s ease;
}

.specimen-card:hover {
  transform: translateY(-8px);
}

.specimen-card img {
  transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.5s ease;
  filter: contrast(1.1) brightness(0.95);
}

.specimen-card:hover img {
  transform: scale(1.05);
  filter: contrast(1.15) brightness(1.02);
}

/* Filter Badges */
.filter-btn {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 18px;
  border: 1px solid rgba(197, 168, 128, 0.2);
  color: var(--color-cream-muted);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
  border-color: var(--color-gold);
  color: var(--color-gold-light);
  background: rgba(197, 168, 128, 0.08);
}

/* Modal Overlay */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(5, 8, 6, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background-color: #0c120f;
  border: 1px solid var(--color-gold);
  max-width: 900px;
  width: 92%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.modal-backdrop.active .modal-content {
  transform: scale(1) translateY(0);
}

/* Custom Scrollbars */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #080e0b;
}
::-webkit-scrollbar-thumb {
  background: #25332a;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold);
}

/* Toast Notifications */
.toast-msg {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #0e1612;
  border: 1px solid var(--color-gold);
  color: var(--color-cream);
  padding: 16px 24px;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.05em;
  box-shadow: 0 10px 30px rgba(0,0,0,0.8);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 120;
}

.toast-msg.show {
  transform: translateY(0);
  opacity: 1;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}
.pulse-glow {
  animation: pulseGlow 4s infinite ease-in-out;
}
