/* Reset CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
  font-size: 16px;
}

/* Links */
a {
  color: #5d2b7e;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hero-text h1 {
  font-size: 3rem;
}

.hero-text p {
  font-size: 1.2rem;
  margin-top: 10px;
}

/* Homepage Links Section */
.homepage-links, .latest-articles {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

.homepage-links h2, .latest-articles h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #5d2b7e;
}

.homepage-links ul, .latest-articles ul {
  list-style: none;
}

.homepage-links li, .latest-articles li {
  margin-bottom: 20px;
}

.homepage-links li p {
  color: #555;
  margin-top: 5px;
}

/* Buttons (if needed) */
.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #5d2b7e;
  color: #fff;
  border-radius: 5px;
  transition: 0.3s;
}

.btn:hover {
  background: #432066;
}

/* Footer */
.site-footer {
  background: #111;
  color: #fff;
  padding: 60px 20px 40px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.footer-container h3 {
  margin-bottom: 10px;
}

.footer-container ul {
  list-style: none;
  padding: 0;
}

.footer-container ul li {
  margin-bottom: 8px;
}

.footer-container ul li a {
  color: #ddd;
  text-decoration: none;
}

.footer-container ul li a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #aaa;
}

/* Responsive */
@media(max-width: 768px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}