/* ===== GLOBAL STYLES ===== */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #ffffff; /* white background */
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center; /* center horizontally */
}

/* === Navigation Bar Styling (Cleaned Up) === */
.top-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.top-nav > ul {
  display: flex;
  justify-content: center; /* keeps menu centered */
  background: #b1effa; /* light blue bar */
}

.top-nav li {
  position: relative;
}

.top-nav > ul > li {
  margin: 0 20px;
}

/* Bigger top-level nav items */
.top-nav > ul > li > a {
  display: block;
  padding: 16px 22px;   /* more padding */
  font-size: 22px !important;  /* force bigger text */
  text-decoration: none;
  color: #046475;
  font-weight: bold;
}

.top-nav > ul > li > a:hover {
  color: #dd128f; /* pink hover */
}

/* === Dropdown Styling === */
.top-nav li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #b1effa;
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 200px;
  z-index: 999;
}

.top-nav li:hover > ul {
  display: block;
}

.top-nav li ul li {
  width: 100%;
}

.top-nav li ul a {
  display: block;
  padding: 8px 12px;
  color: #046475;
  text-decoration: none;
}

.top-nav li ul a:hover {
  background: #dd128f;
  color: #fff;
}
/* ===== MAIN CONTENT WRAPPER ===== */
#page-wrap {
    max-width: 1400px;         /* overall body width */
    margin: 20px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

#content {
    max-width: 1400px;         /* same width as body wrapper */
    margin: 0 auto;
    box-sizing: border-box;
    text-align: center;        /* centers inline elements if needed */
}

/* ===== IMAGE STYLING ===== */
#content img,
.featured-image img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 1400px;         /* keeps images slightly wider than nav */
    width: 100%;               /* responsive scaling */
    height: auto;              /* keeps proportions */
}

/* ===== LOGO FIX ===== */
.logo-nav-wrapper {
  max-width: 1000px !important;   /* allow container to expand */
  width: 100% !important;
  margin: 0 auto;
  text-align: center;
}

.site-logo {
  display: block;
  max-width: 1000px !important;   /* allow image itself to expand */
  width: 100% !important;
  height: auto !important;        /* keep proportions */
  margin: 0 auto;
}

/* ===== CENTER BODY CONTENT ===== */
.page-body,
.center-body,
.content-inner,
.content-wrapper,
.post {
  max-width: 1400px;
  margin-left: auto !important;
  margin-right: auto !important;
  float: none !important;
  Position: static !important;
  clear: both !important;
  Box-sizing: border-box;
}

/* Keep paragraphs aligned left inside centered blocks */
.page-body p,
.center-body p,
.content-inner p,
.content-wrapper p,
.post p {
  text-align: left !important;
}

/* ===== REMOVE OLD SIDEBAR LAYOUTS ===== */
.leftbar,
#leftbar,
.sidebar,
aside {
  display: none !important;
}

/* FORCE LOGO IMAGE SIZE */
.logo-nav-wrapper img.site-logo {
  display: block;
  margin: 0 auto;
  width: 100% !important;         /* make it expand fully */
  max-width: 1400px !important;   /* set the limit */
  height: auto !important;        /* keep proportions */
}/* === FONT USAGE RULES === */

/* Default body text */
body {
  font-family: 'Raleway', sans-serif;
}

/* Logo text "KIDSALE" (if you ever want to render as text) */
.site-logo-text {
  font-family: 'Superboys', cursive;
}

/* Top-level nav items (About Us, Consignors, Volunteers) */
.top-nav > ul > li > a {
  font-family: 'Raleway', sans-serif;
  font-size: 20px !important;
  font-weight: 700; /* bold */
}

/* Dropdown menu items */
.top-nav li ul a {
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-weight: 400; /* regular */
}/* ==== Button Styling ==== */
.btn {
  display: inline-block;
  padding: 18px 36px;
  font-family: 'Raleway', sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  text-align: center;
}

/* Light Blue Button */
.btn--blue {
  background: #b1effa;
  color: #046475;
  border: 3px solid #046475;
}

/* Hover Effect */
.btn--blue:hover {
  background: #046475;
  color: #ffffff;
  border-color: #046475;
}
.text-center {
  Text-align: center;
  margin: 30px 0;
}

/* Mobile logo and header fix */
@media screen and (max-width: 768px) {
  .site-logo {
    max-width: 55% !important;   /* shrink logo */
    height: auto !important;
    display: block;
    margin: 0 auto !important;   /* center it */
  }

  nav.top-nav a {
    font-size: 14px !important;  /* smaller nav links */
    padding: 4px 6px !important;
  }

  #content {
    font-size: 0.95em !important;  /* shrink body text slightly */
  }
}
