body {
  font-family: Arial, Helvetica, sans-serif;
  background-image: url(https://images.pexels.com/photos/1313807/pexels-photo-1313807.jpeg);
  color: rgb(41, 41, 41);
  margin: 0;
}

header {
  background-color: #385a55;
}

.site-title {
  color: rgb(252, 252, 252);
  font-family: "Averia Serif Libre", serif;
  font-weight: 700;
  font-size: larger;
  text-align: center;
  padding: 7px 0;
}

nav {
  background-color: #385a55;
  z-index: 1000;
    padding-bottom: 10px;

}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  background-color: #385a55;
  padding: 0.5rem 0;
  gap: 1rem;
  margin: 0;
}

nav ul li a {
  color: white;
  text-decoration: none;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
  font-weight: 600;
}

nav ul li a:hover,
nav ul li a.active {
  color: #84a9a3;
  border-radius: 4px;
}

.articles-section {
  display: flex;
  justify-content: center;
  padding: 4rem 1rem;
}

.articles-container {
  background-color: rgba(255, 255, 255, 0.9);
  max-width: 1000px;
  width: 100%;
  padding: 3rem 2rem;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.articles-container h2 {
  font-family: "Averia Serif Libre", serif;
  color: #385a55;
  text-align: center;
  margin-bottom: 1rem;
}

.intro-text {
  text-align: center;
  color: #222;
  margin-bottom: 2.5rem;
  font-size: 1rem;
  line-height: 1.6;
}

.article-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.article-item {
  display: flex;
  align-items: center;
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.article-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.article-item img {
  width: 180px;
  height: 130px;
  object-fit: cover;
  border-right: 4px solid #84a9a3;
}

.article-info {
  padding: 1rem 1.5rem;
}

.article-info h3 {
  font-family: "Averia Serif Libre", serif;
  color: #385a55;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.article-info p {
  color: #333;
  line-height: 1.5;
}

.footer {
  background-color: #385a55;
  text-align: center;
  padding: 1rem 0;
  margin-top: 4rem;
  font-size: 0.9rem;
}

.footer p {
  color: white;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem 1rem;
}

@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    background-color: #385a55;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    text-align: center;
  }

  nav ul.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    top: 10px;
    right: 20px;
  }

  nav ul li {
    margin: 0.5rem 0;
  }

  .article-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .article-item img {
    width: 100%;
    height: 200px;
    border-right: none;
    border-bottom: 4px solid #84a9a3;
  }

  .article-info {
    padding: 1rem;
  }
}
