/* style.css */

body {
  font-family: sans-serif;
  margin: 0;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

header {
  background-color: #fff;
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h1 {
  margin: 0;
  font-size: 24px;
  color: #333;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #555;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #007bff;
}

.hero {
  background-color: #e9ecef;
  padding: 80px 0;
  text-align: center;
}

.hero .container {
  max-width: 800px;
}

.hero-content h1 {
  font-size: 3em;
  margin-bottom: 20px;
  color: #333;
}

.hero-content p {
  font-size: 1.2em;
  color: #555;
  margin-bottom: 30px;
}

.button {
  display: inline-block;
  background-color: #007bff;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #0056b3;
}

.button.secondary {
  background-color: #6c757d;
}

.button.secondary:hover {
  background-color: #545b62;
}

.highlights {
  padding: 60px 0;
  background-color: #fff;
}

.highlights .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.highlight-card {
  padding: 30px;
  border: 1px solid #ddd;
  border-radius: 8px;
  transition: box-shadow 0.3s ease;
}

.highlight-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.highlight-card img {
  max-width: 80px;
  margin-bottom: 20px;
}

.highlight-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #333;
}

.highlight-card p {
  color: #555;
  margin-bottom: 20px;
}

.highlights .highlight-card a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.highlights .highlight-card a:hover {
  color: #0056b3;
}

.events {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.events .container {
  text-align: center;
}

.events h2 {
  font-size: 2em;
  margin-bottom: 30px;
  color: #333;
}

.event-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.event-item {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.event-item h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #333;
}

.event-item p {
  color: #555;
  margin-bottom: 5px;
}

footer {
  background-color: #333;
  color: #fff;
  padding: 30px 0;
  text-align: center;
  font-size: 0.9em;
}

footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

footer nav ul li {
  margin-left: 15px;
}

footer nav ul li a {
  text-decoration: none;
  color: #ddd;
  transition: color 0.3s ease;
}

footer nav ul li a:hover {
  color: #fff;
}

/* Placeholder for the icon images */

.highlight-card img {
  content: '';
  display: inline-block;
  width: 50px;
  height: 50px;
  background-color: #ddd;
  border-radius: 50%;
  margin-bottom: 15px;
}

