/* assets/css/style.css - Floral Aromatics Premium Pastel Light Theme & Glassmorphism System */

:root {
  --bg-pastel-cream: #FDF8EB;  /* Chiffon Gold */
  --bg-pastel-ivory: #F5F7F2;  /* Botanical Ivory */
  --bg-pastel-mist: #FAFBF7;   /* Morning Mist */
  --text-charcoal: #2A2C38;    /* Deep Muted Botanical Charcoal for AAA Readability */
  --text-muted: #525566;       /* Muted Body Text */
  --accent-sage: #1E6091;      /* Professional Corporate Royal Blue */
  --accent-sage-hover: #144268;
  --accent-gold: #D9A74A;      /* Pale Gold Highlight */
  --glass-bg: rgba(230, 235, 245, 0.55);
  --glass-bg-card: rgba(255, 255, 255, 0.78);
  --glass-border: rgba(30, 96, 145, 0.35);
  --glass-shadow: 0 10px 30px 0 rgba(42, 44, 56, 0.06), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  --glass-shadow-lg: 0 18px 44px 0 rgba(42, 44, 56, 0.12), 0 0 0 1px rgba(30, 96, 145, 0.6) inset;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-charcoal);
  background: linear-gradient(135deg, var(--bg-pastel-cream) 0%, var(--bg-pastel-ivory) 50%, var(--bg-pastel-mist) 100%);
  background-attachment: fixed;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  width: 100vw;
}

p, span, a, input, button, select, textarea, label {
  font-family: 'Montserrat', sans-serif;
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: 'Cormorant Garamond', serif !important;
  color: var(--text-charcoal);
  letter-spacing: -0.015em;
  font-weight: 700;
}

/* REMOVED FULL-WIDTH BACKDROP BAR */
.header-backdrop-bar {
  display: none !important;
}

/* DYNAMIC WHITE FLOATING GLASS NOTCH HEADER WITH HEAVY GLASS BLUR & CLEAN BLACK BORDER */
.notch-header {
  position: fixed;
  top: 0.85rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9990;
  width: min(94%, 1240px);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(45px) saturate(220%);
  -webkit-backdrop-filter: blur(45px) saturate(220%);
  border: 1.5px solid rgba(0, 0, 0, 0.9);
  background-clip: padding-box;
  -webkit-background-clip: padding-box;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border-radius: 9999px;
  padding: 0.5rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.notch-header:hover {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
  border-color: #000000;
  transform: translateX(-50%) translateY(-1px);
}

.notch-badge {
  background: rgba(30, 96, 145, 0.08);
  border: 1px solid rgba(30, 96, 145, 0.2);
  box-shadow: 0 2px 8px rgba(42, 44, 56, 0.04);
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  color: var(--text-charcoal);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .notch-header {
    top: 0.5rem;
    width: 95%;
    padding: 0.4rem 0.75rem;
  }
}

/* APPLE MAC OS FROSTED GLASS BLUR CARDS & PANELS */
.glass-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.62) 100%);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1.5px solid rgba(30, 96, 145, 0.4);
  box-shadow: 0 16px 40px -8px rgba(42, 44, 56, 0.08), 
              0 0 0 1px rgba(255, 255, 255, 0.9) inset, 
              0 1px 2px rgba(255, 255, 255, 0.6) inset;
  border-radius: 1.5rem;
  transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), 
              box-shadow 0.35s ease, 
              border-color 0.35s ease, 
              background 0.35s ease;
}

.glass-card:hover {
  transform: translateY(-3px);
  border-color: rgba(30, 96, 145, 0.75);
  box-shadow: 0 24px 48px -10px rgba(42, 44, 56, 0.14), 
              0 0 0 1.5px rgba(30, 96, 145, 0.6) inset,
              0 1px 3px rgba(255, 255, 255, 0.8) inset;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.72) 100%);
}

.glass-panel {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.7) 100%);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1.5px solid rgba(30, 96, 145, 0.38);
  box-shadow: 0 10px 28px -6px rgba(42, 44, 56, 0.06), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  border-radius: 1.25rem;
}

/* FULL-WIDTH VIVID LIQUID GLASS BACKDROP BAR BEHIND NAV DOCK */
.dock-backdrop-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 5.25rem;
  z-index: 9995;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.82) 100%);
  backdrop-filter: blur(35px) saturate(240%);
  -webkit-backdrop-filter: blur(35px) saturate(240%);
  border-top: 1.5px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 -12px 40px rgba(42, 44, 56, 0.12), inset 0 1.5px 0 rgba(255, 255, 255, 0.95);
}

/* ELEGANT BLACK FLOATING MAC OS NAVIGATION DOCK CAPSULE */
.macos-dock {
  position: fixed;
  bottom: 1.15rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: rgba(16, 18, 26, 0.94);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
  border-radius: 9999px;
  padding: 0.35rem 0.4rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  width: max-content;
  max-width: min(96vw, 580px);
  white-space: nowrap;
  box-sizing: border-box;
}

.macos-dock::-webkit-scrollbar {
  display: none;
}

.dock-item {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.55rem 1.1rem;
  border-radius: 9999px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  white-space: nowrap;
  flex: 1 1 auto;
}

.dock-item i {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.dock-item:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.dock-item:hover i {
  color: #ffffff;
}

.dock-item.active {
  background: #ffffff;
  color: #1E6091;
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.dock-item.active i {
  color: #1E6091 !important;
}

.dock-item.active:hover {
  color: #144268;
}

.dock-item.active:hover i {
  color: #144268 !important;
}

@media (max-width: 768px) {
  .macos-dock {
    padding: 0.325rem 0.4rem;
    gap: 0.25rem;
    bottom: 0.85rem;
    max-width: min(97vw, 440px);
  }
  .dock-item {
    padding: 0.5rem 0.75rem;
    font-size: 0.825rem;
    font-weight: 700;
    gap: 0.35rem;
  }
}

/* Three.js Canvas Styling */
#hero-canvas-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

/* Parallax Depth Elements */
.parallax-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
  transition: transform 0.1s ease-out;
}

/* Floating Animations (Disabled for Static Stability) */
.animate-float-slow,
.animate-float-reverse {
  animation: none !important;
  transform: none !important;
}

/* Dynamic Fluid Typography */
.text-fluid-hero {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(2.75rem, 6vw + 1rem, 5.25rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.text-fluid-title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(2.1rem, 4.2vw + 0.5rem, 3.6rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
}

/* Custom Pastel Buttons */
.btn-sage {
  background-color: var(--accent-sage);
  color: #ffffff;
  font-weight: 700;
  border-radius: 9999px;
  padding: 0.85rem 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 6px 18px rgba(30, 96, 145, 0.3);
}

.btn-sage:hover {
  background-color: var(--accent-sage-hover);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 24px rgba(30, 96, 145, 0.4);
}

.btn-outline-charcoal {
  border: 2px solid var(--text-charcoal);
  color: var(--text-charcoal);
  font-weight: 700;
  border-radius: 9999px;
  padding: 0.85rem 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-outline-charcoal:hover {
  background-color: var(--text-charcoal);
  color: #ffffff;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(42, 44, 56, 0.18);
}

/* HIGHLY VISIBLE CRISP BORDERS FOR ALL BACKEND & FORM INPUTS */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="url"],
input[type="tel"],
input[type="search"],
select,
textarea {
  border: 1.5px solid rgba(42, 44, 56, 0.35) !important;
  background-color: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05) inset, 0 1px 2px rgba(42, 44, 56, 0.04) !important;
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out !important;
}

input[type="text"]:hover,
input[type="email"]:hover,
input[type="password"]:hover,
input[type="number"]:hover,
input[type="url"]:hover,
input[type="tel"]:hover,
input[type="search"]:hover,
select:hover,
textarea:hover {
  border-color: rgba(30, 96, 145, 0.65) !important;
}

input:focus, select:focus, textarea:focus {
  outline: none !important;
  border-color: var(--accent-sage) !important;
  box-shadow: 0 0 0 3.5px rgba(30, 96, 145, 0.25), 0 2px 6px rgba(0, 0, 0, 0.06) !important;
}

/* Modal Backdrop */
.modal-backdrop {
  background: rgba(42, 44, 56, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
