@charset "utf-8";
/* CSS Document */


/* Eagles of the Hudson River Landing Page Styles */

/* Dark metallic body background for contrast */
body {
  background-color: #0f1f2b;
  color: #fff;
}

/* Header with yellow-to-silver metallic gradient background for contrast with white text */
header {
  background: linear-gradient(135deg, #d4af37, #c0c0c0); /* yellow to silver */
  color: white;
  text-align: center;
  padding: 60px 20px;
}


h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5); /* subtle 3D effect */
}


header p {
  font-size: 1.2rem;
  font-weight: 300;
}

/* Add spacing below header before first section */
section:first-of-type {
  margin-top: 40px;
}

/* Consistent full-width section images with rounded corners and spacing */
.section-image {
  width: 100%;
  height: auto; /* allows full image height */
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  object-fit: contain; /* optional: preserves full image if height is manually set */
}



section {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
  background-color: white;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Improve paragraph readability inside dark section backgrounds */
/* Make section text dark since sections have light backgrounds */
section p,
section li {
  color: #333; /* deep gray for body text readability */
}



section h2 {
  font-size: 1.75rem;
  color: #1f4e79;
  margin-bottom: 10px;
}

ul {
  padding-left: 20px;
  line-height: 1.6;
}

.button {
  display: inline-block;
  background-color: #1f4e79;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #2a67a5;
}

footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  background-color: #1f4e79;
  color: white;
}

a {
  color: #1f4e79;
  text-decoration: underline;
}

a:hover {
  color: #2a67a5;
  text-decoration: none;
}



