/* General */
body {
  font-family: "Times New Roman", Times, serif;
  margin: 0;
  background: #f9f9f9;
  color: #333;
}

/* Navbar */
.navbar {
  background: #111;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar .logo {
  font-size: 1.5rem;
  font-weight: bold;
}
.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}
.navbar ul li a {
  text-decoration: none;
  color: white;
  transition: color 0.3s;
}
.navbar ul li a:hover {
  color: #ffcc00;
}

/* Featured Story */
.featured {
  background: url("odyssaus.jpg") no-repeat center center/cover;
  color: white;
  padding: 100px 20px;
  text-align: center;
  position: relative;
}
.featured::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
}
.featured-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.featured h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.featured p {
  font-size: 1.2rem;
}
.featured-img {
  width: 100%;
  max-width: 900px;
  height: auto;
  margin: 20px 0;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: #ffcc00;
  color: #111;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s;
}
.btn:hover {
  background: #e6b800;
}

/* Latest News Section */
.news-section {
  padding: 40px 5%;
}
.news-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  border-left: 5px solid #ffcc00;
  padding-left: 10px;
}
.news-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.news-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
.news-card:hover {
  transform: translateY(-8px);
}
.news-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.news-content {
  padding: 15px;
}
.news-content h3 {
  margin: 0 0 10px;
  font-size: 1.2em;
}
.news-content p {
  font-size: 0.95em;
  line-height: 1.5;
}
.news-content a {
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
  color: #0077cc;
  font-weight: bold;
}
.news-content a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

/* Article Page */
.article-page {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
  line-height: 1.8;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 30px;
}
.article-page h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.article-page .article-img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}
.article-meta {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 20px;
}
.article-page p {
  margin-bottom: 20px;
  font-size: 1.05rem;
}