body {
  font-family: 'Lora', serif;
  background: linear-gradient(to bottom, #F8F4EE, #F5F0E1);
  color: #333333;
  line-height: 1.6;
  margin: 0;
  display: flex;
  flex-direction: column;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4B183' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2v-4h4v-2h-4zM0 34v-4h2v4h4v2h-4v4h-2v-4h-4v-2h4zm0-30v4h2V4h4v2h-4v4h-2V4h-4v2h4zM36 64v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V30h-2v4h-4v2h4v4h2v-4h4v-2h-4zM0 64v-4h2v4h4v2h-4v4h-2v-4h-4v-2h4zm0-30v4h2V34h4v2h-4v4h-2V34h-4v2h4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  animation: backgroundAnimation 5s linear infinite;
}

@keyframes backgroundAnimation {
  0% { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

header {
  color: #e48e1e;
  box-shadow: 0px 2px 20px #001F3F;;
  background-color: #E6C79B;
  text-align: center;
  border-top: 3px double #D4B183;
  border-bottom: 6px double #D4B183;
  position: relative;
  z-index: 1;
  top: 30px;
}

header h1 {
  text-shadow: 0px 3px 10px #000000;
}

#vanta-background {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

#menu-background {
  background-color: #f9f9f9;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
  overflow: hidden; 
}

main {
  background-color: #FFFFFF;
  margin: 20px auto;
  padding: 20px;
  width: 90%;
  min-height: 100vh;
  flex-grow: 1;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 13px;
  background-repeat: repeat;
}

h2 {
  border-bottom: 1px solid #D4B183;
  padding-bottom: 10px;
}

nav ul {
  list-style: none;
  padding: 0;
  font-size: 20px;
}

nav li {
  display: inline-block;
  margin: 0 10px;
}

nav a {
  text-decoration: none;
  color: #ee9e35;
  padding: 10px 15px;
  border-radius: 20px;
  transition: all 0.3s ease;
  box-shadow: 0px 2px 20px #f09b5581;;
  border: 2px solid #f09b5581;
}

nav a.active,
nav a:hover {
  background-color: #001F3F;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
}

ul {
  list-style-type: disc;
  padding-left: 40px;
}

li {
  margin-bottom: 10px;
}

.centered-image-text {
  text-align: center;
}

.centered-image-text img {
  display: block;
  margin: 0 auto;
}

.centered-image-text br {
  display: block;
  content: "";
  margin: 10px 0;
}

.button-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  z-index: 1;
}

.section-button {
  text-align: center;
  margin: 20px;
  width: 350px;
  height: 400px;
  border: 4px solid #D4B183;
  border-radius: 13px;
  box-shadow: 0 0 23px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
  z-index: 1;
}

.section-button img {
  width: 100%;
  height: 335px;
  object-fit: cover;
  border-radius: 9px;
  z-index: 1;
}

.section-button h2 {
  margin-top: 10px;
  z-index: 1;
}

.section-button:hover {
  transform: scale(1.1) translateZ(20px);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  outline: 5px solid #F2D7B5;
  z-index: 1;
}

.circle {
  position: absolute;
  background-color: #E6C79B;
  border-radius: 50%;
  opacity: 0.5;
  animation: moveCircle 10s linear infinite;
  z-index: 0;
}

@keyframes moveCircle {
  0% { transform: translate(0, 0); }
  25% { transform: translate(5px, -10px); }
  50% { transform: translate(10px, -10px); }
  75% { transform: translate(10px, -5px); }
  100% { transform: translate(0, 0); }
}

.expandable-panel {
  border: 1px solid #ddd;
  margin-bottom: 10px;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  transition: width 0.5s ease; 
  border-radius: 13px;
}

.panel-button {
  background-color: #E6C79B;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 67%;
  transform: translate(25%);
  margin: 15px auto;
  text-align: center; 
  font-size: 1.2em;
  font-weight: bold;
  font-family: 'Lora', sans-serif;
  z-index: 1;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s ease, width 0.5s ease, transform 0.5s ease;
  border: 3px solid #D4B183;
}

.panel-button:hover {
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
}

.panel-content {
  padding: 10px;
  padding-right: 35px;
  padding-left: 35px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
  border-radius: 10px;
  z-index: 1;
}

.about-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
}

.about-title {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #D4B183;
  border-bottom: 2px solid #ff9100;
  text-shadow: 0 0 20px #ff9705;
}

.about-subtitle {
  font-size: 1.5em;
  margin-bottom: 20px;
}

.about-details {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
  width: 70%;
}

.about-person {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  margin-bottom: 10px;
}

.about-details p {
  margin-bottom: 5px;
}