@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

:root {
  /* Blue & Yellow Theme: Energetic & Trustworthy */
  --primary-color: #344CB7;    /* Bright Royal Blue */
  --secondary-color: #000957;  /* Deep Navy */
  --accent-color: #577BC1;     /* Soft Blue */
  --light-color: #F2F2F2;      /* Off-white background */
  --dark-color: #0F0766;       /* Very dark blue for footer/header */
  
  --gradient-primary: linear-gradient(135deg, #344CB7 0%, #000957 100%);
  
  --hover-color: #293B8F;
  --background-color: #FFFFFF;
  --text-color: #333333;
  
  --border-color: rgba(52, 76, 183, 0.2);
  --divider-color: rgba(15, 7, 102, 0.1);
  --shadow-color: rgba(0, 0, 0, 0.15);
  
  --highlight-color: #FFD23F;  /* Bright Yellow for CTAs */
  
  --main-font: 'Oswald', sans-serif;
  --alt-font: 'Lato', sans-serif;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

/* Custom Utilities that Tailwind might miss in CDN version */
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Mobile Menu Logic */
#menu-toggle:checked + label + nav {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--dark-color);
    padding: 20px;
    z-index: 40;
    border-top: 1px solid rgba(255,255,255,0.1);
}

@media (min-width: 768px) {
    #menu-toggle:checked + label + nav {
        position: static;
        padding: 0;
        background: transparent;
        border: none;
    }
}