/* CSS Reset */
body, header, nav, main, footer, img, h1, h2, h3, ul, li, p, figure, figcaption {
 margin: 0;
  padding: 0;
  border: 0;
}

/* General Styles */
body {
  background-color: #f6eee4;
  font-family: Verdana, Arial, sans-serif;
  color: #2a1f14;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: #4d3319;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #d1bfa7;
}

/* Header Styles */
header {
  position: relative;
  background-image: url("baby-hawk.jpg"); /* Replace with correct path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 400px; /* Adjusted height for better visual balance */
  width: 100vw; /* Ensures full width coverage */
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

/* Ensure text is above overlay */
header a {
  text-decoration: none;
  position: relative;
  z-index: 1;
}

header img {
  display: none;
}

header a h1 {
  font-size: 3.5em;
  font-weight: bold;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

header a p {
  font-size: 1.8em;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

/* Navigation Styles */
nav {
  background-color: #2a1f14;
  padding: 10px;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
}

nav li {
  margin: 0 15px;
}

nav a {
  color: #f6eee4;
  font-size: 18px;
  font-weight: bold;
  padding: 5px;
}

nav a:hover {
  color: #d1bfa7;
}

/* Main Content Styles */
main {
  padding: 20px;
}

h2 {
  color: #2a1f14;
  text-align: center;
  margin-bottom: 20px;
}

/* Gallery Styles */
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

figure {
  margin: 0;
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

figcaption {
  padding: 10px;
  background-color: #f6eee4;
  color: #2a1f14;
  font-size: 0.9em;
}

/* Contact Page Styles */
#contact {
  text-align: center;
}

/* About Page Styles */
.about {
  text-align: center;
}

.about img {
  margin: 0 auto;
}

/* Index Page Styles */
#home {
  text-align: center;
}

#home img {
  margin: 0 auto;
}

/* Footer Styles */
footer {
  background-color: #2a1f14;
  color: #f6eee4;
  padding: 15px;
  text-align: center;
  position: relative;
  width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
  header {
    height: 250px;
  }

  header a h1 {
    font-size: 2.5em;
  }

  header a p {
    font-size: 1.2em;
  }

  nav li {
    margin: 0 10px;
  }

  nav a {
    font-size: 16px;
  }
}
 