/* 🌐 CSS: custom.css (Utility-Friendly & Layout-Only) */

:root {
    --primary-color: #007bff;
    --secondary-color: #ffffff;
    --text-color: #171717;
    --font-size-base: 16px;
    --font-size-lg: 20px;
    --font-size-xl: 36px;
    --header-bg: rgba(255, 255, 255, 0.9);
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: var(--secondary-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
  }
  
  .header {
    background: linear-gradient(to right, #f8f8f8, #ffffff);
    padding: 15px 20px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .nav {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    justify-content: space-between;
  }
  
  .logo a {
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    color: var(--text-color);
  }
  
  /* 🔧 DESKTOP menu only */
  .menu {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
  }
  
  /* 🔥 .menu-toggle lives in mobile-overrides.css */
  
  .main {
    padding-top: 80px;
    padding-bottom: 50px;
  }
  
  .footer {
    background: var(--secondary-color);
    color: var(--text-color);
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    border-top: 1px solid #ddd;
  }
  
  /* Shared utility (optional - can be moved to a utility sheet later) */
  .light-section {
    background-color: #eaeaea;
  }
  
  /* Responsive nav logic */
  @media (min-width: 769px) {
    .menu {
      display: flex !important;
    }
    .menu-toggle {
      display: none !important;
    }
  }
  
  /* Utility classes (used globally across pages) */
  .mt-5 {
    margin-top: 20px;
  }
  
  .bg-light-alt {
    background-color: #f9f9f9;
  }
  .hidden {
    display: none !important;
  }
  