/* assets/style.css */

/* CSS Variables for Branding Colors */
:root {
    --primary-color: #FFEB3B;   /* Bright yellow (outer ring) */
    --accent-color:  #28A745;   /* Vivid green (center text) */
    --text-color:    #000000;   /* Pure black (text and outlining) */
    --bg-color:      #ffffff;   /* White (inner background) */
    --footer-bg:     #343a40;   /* Dark footer background */
  }
  
  /* ----------------------------------- */
  /* Reset and Base Styles               */
  /* ----------------------------------- */
  *,
  *::before,
  *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html,
  body {
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
  }
  
  /* ----------------------------------- */
  /* Layout & Structure                  */
  /* ----------------------------------- */
  /* Use flexbox to push footer to the bottom */
  body {
    display: flex;
    flex-direction: column;
  }
  
  main {
    flex: 1;
  }
  
  /* ----------------------------------- */
  /* Footer                              */
  /* ----------------------------------- */
  footer {
    background-color: var(--footer-bg);
    color: #fff;
    padding: 20px 0;
    text-align: center;
    width: 100%;
  }
  
  /* ----------------------------------- */
  /* Toast Container                     */
  /* ----------------------------------- */
  .toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1050;
  }
  
  /* ----------------------------------- */
  /* Images                              */
  /* ----------------------------------- */
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* ----------------------------------- */
  /* Buttons Enhancements                */
  /* ----------------------------------- */
  .btn {
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .btn:hover {
    transform: scale(1.05);
  }
  
  /* ----------------------------------- */
  /* Hero Section (example styling)      */
  /* ----------------------------------- */
  .hero-section {
    background: url('../assets/hero-bg.jpg') no-repeat center center/cover;
    padding: 100px 0;
    color: #fff;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  }
  
  /* ----------------------------------- */
  /* Section Padding                     */
  /* ----------------------------------- */
  .section-padding {
    padding: 60px 0;
  }
  
  /* ----------------------------------- */
  /* Headings                            */
  /* ----------------------------------- */
  h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 700;
  }
  
  /* ----------------------------------- */
  /* Container Adjustments               */
  /* ----------------------------------- */
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* ----------------------------------- */
  /* Header / Navigation Enhancements    */
  /* ----------------------------------- */
  header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background-color: var(--bg-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  /* ----------------------------------- */
  /* Responsive Typography & Spacing     */
  /* ----------------------------------- */
  @media (max-width: 768px) {
    .hero-section h1 {
      font-size: 2rem;
    }
  }
  
  @media (max-width: 576px) {
    .section-padding {
      padding: 40px 0;
    }
  }
  