/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f9fff7; /* very light pastel green */
  color: #2c3e2d; /* dark green for contrast */
  line-height: 1.6;
}

/* Header */
header {
  text-align: center;
  background: linear-gradient(to bottom, #f9ffb3, #d9f8c4); /* pastel yellow to green */
  padding: 20px;
}

.logo {
  max-width: 120px;
}

.logo-large {
  max-width: 500px;
  width: 50%;
  height: auto;
  margin-bottom: 0px;
}


h1 {
  margin: 10px 0;
  color: #205c2c;
}

.tagline {
  font-style: italic;
  color: #3a6b35;
}

/* Navigation */
nav ul {
  list-style: none;
  padding: 0;
  margin: 0px 0 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: #205c2c;
  font-weight: bold;
}

nav a.active,
nav a:hover {
  color: #ffb703; /* pastel yellow highlight */
}

/* Content */
main {
  padding: 20px;
  max-width: 900px;
  margin: auto;
}

h2 {
  color: #205c2c;
  border-bottom: 2px solid #cce3d0;
  padding-bottom: 5px;
}

article {
  margin-bottom: 20px;
  background: #ffffff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #d9f8c4;
  color: #205c2c;
  margin-top: 30px;
}

.eu-funding {
  margin-bottom: 20px;
}

.eu-logo {
  max-width: 220px;
  height: auto;
  display: block;
  margin: 0 auto 10px auto;
}

.funding-text {
  font-size: 0.9rem;
  color: #2c3e2d;
  max-width: 800px;
  margin: 0 auto;
}

.news article {
  margin-bottom: 30px;
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.news h3 {
  color: #205c2c;
  margin-top: 0;
}

/* Instagram Button Style */
.instagram-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  overflow: hidden; /* ensures the icon stays within circle */
}

.instagram-btn img {
  width: 24px; /* adjust size to fit nicely */
  height: 24px;
}

.instagram-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}