/* Global Styles */
body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--background-dark);
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

main {
  padding: 40px 40px;

  margin: 0 auto;
}

.project-main {
  margin-left: 10%;
  margin-right: 10%;
  margin-top: 1%;
  margin-bottom: 1%;
  background-color: var(--background-dark);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;

}

/* Title and Headings */
.project-title {
  font-family: var(--font-heading);
  color: var(--accent-purple);
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
}

.project-h2 {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  color: var(--accent-purple);
  margin-bottom: 10px;
  text-align: left;
}

/* Overview Section */
.project-overview {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  margin-top: 50px;
  align-items: center;
}

.project-main-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
}

.project-overview-h2 {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  color: var(--accent-purple);
  margin-bottom: 10px;
  text-align: center;
}

.project-overview-text {
  background-color: var(--background-dark);
  padding: 10px;
  text-align: justify;
}

/* Features Section */
.project-features {
  margin-top: 50px;
}

.project-features-list {
  padding: 20px;
  padding-bottom: 0;

}

.project-features-list li {
  margin-bottom: 10px;
  padding: 10px;
}

/* Technologies Section */

.project-technologies-list {
  display: flex;
  flex-direction: row;
  gap: 15px;
  padding: 10px;
  background-color: rgba(138, 43, 226, 0.3); /* Accent purple with 80% opacity */
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}


.project-technologies-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.project-technologies-list ul li {
  font-family: var(--font-body);
  color: var(--text-primary);
  font-size: 16px;
  display: flex;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-technologies-list ul li:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  color: var(--accent-pink);
}

.project-technologies-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;

}

.project-technologies-list span {
  padding: 8px 20px;
  background-color: var(--bg-light);
  border-radius: 20px;
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--text-primary);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.project-technologies-list span:hover {
  background-color: var(--accent-purple);
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

/* Project Structure Section */
.project-structure {
  margin-top: 50px;
}

.project-text {
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--text-primary);
  line-height: 1.6;
}

.project-code {
  background-color: #1B2B34;
  color: #B0B0B0;
  font-family: "Courier New", monospace;
  padding: 20px;
  border-radius: 5px;
  overflow-x: auto;
  white-space: pre-wrap;
  margin-top: 20px;
  font-size: 0.9rem;
}

/* Conclusion Section */
.project-conclusion {
  margin-top: 50px;
}

.project-conclusion p {
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--text-primary);
}

/* Links */
a {
  text-decoration: none;
  color: var(--accent-purple);
}

a:hover {
  text-decoration: underline;
  color: var(--accent-hover);
}

.project-text {
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--text-primary);
  line-height: 1.6;
  background-color: var(--background-dark);
  padding: 20px;
  border-radius: 5px;
}

/* Footer Section */
.project-footer {
  background-color: var(--footer-bg);
  padding: 20px;
  margin-top: 50px;
  border-radius: 5px;
}

.project-footer-text {
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--text-secondary);
  text-align: center;
}