html {
  scroll-behavior: smooth;
}

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
}

.hero {
  width: 100%;
  height: 100vh; /* Full screen height */
  /*background-image: url('imgs/bridge.png');*/
  background-image: url('imgs/bridge-1.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: left;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.4); /* Optional dark overlay */
  z-index: 1;
}

/*.hero-content {*/
/*  position: relative;*/
/*  z-index: 2;*/
/*  max-width: 800px;*/
/*  padding: 40px;*/
/*}*/

/*.hero-content h2 {*/
/*  font-size: 32px;*/
/*  margin-bottom: 10px;*/
/*}*/

.hero-content h3 {
  margin-top: 20px;
  font-weight: bold;
  font-size: 20px;
}



.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 40px;
  background-color: rgba(0, 0, 0, 0.1); /* Highlight box */
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.hero-content h2,
.hero-content p {
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8); /* Improve contrast */
}


body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  line-height: 1.6;
  background-color: #fff;
}



a {
  text-decoration: none;
  color: #333;
}

.bg-cover-full {
  width: 100%;
  /*background: url('imgs/bridge.png') no-repeat center center;*/
  background: url('imgs/bridge-1.jpg') no-repeat center center;
  background-size: cover;
  padding: 60px 20px;
  color: white;
}

.bg-cover-full .content {
  max-width: 1200px;
  margin: 0 auto;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
  border-bottom: 1px solid #ddd;
  background: #fff;
}

.logo {
  font-weight: bold;
  font-size: 18px;
}

.logo span {
  font-weight: normal;
  font-size: 12px;
  color: #777;
}

.nav a {
  margin-left: 20px;
  font-weight: 500;
  font-size: 14px;
  transition: 0.3s;
}

.nav a:hover {
  color: #f9b000;
}

.section {
  padding: 40px 32px;
}

.section h2 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #222;
}

.section h3 {
  font-size: 16px;
  margin: 12px 0;
  color: #444;
}

.section ul {
  list-style: disc inside;
  margin-left: 10px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.grid-two {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.box {
  background: #f5f5f5;
  padding: 10px;
  border-radius: 6px;
}

.light {
  background: #f9f9f9;
}

.dark {
  background: #111;
  color: #fff;
}

.dark h2, .dark h3 {
  color: #f9b000;
}

.objectives {
  margin-top: 10px;
  list-style: circle inside;
}

.footer {
  text-align: center;
  font-size: 13px;
  background: #f5f5f5;
  padding: 24px;
  color: #666;
}
