/* BBASH25 Design System - Navy Blue, Gold & Black/Gray Color Palette */

/* Font Imports */
@font-face {
    font-family: 'Akkurat-Normal';
    src: url('../fonts/Akkurat-Normal.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'Akkurat-Bold';
    src: url('../fonts/Akkurat-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
  }
  
  :root {
    /* Primary Colors - Tan (rightmost color) */
    --primary: #f8e7cb;
    --primary-dark: #f3e1bc;
    --primary-light: #faf2e6;
    
    /* Accent Colors - Dark Red (middle color) */
    --accent-gold: #c75450;
    --accent-gold-dark: #a03d39;
    --accent-gold-light: #d67470;

    /* Neutral Shades derived from primary tan */
    --neutral-white: #fefcf8;
    --neutral-light: #f8f2e8;
    --neutral-gray: #e6d4b3;
    --neutral-dark: #d4c299;
    --neutral-black: #62553f;
    
    /* Background Colors */
    --bg-primary: var(--primary);
    --bg-secondary: var(--neutral-white);
    --bg-accent: var(--secondary-light);
    --bg-dark: var(--tertiary-dark);
    
    /* Text Colors */
    --text-primary: var(--neutral-black);
    --text-secondary: var(--neutral-black);
    --text-accent: var(--secondary);
    --text-light: var(--neutral-white);
    --text-muted: #998a75;
    
    /* Border Colors */
    --border-primary: var(--secondary);
    --border-secondary: var(--tertiary);
    --border-light: var(--neutral-medium);
    --border-accent: var(--accent-gold);
    
    /* Shadow Colors */
    --shadow-light: rgba(138, 122, 95, 0.1);
    --shadow-medium: rgba(138, 122, 95, 0.2);
    --shadow-dark: rgba(138, 122, 95, 0.3);
    --shadow-colored: rgba(199, 84, 80, 0.15);
  }
  
  /* Global Styles */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Akkurat-Normal', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-accent) 100%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  /* Typography */
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Akkurat-Bold', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  
  h1 { font-size: 3rem; }
  h2 { font-size: 2.5rem; }
  h3 { font-size: 2rem; }
  h4 { font-size: 1.5rem; }
  h5 { font-size: 1.25rem; }
  h6 { font-size: 1rem; }
  
  p {
    font-family: 'Akkurat-Normal', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin-bottom: 1rem;
    font-size: 1.1rem;
  }
  
  /* Button Styles */
  .btn {
    font-family: 'Akkurat-Bold', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(45deg, var(--accent-gold), var(--accent-gold-light));
    color: var(--neutral-black);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px var(--shadow-medium);
  }
  
  .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-dark);
  }
  
  .btn:active {
    transform: translateY(0);
  }
  
  /* Card Styles */
  .card {
    background: rgba(245, 230, 204, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(230, 138, 46, 0.2);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px var(--shadow-medium);
    transition: all 0.3s ease;
  }
  
  .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--shadow-dark);
    border-color: var(--accent-gold);
  }
  
  /* Animation Classes */
  .fade-in {
    animation: fadeIn 0.8s ease-in;
  }
  
  .slide-up {
    animation: slideUp 0.6s ease-out;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  @keyframes slideUp {
    from { 
      opacity: 0;
      transform: translateY(30px);
    }
    to { 
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.75rem; }
    
    .card {
      padding: 1.5rem;
    }
  }
  
  @media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .card {
      padding: 1rem;
    }
  } 