body {
  text-align: center;
  background-color: #ffffff; /* white */
  color: #000000; /* changed from lavender to black for contrast */
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
}

nav a {
  color: #ffffff;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}

nav {
  background-color: #00521c;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between; /* logo left, links right */
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 25px;
}

.logo {
  height: 80px;
  width: auto;
}

nav li {
  display: inline;         /* reinforces horizontal flow */
}

nav a:hover {
  color: #444444;
}

button {
  background-color: #00521c; /* emerald green */
  border: none;
  color: white;
  padding: 10px 20px;
  margin: 10px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #66D19B; /* lighter emerald */
}

#quote-box {
  background-color: #ffffff;
  border: 2px solid #00521c;
  border-radius: 10px;
  padding: 30px;
  width: 60%;
  margin: 40px auto;
  font-size: 1.2rem;
  color: #000000;
  box-shadow: 0 0 10px #00521c;
  text-align: center;
}

/* Resume Button */
.resume-button {
  display: inline-block;
  background-color: #00521c;
  padding: 12px 20px;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.resume-button:hover {
  background-color: #66D19B;
}

/* Slideshow */
#slideshow-container {
  width: 70%;
  margin: auto;
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  border: 2px solid #00521c;
  box-shadow: 0 0 10px #00521c;
}

.slide-item img {
  width: 100%;
  border-radius: 10px;
}

.slide-item {
  text-align: center;
}

.slide-controls {
  text-align: center;
  margin-top: 15px;
}


.p {
  align-content: center;
}

footer.footer {
  margin-top: 40px;
  padding: 20px 0;
  background-color: #00521c;
  text-align: center;
  color: #000;
}

footer.footer h2 {
  margin-bottom: 15px;
}

.social-links a {
  margin: 0 15px;
  font-weight: bold;
  text-decoration: none;
  color: #000;
}

.social-links a:hover {
  color: #444;
}

