body {
  background: #cfd9ef repeat-x top;
  background-image: url('flag-wave.gif');
  background-size: cover;
  font-family: Gotham, book;
  font-size: 13px;
  color: #000033;
  margin: 0;
}

#wrapper {
  width: 1200px;
  margin: 0 auto;
  background: #fff;
  border: 3px solid #003366;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

#topbar {
  color: white;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-image: url('webbanner.png');
}

#logo h1 {
  font-family: Sentinel, Bold;
  font-size: 26px;
  margin: 0;
}

#logo .flag {
  color: #ff3333;
}

#signup input[type="email"],
#signup input[type="text"] {
  width: 80px;
  font-size: 12px;
}

#signup input[type="submit"] {
  background: #e0b64c;
  border: 1px solid #cc9900;
  font-weight: bold;
  cursor: pointer;
}

#navbar {
  background: linear-gradient(#1a2f5f, #001a33);
  border-top: 4px solid #660000;
  border-bottom: 4px solid #660000;
}


#navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-around;
  flex-wrap: nowrap;
}

#navbar li {
  flex: 1;
  margin: 0;
  min-width:0;
}

#navbar a {
  display: block;
  padding: 15px 5px;
  text-align: center;
  font-size: clamp(10px, 1.5vw, 14px);
  font-weight: bold;
  text-transform: uppercase;
  color: white;
  text-decoration: none;
  background: linear-gradient(#6688cc, #335599);
  border-right: 1px solid #003366;
  border-left: 1px solid #003366;
  transition: background 0.3s, color 0.3s;
  white-space: nowrap; 
  overflow: hidden;
  text-overflow: ellipsis; 
}

#navbar a:hover {
  background: linear-gradient(#cc0000, #990000);
  color: #fff;
  text-decoration: none;
}

#navbar::after {
  content: "";
  display: block;
  height: 4px;
  background: #990000;
}

#main table {
  width: 100%;
}

#sidebar, #rightbar {
  width: 180px;
  vertical-align: top;
  background: #003366;
  border-right: 3px solid #ccc;
}

#rightbar {
  border-right: none;
  border: 3px solid #ccc;
}

.sidebar-box {
  padding: 10px;
  margin: 10px;
  background: #e6ebfa;
  border: 1px solid #999;
}

.sidebar-box h3 {
  background: linear-gradient(#990000, #660000);
  color: white;
  padding: 5px;
  margin: -10px -10px 5px -10px;
  font-size: 14px;
}

.main-box {
  padding: 15px;
  margin: 10px;
  background: #f2f4f9;
  border: 2px solid #ccc;
}

.main-box h2 {
  color: #003366;
  font-family: Sentinel, bold;
}


.hero-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  
}

.hero-photo {
  flex: 1;
  position: relative; 
  display: inline-block;
}

.hero-photo img:first-child {
  width: 100%;
  height: auto;
  border: 2px solid #003366;
    position: relative; 

}

.hero-text {
  flex: 1;
  text-align: left;
}

.hero-text h2 {
  font-size: 30px;
  color: #003366;
  font-family: Georgia, 'Times New Roman', serif;
  margin-top: 0;
}

.hero-text p {
  line-height: 1.5;
  margin-bottom: 15px;
}

.hero-text .video-btn {
  font-size: 14px;
  padding: 8px 16px;
}

/* Responsive: stack on small screens */
@media (max-width: 700px) {
  .hero-box {
    flex-direction: column;
    text-align: center;
  }
  .hero-text {
    text-align: center;
  }
}


.video-btn, .donate-btn {
  background: linear-gradient(#990000, #660000);
  border: 1px solid #440000;
  color: white;
  padding: 4px 16px;
  
}
.video-btn:hover, .donate-btn:hover {
  background: linear-gradient(#cc0000, #990000);
}


#footer {
  text-align: center;
  background: #003366;
  color: white;
  padding: 10px;
  font-size: 11px;
  background-image: url('webbanner.png');
}

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

#content {
  vertical-align: top;
}

#rightbar {
  width: 220px;
  vertical-align: top;
  background: #f0f4ff;
  border-left: 2px solid #ccc;
}

#rightbar .sidebar-box {
  margin: 10px;
}

