

/* ========== Global Styles ========== */
body {
  font-family: "Georgia", serif;
  background-color: #f7f5f0;
  color: #333;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

h1, h2, h3 {
  color: #4a2f16;
  text-align: center;
  margin-top: 1em;
}

a {
  color: #5a3210;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* ========== Header and Navigation ========== */
header {
  background-color: #e3d5c0;
  padding: 15px 0;
  border-bottom: 3px solid #c6a15b;
}

header h1 {
  margin: 0;
  text-align: center;
  font-size: 1.8em;
  color: #3c240d;
}

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

nav li {
  margin: 5px 15px;
}

nav a {
  font-weight: bold;
  color: #3c240d;
}

nav a.active, nav a:hover {
  color: #7a4a0e;
}

/* ========== Main Layout ========== */
main {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* ========== Gallery Grid ========== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.gallery-grid figcaption {
  text-align: center;
  font-style: italic;
  color: #555;
  margin-top: 5px;
}

/* ========== Contact Form ========== */
form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input, textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button, .button-primary, .button-secondary {
  background-color: #8b5a2b;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px 15px;
  font-size: 1em;
  cursor: pointer;
  text-align: center;
  margin-top: 10px;
}

button:hover, .button-primary:hover, .button-secondary:hover {
  background-color: #704a22;
}

.button-secondary {
  display: inline-block;
  background-color: #a87c4f;
  text-decoration: none;
}

/* ========== Bio Section ========== */
.bio {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.profile-photo {
  width: 200px;
  border-radius: 6px;
  box-shadow: 0 0 8px rgba(0,0,0,0.2);
}

.bio-text {
  flex: 1;
  min-width: 250px;
}

/* ========== Footer ========== */
footer {
  text-align: center;
  background-color: #e3d5c0;
  padding: 20px 10px;
  border-top: 3px solid #c6a15b;
  margin-top: 40px;
}

footer p {
  margin: 10px 0;
}

.footer-logo {
  display: block;
  margin: 10px auto;
  width: 100px;
}

/* ========== Responsive Design ========== */
@media (max-width: 600px) {
  nav ul {
    flex-direction: column;
    align-items: center;
  }
  .bio {
    flex-direction: column;
  }
}/* === About Page Enhancements === */
.bio-photo {
  text-align: center;
  margin-bottom: 20px;
}

.profile-photo {
  max-width: 280px;
  height: auto;
  border-radius: 8px;
  border: 3px solid #b38b59;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.cv-button {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #b38b59; /* warm gold tone */
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.cv-button:hover {
  background-color: #8c6a3b; /* slightly darker gold */
  transform: scale(1.05);
}