/* 
  EverlySpark Global Styles
  Design System: Luminous Softness
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Outfit:wght@300;400;600&display=swap');

:root {
  /* Color System */
  --color-primary: #F5E6E8;
  /* Rose Blush */
  --color-bg: #F9F5F0;
  /* Champagne Cream */
  --color-text: #333333;
  /* Charcoal */
  --color-accent-gold: #FFDD94;
  --color-accent-cool: #ACC8E5;

  /* Spacing */
  --space-unit: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 32px;
  --space-xl: 64px;

  /* Borders & Shadows */
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
  --glass-bg: rgba(255, 255, 255, 0.4);
  --glass-blur: blur(10px);
}

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

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.8;
}

/* Common Components */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.soft-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: var(--space-lg);
}

.capsule-button {
  display: inline-block;
  padding: 12px 32px;
  background-color: var(--color-primary);
  color: var(--color-text);
  border-radius: 50px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
  cursor: pointer;
}

.capsule-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(245, 230, 232, 0.5);
}

header {
  padding: var(--space-md) 0;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(249, 245, 240, 0.8);
  backdrop-filter: blur(10px);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

nav ul {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
}

nav a {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

footer {
  padding: var(--space-xl) 0;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.7;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-xl);
  text-align: left;
  margin-bottom: var(--space-xl);
}

.footer-brand .logo {
  margin-bottom: var(--space-sm);
}

.footer-links h4,
.footer-legal h4 {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
}

.footer-links ul,
.footer-legal ul {
  list-style: none;
}

.footer-links li,
.footer-legal li {
  margin-bottom: var(--space-sm);
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-bottom {
  padding: var(--space-md) 0;
  text-align: center;
  opacity: 0.6;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Global Footer Responsiveness */
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    text-align: center;
  }
}