body {
  font-family: "Arial", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
}

header {
  background-color: #5c3d2e;
  color: white;
  padding: 2em 0;
  text-align: center;
}

header h1 {
  font-size: 2.5em;
}

header p {
  font-size: 1.2em;
  margin-top: 0.5em;
}

nav {
  background-color: #8d6e63;
  display: flex;
  justify-content: center;
  padding: 1em 0;
}

nav a {
  color: white;
  margin: 0 1.5em;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #f0e9e4;
}

/* Section Styling */
section {
  padding: 2em 1em;
  background: white;
  margin: 2em auto;
  max-width: 900px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
  color: #5c3d2e;
  text-align: center;
}

.alankar-item {
  cursor: pointer;
  color: #5c3d2e;
  margin: 1em 0;
  font-size: 1.2em;
  font-weight: bold;
  transition: color 0.3s ease;
}

.alankar-item:hover {
  color: #f0e9e4;
}

.exercise {
  display: none;
  margin-top: 10px;
  background-color: #f9f3ea;
  padding: 1em;
  border-left: 4px solid #5c3d2e;
  border-radius: 5px;
}

/* Footer Styling */
footer {
  background-color: #5c3d2e;
  color: white;
  text-align: center;
}
header {
  background-color: #5c3d2e;
  color: white;
  padding: 2em 0;
  text-align: center;
}

header h1 {
  font-size: 2.5em;
}

header p {
  font-size: 1.2em;
  margin-top: 0.5em;
}

nav {
  background-color: #8d6e63;
  display: flex;
  justify-content: center;
  padding: 1em 0;
}

nav a {
  color: white;
  margin: 0 1.5em;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #f0e9e4;
}

/* Section Styling */
section {
  padding: 2em 1em;
  background: white;
  margin: 2em auto;
  max-width: 900px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
  color: #5c3d2e;
  text-align: center;
}

.alankar-item {
  cursor: pointer;
  color: #5c3d2e;
  margin: 1em 0;
  font-size: 1.2em;
  font-weight: bold;
  transition: color 0.3s ease;
}

.alankar-item:hover {
  color: #f0e9e4;
}

.exercise {
  display: none;
  margin-top: 10px;
  background-color: #f9f3ea;
  padding: 1em;
  border-left: 4px solid #5c3d2e;
  border-radius: 5px;
}

footer {
  background-color: #5c3d2e;
  color: white;
  text-align: center;
  padding: 1.5em 0;
}

.search-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1em;
}

.search-bar input[type="text"] {
  padding: 0.5em 1em;
  border: none;
  border-radius: 20px 0 0 20px;
  width: 250px;
  font-size: 1em;
  outline: none;
  background-color: #fff;
  color: #333;
  border: 1px solid #ccc;
}

.search-bar button {
  padding: 0.5em 1em;
  border: none;
  border-radius: 0 20px 20px 0;
  background-color: #5c3d2e;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.search-bar button:hover {
  background-color: #8d6e63;
}

body {
  background-image: url("");
  background-size: cover; /* This makes sure the image fills the area */
  background-repeat: no-repeat;
  background-position: center center; /* This centers the image */
  background-attachment: fixed; /* Optional: keeps the image fixed while scrolling */
}
.musical-section {
  display: flex; /* Using Flexbox for layout */
  justify-content: space-between; /* Distribute space between the left and right content */
  align-items: flex-start; /* Align the content to the top */
  padding: 20px;
}

.content-left {
  flex: 1; /* Takes up the left side space */
  padding-right: 20px;
}

.content-right {
  flex: 0.4; /* Takes up 40% of the width on the right side */
  background-color: #f0e9e4; /* Light background color */
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.content-right h2 {
  font-size: 1.8em;
  color: #5c3d2e; /* Dark brown color */
  margin-bottom: 15px;
}

.instrument-list {
  list-style: none; /* Remove bullet points */
  padding-left: 0;
}

.instrument-list li {
  font-size: 1.2em;
  margin: 10px 0;
  color: #333; /* Dark text color */
}

.instrument-list li:hover {
  color: #5c3d2e; /* Change color on hover */
  cursor: pointer;
}
/* Musical Section Styles */
.musical-section {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  align-items: center; /* Align content vertically */
}

.content-left {
  flex: 1;
}

.content-right {
  flex: 1;
}

.instrument-list {
  list-style: none;
  padding-left: 0;
}

.instrument-list li {
  font-size: 1.2em;
  margin: 10px 0;
}

.image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 5rem;
  padding: 5rem 2rem;
}

.instrument-image {
  width: 100%; /* Make the image responsive */
  max-width: 300px; /* Limit image width */
  height: auto; /* Maintain aspect ratio */
  border-radius: 8px; /* Rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: shadow effect */
}

.instrument-gallery {
  display: flex;
  flex-wrap: wrap; /* allow wrapping to multiple rows */
  gap: 20px; /* space between images */
  justify-content: center;
  margin-top: 20px;
}

.instrument-image {
  width: 150px; /* or any size you prefer */
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
