/* Global Styles */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f9;
  color: #333;
}

/* Navigation Bar */
header nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  background-color: #0056b3;
  padding: 1em;
  margin: 0;
}

header nav ul li {
  margin: 0 1em;
}

header nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}

/* Hero Section */
#hero {
  position: relative;
  width:100%;
  height: 750px;
  background: url('../images/Home.JPG') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  color: white;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.5); /* Dark transparent layer */
  padding: 2rem;
  border-radius: 10px;
}

.hero-overlay h1 {
  font-size: 3rem;
  margin: 0 0 10px;
}

.hero-overlay p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 20px;
}

/* Button Style */
.button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #ff6600;
  color: white;
  text-decoration: none;
  font-size: 18px;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.button:hover {
  background-color: #cc5200;
}

/* Intro Section */
#intro {
  text-align: center;
  padding: 3rem;
  background: white;
}

#intro h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

#intro p {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Footer */
footer {
  text-align: center;
  padding: 1.5rem;
  background-color: #333;
  color: white;
}

footer a {
  color: #ffcc00;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
