/* Overall Page Styling */
body {
  margin: 0;
  padding: 0;
  font-family: "Trebuchet MS", sans-serif;
  background-color:plum;
  color: #333;
}

/* Container Layout */
.page-container, .intro-container {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  text-align: center;
}

/* Headings and Text */
h1 {
  color: #ff8c42;
  font-size: 2.5em;
  margin-bottom: 10px;
}
p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

/* Image Styling */
.image-box {
  margin: 20px 0;
}
.image-box img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Navigation Buttons */
.nav-links {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
.nav-links a {
  text-decoration: none;
  padding: 12px 20px;
  background-color: #ffda77;
  color: #333;
  border-radius: 8px;
  font-weight: bold;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
  transition: background-color 0.3s ease;
}
.nav-links a:hover {
  background-color: #ff8c42;
  color: white;
}

/* Home Page Special Styling */
.intro-text h1 {
  color: #ff8c42;
  font-size: 3em;
}
.nav-list ul {
  list-style-type: none;
  padding: 0;
}
.nav-list li {
  margin: 10px 0;
}
.nav-button {
  display: inline-block;
  margin: 5px;
  padding: 10px 16px;
  background-color: #ffd699;
  color: #333;
  border-radius: 6px;
  text-decoration: none;
}
.nav-button:hover {
  background-color: #ffa94d;
  color: white;
}

/* Credits Page Container */
.page-container {
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
  background-color: #fff6ea;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
}

/* Title and Thank You Message */
.page-container h1 {
  font-size: 2.8em;
  color: #ff8c42;
  margin-bottom: 20px;
}
.page-container p {
  font-size: 1.2em;
  color: #444;
  margin-bottom: 15px;
}

/* Image Insets Section */
.image-insets {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin: 30px 0;
}
.inset {
  width: 220px;
  text-align: center;
}
.inset img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}
.inset p {
  margin-top: 6px;
  font-size: 1em;
  color: #666;
}

/* Credits Section */
.credits-section {
  margin-top: 40px;
  background-color: #ffeccd;
  padding: 20px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.credits-section h2 {
  color: #ff8c42;
  font-size: 1.4em;
  margin-bottom: 12px;
}
.credits-section p {
  font-size: 1.1em;
  color: #333;
  margin-bottom: 10px;
}

/* Navigation Back to Home */
.nav-links {
  margin-top: 30px;
}
.nav-links a {
  text-decoration: none;
  padding: 12px 24px;
  background-color: #ffd699;
  color: #333;
  font-weight: bold;
  border-radius: 8px;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.1);
  transition: background-color 0.3s ease;
}
.nav-links a:hover {
  background-color: #ffa94d;
  color: white;
}

/* Main Layout with Sidebar */
.main-container {
  display: flex;
  flex-direction: row;
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  background-color: #fff6ea;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Sidebar Navigation */
.sidebar {
  width: 200px;
  padding: 20px;
  background-color: #ffeccd;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.sidebar h2 {
  font-size: 1.4em;
  color: #ff8c42;
  margin-bottom: 10px;
}
.sidebar ul {
  list-style-type: none;
  padding: 0;
}
.sidebar li {
  margin-bottom: 12px;
}
.sidebar a {
  text-decoration: none;
  color: #333;
  background-color: #ffd699;
  padding: 8px 12px;
  border-radius: 6px;
  display: block;
  transition: background-color 0.3s ease;
}
.sidebar a:hover {
  background-color:purple;
  color:palevioletred;
}

/* Main Content */
.content {
  flex: 1;
  padding: 30px;
  text-align: center;
}
.content h1 {
  font-size: 3em;
  color: pink;
}
.content p {
  font-size: 1.2em;
  color: #444;
}
.content img {
  margin-top: 20px;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
