/* Base Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #e0e5d8 url("../photos/bg_dino_texture.jpg") no-repeat center center fixed;
  background-size: cover;
  margin: 0;
  padding: 0;
  color: #2e2e2e;
  line-height: 1.6;
}

/* Header & Footer */
header, footer {
  background-color: #2f4f2f;
  color: #f4f4f4;
  padding: 1em;
  text-align: center;
  border-bottom: 5px solid #99cc33;
}
h1{
  color: black;
  font-family: 'Georgia', serif;
}

h2, h3 {
  color: #445c27;
  font-family: 'Georgia', serif;
}

/* Navigation */
nav ul {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

nav ul li {
  display: inline-block;
  margin: 0 15px;
}

nav ul li a {
  color: #c0e197;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #fff;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

footer ul li {
  display: inline;
}

footer ul li a {
  color: #c0e197;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

footer ul li a:hover {
  color: #ffffff;
}

/* Main Section */
main {
  padding: 30px;
  background: rgba(255, 255, 255, 0.85);
  margin: 20px;
  border-radius: 15px;
}

/* Buttons and Inputs */
input[type="submit"],
input[type="reset"],
button {
  background-color: #6b8e23;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 1em;
  cursor: pointer;
  margin: 5px;
}

input[type="submit"]:hover,
input[type="reset"]:hover,
button:hover {
  background-color: #556b2f;
}

/* Forms */
form input, form textarea, form select {
  width: 100%;
  max-width: 500px;
  padding: 8px;
  margin: 5px 0 15px;
  border: 2px solid #99cc33;
  border-radius: 6px;
  font-size: 1em;
}

/* Image Layouts */
img {
  border: 4px solid #99cc33;
  border-radius: 8px;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

/* Sections */
section {
  margin-bottom: 40px;
}

/* Footer Links */
footer a {
  color: #c0e197;
  text-decoration: underline;
}
