/* style.css */

body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

header, nav, footer {
  background: #003366;
  color: white;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #003366;
  color: white;
}

header h1 {
  margin: 0;
  font-size: 1.8rem;
  align-items: left;
}


nav ul { 
  display:flex; 
  justify-content:center; 
  list-style:none; 
  padding:0; 
  margin:0; 
  flex-wrap:wrap; 
}

nav a {
  color: white;
  justify-content:center; 
  padding: 15px;
  text-decoration: none;
  display: block;
}

nav a:hover {
  background: #005999;
  border-radius: 4px;
}

.hero {
  background: url('hero.jpg') center/cover no-repeat;
  color: white;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}

.hero h1 {
  font-size: 2.5rem;
  margin: 0;
}

.container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.card {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.card img {
  max-width: 100%;
  border-radius: 4px;
}

.btn {
  background: #0066cc;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
}

footer {
  padding: 20px;
  text-align: center;
}

footer nav a {
  color: white;
  margin: 0 10px;
  font-size: 0.9rem;
}
