/* General Reset and Body */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  background: linear-gradient(135deg, #d94e38, #f5a25d);
  color: #5a372a;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header Styles */
header {
  text-align: center;
  padding: 1.5rem 1rem 1rem;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 12px rgba(217, 78, 56, 0.3);
  border-bottom: 3px solid #b53f2d;
}

header h1 {
  margin: 0.2rem 0 0.3rem;
  font-size: 2.5rem;
  color: #842e1b;
  font-weight: 700;
}

header p {
  margin: 0 0 0.8rem;
  font-size: 1.2rem;
  color: #a34e36;
  font-weight: 600;
}

/* Round header image */
.header-photo {
  display: block;
  margin: 0.5rem auto 1rem;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #d94e38;
  box-shadow: 0 0 8px rgba(217, 78, 56, 0.4);
}

/* Navigation Styles */
nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-weight: 600;
}

nav a {
  text-decoration: none;
  color: #842e1b;
  font-size: 1.1rem;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

nav a:hover,
nav a:focus {
  background-color: #d94e38;
  color: #fff;
  outline: none;
}

/* Main content */
main {
  flex-grow: 1;
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}

/* Home section */
.home {
  text-align: center;
}

.home-photo {
  width: 300px;
  max-width: 80vw;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(217, 78, 56, 0.4);
  margin-bottom: 1.5rem;
}

.home h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #842e1b;
}

/*audio controls look and feel*/
audio {
  width: 100%;
  max-width: 400px;
  margin-top: 1rem;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background: rgba(217, 78, 56, 0.15);
  font-size: 0.9rem;
  color: #842e1b;
  border-top: 1px solid #b53f2d;
  margin-top: 3rem;
}

/* Responsive */
@media (max-width: 600px) {
  nav ul {
    flex-direction: column;
    gap: 1rem;
  }
  .home-photo {
    width: 90vw;
  }
}
