/* Global Styles */
body {
    font-family: 'Source Serif 4', serif;
    background-color: #f5f1e6;
    color: #1c1c1c;
    margin: 0;
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    color: #fff;
    /* Remove old background if using .site-header */
}

.btn-primary {
    background: #0b1e3d;
    color: #fff;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 4px;
    display: inline-block;
}

.section {
    padding: 100px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}


/* =============================
   Header Styles
============================= */

/* Header container */ 
.site-header {
  display: flex;
  align-items: center;              /* vertically center items */
  justify-content: space-between;   /* space between logo, menu, and login */
  background-color: #ffffff;       /* Slate Gray background */
  padding: 10px 20px;               /* spacing inside header */
}

/* Logo styling */
.header-left .logo {
  width: 150px; 
  height: 150px;
  object-fit: contain;              /* keeps logo proportions */
  border: none;                     /* remove any borders */
}

/* Menu styling */
.header-nav .menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0px;
  gap: 20px;                        /* spacing between menu items */
}

.header-nav .menu li a {
  text-decoration: none;
  color: #002E5D;
  font-weight: 800;
}

/* Login button styling */
.header-right .login-btn {
  background-color: #D4A017;       /* white button */
  color: #002E5D;                  /* text matches header */
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
}

/* Optional: hover effects */
.header-nav .menu li a:hover,
.header-right .login-btn:hover {
  opacity: 0.8;
}