/* Fonts & Colors */
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  background: #f8f9fa;
  color: #333;
}

h1, h2, h3 {
  font-family: 'Merriweather', serif;
  margin-bottom: 0.5rem;
}

a {
  color: #1e4d7b;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  padding: 1rem 2rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.logo {
  font-family: 'Merriweather', serif;
  font-size: 1.4rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}
.nav-links li {
  display: inline;
}

/* Hero Section */
.hero {
  background: url('sisyphus.jpeg') no-repeat center center; /* replace with your image path */
  background-size: cover;
  position: relative;
  padding: 6rem 2rem;
  text-align: center;
  color: #ffffff;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4); /* dark overlay for readability */
}

.hero-text {
  position: relative; /* keep text above overlay */
  z-index: 1;
}

.hero-text h1 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.hero-text p {
  font-size: 1.2rem;
  color: #f0f0f0;
}

/* Sections */
.container {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr; /* One card per row */
  gap: 1.5rem;
}

.card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 1.05rem;
  line-height: 1.5;
}

/* Footer */
footer {
  background: #1e4d7b;
  color: #fff;
  text-align: center;
  padding: 1rem;
}
footer a {
  color: #ffd;
}
