html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
}

body {
  flex: 1;
}

header {
  background-color: #1f2937;
  color: white;
  padding: 1rem 2rem;
  text-align: center;
}

.content {
  flex: 1; /* This allows it to grow and push the footer down */
  padding: 2rem;
}

footer {
  background-color: #1f2937; /* Same dark blue/gray as header for consistency */ 
  color: white;
  text-align: center;
  padding: 1rem 0;
  position: relative;
  bottom: 0;
  width: 100%;
  font-size: 0.9rem;
}


/* Style your footer and pin it */
footer {
  background-color: #1f2937;
  color: white;
  text-align: center;
  padding: 1rem 0;
  font-size: 0.9rem;
}

nav {
  background-color: #374151;
  display: flex;
  justify-content: center;
  padding: 0.5rem 0;
}

nav a {
  color: white;
  margin: 0 1rem;
  text-decoration: none;
  font-weight: bold;
}

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

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.photo-grid img {
  width: 50%;
  height: auto;
  border-radius: 8px;
}

.photo-grid p {
  text-align: center;
  font-size: 14px;
  color: #333;
}


/*
.capital-section {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-shadow: 1px 1px 4px #000;
  background-image: url('official_logo.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
*/

/*
.capital-section {
  background-image: url('official_logo.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 20px;
  text-align: center;
  color: white;
}
*/

/* Hero section with centered background image */
/*
.capital-section {
  background-image: url('official_logo.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay-text {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 8px;
  color: white;
  text-align: center;
}
*/

   /*
    form {
      display: flex;
      flex-direction: column;
    }

    label {
      margin-top: 1rem;
      font-weight: bold;
    }

    input, textarea {
      padding: 0.8rem;
      margin-top: 0.5rem;
      border: 1px solid #ccc;
      border-radius: 4px;
      font-size: 1rem;
    }

    button {
      margin-top: 1.5rem;
      background-color: #1f2937;
      color: white;
      padding: 0.8rem;
      border: none;
      border-radius: 4px;
      font-size: 1rem;
      cursor: pointer;
    }

    button:hover {
      background-color: #111827;
    }
  */
/* In style.css */
.hero {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(to right, #f7f7f7, #e3e3ff);
  border-radius: 20px;
  margin: 30px auto;
  max-width: 900px;
}
.hero h1 {
  font-size: 2.5em;
}
.hero p {
  font-size: 1.2em;
  color: #444;
  margin: 10px 0 20px;
}
.cta-button {
  display: inline-block;
  background-color: #003366;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
}
.cta-button:hover {
  background-color: #005599;
}
