/* base.css */
:root {
    --primary: #2c2c2c;
    --secondary: #ffffff;
    --accent: #457b9d;
    --light: #f1faee;
    --dark: #1d3557;
    --transition: all 0.3s ease;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: var(--transition);
  }
  
  body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
  }
  
  .container {
    width: 100%;
    overflow-x: hidden;
  }
  
  /* Navigation - Shared across all pages */
  .navsection {
    display: flex;
    padding: 1.5rem;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: var(--primary);
    color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  
  .navsection h1 {
    font-size: 1.8rem;
    font-weight: 700;
  }
  
  .navsection ul {
    display: flex;
    gap: 1.5rem;
  }
  
  .navsection li {
    list-style: none;
  }
  
  .navsection a {
    text-decoration: none;
    color: rgb(176, 176, 176);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
  }
  
  .navsection a:hover {
    background-color: rgba(255,255,255,0.1);
  }
  
  /* Sidebar */
  .sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 350px;
    max-width: 100%;
    background-color: var(--secondary);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease-out;
  }
  
  .sidebar.show {
    transform: translateX(0);
  }
  
  .sidenav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .sidenav a {
    color: rgb(0, 0, 0);
    font-size: 1.2rem;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 4px;
  }

  .sidenav li {
    list-style: none;
  }
  
  .sidenav a:hover {
    background-color: rgba(255,255,255,0.1);
  }
  
  .close {
    align-self: flex-end;
    cursor: pointer;
  }
  
  .close svg {
    fill: #000 !important;
    color: #000 !important;
  }
  
  .hamburger {
    display: none;
    cursor: pointer;
  }
  
  /* Buttons */
  .btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--accent);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
  }
  
  .btn:hover {
    background-color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  
  /* ======================
   MODERN FOOTER DESIGN: YOU SUPPOSE PAY ME MORE SHA BUT NO WAM YOU BE MY OG....
   ====================== */

.footer--sec {
    background-color: var(--dark);
    color: white;
    padding: 4rem 0 0;
    position: relative;
    overflow: hidden;
  }
  
  .footer--sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
  }
  
  .footer--subsec {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  
  .footer--col {
    display: flex;
    flex-direction: column;
  }
  
  .footer--logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    display: flex;
    align-items: center;
  }
  
  .footer--logo span {
    color: var(--secondary);
  }
  
  .footer--about p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    opacity: 0.9;
  }
  
  .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    color: white;
    transition: var(--transition);
  }
  
  .social-links a:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
  }
  
  .footer--heading {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
  }
  
  .footer--heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary);
  }
  
  .footer--links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .footer--links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .footer--links a:hover {
    color: var(--secondary);
    transform: translateX(5px);
  }
  
  .footer--links a::before {
    content: '→';
    color: var(--secondary);
    opacity: 0;
    transition: var(--transition);
  }
  
  .footer--links a:hover::before {
    opacity: 1;
  }
  
  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .contact-icon {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-top: 0.2rem;
  }
  
  .contact-text {
    flex: 1;
    line-height: 1.6;
    opacity: 0.9;
  }
  
  .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .newsletter-input {
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 4px;
    background-color: rgba(255,255,255,0.1);
    color: white;
  }
  
  .newsletter-input::placeholder {
    color: rgba(255,255,255,0.7);
  }
  
  .newsletter-btn {
    background-color: var(--secondary);
    color: white;
    border: none;
    padding: 0.8rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
  }
  
  .newsletter-btn:hover {
    background-color: var(--accent);
  }
  
  .footer--bottom {
    background-color: rgba(0,0,0,0.2);
    padding: 1.5rem 0;
    margin-top: 3rem;
    text-align: center;
  }
  
  .copyright {
    opacity: 0.7;
    font-size: 0.9rem;
  }
  
  /* Responsive Footer */
  @media (max-width: 768px) {
    .footer--subsec {
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
    }
    
    .footer--col:first-child {
      grid-column: 1 / -1;
      text-align: center;
      align-items: center;
    }
    
    .social-links {
      justify-content: center;
    }
    
    .footer--heading::after {
      left: 50%;
      transform: translateX(-50%);
    }
  }
  
  @media (max-width: 480px) {
    .footer--subsec {
      grid-template-columns: 1fr;
      text-align: center;
    }
    
    .footer--links {
      align-items: center;
    }
    
    .contact-item {
      justify-content: center;
    }
  }
  
  /* Responsive base styles */
  @media (max-width: 768px) {
    .navsection ul {
      display: none;
    }
    
    .hamburger {
      display: block;
    }
    
    .navsection {
      padding: 1rem;
    }
  }
  
  @media (max-width: 480px) {
    .footer--subsec {
      grid-template-columns: 1fr;
      padding: 0 1rem;
    gap: 1.5rem;
    text-align: center;
    }
    
    .foot--icons {
      justify-content: center;
    }
  }