/* Reset some defaults */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f0f4ff;       
  font-weight: 700;             
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;

  background-image: url('images/tahoma.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}

/* Navbar container */
.navbar {
  background-color: #1a2a6c;
  padding: 1rem 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* Nav wrapper to arrange buttons horizontally */
.nav {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 1.8rem;
}

/* Individual nav buttons */
.navbutton a {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  background-color: #3478f6;
  color: #fff !important;       
  text-decoration: none;
  font-weight: 700;             
  border-radius: 6px;
  transition: background-color 0.3s ease;
  font-size: 1.1rem;
}

/* Hover effect on nav buttons */
.navbutton a:hover {
  background-color: #2559d6;
}

/* Active page highlight */
.navbutton.active a {
  background-color: #f39c12;
  color: #222 !important;
  font-weight: 700;
}

/* Main content container */
.main-content {
  max-width: 900px;
  margin: 2.5rem auto 4rem auto;
  padding: 0 1rem;
}

/* Article text styling */
.main-content article {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

p {
  margin-bottom: 1.2rem;
}

.issues-section ul {
  list-style: none;
  padding-left: 0;
}

.intro-section img {
  display: block;
  margin: 0 auto 2rem auto;       
  max-width: 400px;               
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.content-bubble {
  background-color: rgba(255, 255, 255, 0.75); 
  color: #000 !important;               
  font-weight: 700;
  padding: 1.6rem 2rem;
  margin-bottom: 1.8rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgb(0 0 0 / 0.05);
}

/* Intro section image */
.intro-section img {
  max-width: 300px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  display: block;
  object-fit: cover;
}

/* Footer styling */
.site-footer {
  background-color: #1a2a6c;
  color: #eee;
  text-align: center;
  padding: 1.2rem 1rem;
  font-size: 0.9rem;
  margin-top: auto;
}

.site-footer a {
  color: #f39c12;
  text-decoration: none;
  font-weight: 600;
}

.site-footer a:hover {
  text-decoration: underline;
}
