
/* css/global.css */
@import url('https://fonts.googleapis.com/css2?family=Frank+Ruhl+Libre:wght@400;500;700&family=Inter:wght@300;400;500;600&family=Playfair+Display:wght@400;600;700&display=swap');

@font-face {
  font-family: 'Dach Heilig'; 
  src: url('/fonts/Heilig.OTF') format('opentype');
  font-weight: normal; 
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Dach Heilig'; 
  src: url('/fonts/Heilig-ls-Bold.ttf') format('truetype');
  font-weight: bold; 
  font-style: normal;
  font-display: swap;
}

:root {
    /* Sophisticated Palette */
    --primary-text: #111827;       /* Soft Black */
    --secondary-text: #4B5563;     /* Cool Gray */
    --subtle-text: #9CA3AF;
    
    /* Classy Accents */
    --accent-blue: #1E3A8A;        /* Deep Navy instead of bright blue */
    --accent-blue-light: #EFF6FF;  /* Very faint blue for hovers */
    --accent-gold: #C5A059;        /* Gold for subtle highlights */
    
    /* Backgrounds */
    --background-color: #FAFAF9;   /* "Stone" / Warm Paper white */
    --surface-color: #FFFFFF;
    
    --border-color: #E5E5E5;
    
    /* Refined Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

body {
    font-family: 'Inter', sans-serif; 
    margin: 0;
    background-color: var(--background-color); 
    color: var(--primary-text);
    -webkit-font-smoothing: antialiased; /* Crisp text */
}

#app { opacity: 1; transition: opacity 0.15s ease-in-out; }
#app.fade-out { opacity: 0; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; box-sizing: border-box; }
a { text-decoration: none; color: inherit; transition: color 0.2s; }

.page-header { text-align: center; padding: 80px 0 60px 0; }
.breadcrumbs a { color: var(--secondary-text); font-weight: 400; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; }
.breadcrumbs span { color: var(--subtle-text); font-size: 0.9rem; }
.page-header h1 { font-family: 'Playfair Display', serif; font-size: 3rem; margin: 16px 0 8px 0; font-weight: 500; letter-spacing: -0.02em; }

/* --- Toast Notification --- */
.toast-notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background-color: #333;
    color: #fff;
    padding: 12px 24px;
    border-radius: 99px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 2000;
    pointer-events: none;
}

.toast-notification.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Invert colors for Dark Mode if desired, or keep it high contrast */
body.dark-mode .toast-notification {
    background-color: #fff;
    color: #000;
}