/* === BASE STYLES === */
body {
  margin: 0;
  font-family: "Georgia", serif;
  background-color: #0b0b0b;
}

/* === HEADER === */
header {
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  background-color: rgba(18, 18, 18, 0.9);
}
.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #9a73be;
}
nav a {
  margin-left: 1.5rem;
  color: #ffffff;
  text-decoration: none;
}

/* === HERO SECTION === */
.section-hero {
  background-image: url("assets/bg1.jpg");
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ffffff;
}
.btn {
  margin-top: 1rem;
  padding: 12px 24px;
  background-color: #9a73be;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

/* === ABOUT === */
.section-about {
  background-color: #d2d2d2;
  padding: 60px 20px;
}
.section-about h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
  color: #000000;
}
.section-about ul {
  max-width: 800px;
  margin: auto;
  color: #000000;
  line-height: 1.6;
}

/* === SERVICES === */
.section-services {
  /*background-image: url("assets/wallhaven.jpg");*/
  background-color: #a3a3a3;
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
  color: white;
}
.section-services h1 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.accordion {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
.accordion-item {
  flex: 1 1 30%;
  background-color: rgba(30, 30, 30, 0.9);
  border: 1px solid #9a73be;
  border-radius: 10px;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.accordion-item h3 {
  margin: 0;
  color: #ffffff;
}
.accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.accordion-item.active .accordion-content {
  opacity: 1;
  max-height: 300px;
  margin-top: 1rem;
}

/* === CAREERS === */
.section-careers {
  background-color: #d2d2d2;
  padding: 60px 20px;
}
.section-careers h1 {
  text-align: center;
  margin-bottom: 2rem;
}
.job-posting {
  max-width: 700px;
  margin: auto;
  background-color: #111;
  padding: 2rem;
  border-radius: 10px;
  color: white;
}
.job-posting details {
  background-color: #222;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 8px;
}
.job-posting summary {
  font-weight: bold;
  cursor: pointer;
  color: #fff;
}

/* === CONTACT === */
.section-contact {
  background-image: url("assets/wallhaven.jpg");
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
  color: #fff;
  text-align: center;
}
.contact-link {
  color: #ffffff;
  font-size: 1.2rem;
  text-decoration: underline;
  display: inline-block;
  margin-top: 0.5rem;
}

/* === FOOTER === */
footer {
  text-align: center;
  padding: 2rem 1rem;
  color: #999;
  background: none;
}
