/* ===============================
   GLOBAL STYLES - MAIN.CSS
   =============================== */



   
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: #1f293b;
  line-height: 1.6;
  background-color: #ffffff;
}

/* Layout Utilities */
.container {
  max-width: 1100px; 
  margin: auto;
  padding: 0 24px;
}

a { text-decoration: none; }

/* Header */
.site-header {
  background-color: #ffffff;
  padding: 22px 0; /* Slightly more vertical breathing room */
  border-bottom: 1px solid #f1f5f9;
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 100px;
}

.header-flex {
  display: flex;
  justify-content: space-between; /* This forces the Logo and Nav to the edges */
  align-items: center;
  max-width: 1200px; /* Standardize this across the site */
  margin: 0 auto;
  padding: 0 40px;
}
.header-flex nav a {
  color: #475569; /* Slate Grey for links */
}

.logo {
  font-size: 30px;
  font-weight: 800; /* Heavier weight for brand presence */
  color: #0f172a;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.site-header nav{
  display: flex;
  gap: 32px
}
.site-header nav a {
  color: #64748b; /* Slate grey is more premium than #475569 */
  font-size: 18px;
  font-weight: 600;
  transition: color 0.2s ease;
  margin-left: 0; /* Remove your old margin-left */
}

.site-header nav a:hover {
  color: #3b82f6;
}

/* Global Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.btn.primary {
  background: #334155;
  color: #fff;
  border: 1px solid #334155;
}
.btn.primary:hover {
  background: #1e293b;
}

.btn.secondary {
  background: #fff;
  color: #334155;
  border: 1px solid #cbd5e1;
}
.btn.secondary:hover {
  border-color: #94a3b8;
  background: #f8fafc;
}

/* Footer (Updated to match target) */
/* ===== FOOTER (Exact Design Match) ===== */
.site-footer {
  background: #ffffff;
  border-top: 1px solid #e2e8f0; /* The thin line above the footer */
  padding: 40px 0 24px;
  margin-top: auto;
}

/* Top Row: Flexbox for Left/Right split */
.footer-flex {
  display: flex;
  justify-content: space-evenly; /* Pushes content to edges */
  align-items: center;
  margin-bottom: 24px; /* Space between links and copyright */
  padding-bottom: 24px;
  border-bottom: 1px solid #f8fafc; /* Very faint line between links and copyright */
}

/* Left Side Text */
.footer-left strong {
  font-size: 22px;
  font-weight: 700;
  color: #64748b; /* Dark Slate */
  font-weight: bold;
}

/* Right Side Links */
.footer-links {
  display: flex;
  align-items: center;
  gap: 12px; /* Spacing between items */
}

.footer-links a {
  font-size: 18px;
  color: #64748b; /* Medium Grey */
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #0f172a; /* Darker on hover */
}

/* The vertical line separators */
.footer-links .separator {
  color: #cbd5e1; /* Light Grey */
  font-size: 14px;
}

/* Bottom Copyright */
.copyright-row {
  text-align: center;
  font-size: 17px;
  color: #000000; /* Lighter Grey */
}

/* Responsive: Stack them on mobile */
@media (max-width: 600px) {
  .footer-flex {
    flex-direction: column;
    gap: 16px;
  }
  
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}


/* ================= MOBILE HEADER ================= */

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.burger span {
  width: 26px;
  height: 3px;
  background: #0f172a;
  border-radius: 2px;
}

/* Mobile Nav */
@media (max-width: 900px) {
  .site-header {
    height: auto;
    padding: 16px 0;
  }

  .header-flex {
    padding: 0 20px;
  }

  .site-header nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid #e5e7eb;
    display: none;
  }

  .site-header nav a {
    padding: 14px 20px;
    font-size: 16px;
    border-bottom: 1px solid #f1f5f9;
  }

  .site-header nav.show {
    display: flex;
  }

  .burger {
    display: flex;
  }
}


/* ===== BURGER MENU ===== */
.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.burger span {
  width: 26px;
  height: 3px;
  background: #0f172a;
  border-radius: 2px;
}


@media (max-width: 900px) {

  .site-header nav {
    position: absolute;
    top: 100px;
    right: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px 0;
    display: none;
    border-bottom: 1px solid #e2e8f0;
  }

  .site-header nav.show {
    display: flex;
  }

  .burger {
    display: flex;
  }
}
