/* -----------------------------
   Math.Fashion – Academic Chic
   ----------------------------- */

/* Base page layout */
html, body {
  background-color: #f9f9f6;
  color: #222;
  font-family: 'Georgia', serif;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* Optional: main container layout, centered with padding */
.website-body,
.main-area,
.content-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

/* Headings */
h1, h2, h3 {
  color: #2a2a2a;
  font-weight: normal;
  font-family: 'Georgia', serif;
  border-bottom: 1px solid #ddd;
  padding-bottom: 0.2em;
  margin-top: 2rem;
}

/* General links */
a {
  color: #003366;
  text-decoration: none;
}

a:hover {
  color: #0055aa;
}

/* Menu styles */
.website-header-menu-item {
  background-color: #f5f5f5;
  padding: 1rem 2rem;
  border-bottom: 1px solid #ccc;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

/* Menu links – clean, readable, with elegant hover underline */
.menu-link {
  color: #111 !important;
  font-family: 'Georgia', serif;
  font-weight: 500;
  font-size: 1.1rem;
  margin-right: 2rem;
  background-color: transparent !important;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
  display: block;
}


.menu-link:hover {
  border-bottom: 1px solid #0055aa;
  color: #0055aa !important;
  background-color: transparent !important;
}

/* Optional: remove after confirming styles are active */
/*
h1::after {
  content: " – math.fashion style active";
  color: #ff0;
}
*/

