/* /includes/global.css */

/* Base */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
}

/* Header */
header {
  background-color: white;
  color: black;
  padding: 10px 20px;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.site-title {
  font-size: 24px;
  font-weight: bold;
}

nav {
  padding: 10px 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.1px;
  flex-wrap: wrap;
}

.nav-item a {
  color: black;
  text-decoration: none;
  font-weight: 400;
  padding: 10px 16px;
  font-size: 14.5px;
  letter-spacing: 0.25px;
}

/* Article container layout */
/* Article container layout */
.article-wrapper {
  max-width: 900px;
  margin: 40px auto;
  padding: 10px 30px 40px 30px; <!-- TOP RIGHT BOTTOM LEFT -->
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}


/* Headline */
.article-wrapper h1 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #2c3e50;
  font-weight: 600;
  line-height: 1.3;
}

/* Paragraphs */
.article-wrapper p {
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 20px;
  color: #333;
}

/* Footer */
footer {
  background-color: #3a71b0;
  color: #fff;
  padding: 40px 20px;
  width: 100%;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.footer-left {
  flex: 1;
  min-width: 250px;
}

footer a {
  color: white;
  font-size: 14px;
  text-decoration: none;
}

.footer-right {
  flex: 1;
  min-width: 250px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
