body {
  background-color: black;
  color: white;
  font-family: Arial, sans-serif;
  text-align: center;
  margin: 0;
  padding: 0;
}
h1 {
  color: #b266ff; /* soft neon purple */
  margin-top: 50px;
}
/* ===== Mission Section ===== */
#mission {
  text-align: center;
  color: #fff;
  padding: 60px 20px;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a001f 100%);
  border-top: 2px solid #8000ff;
  border-bottom: 2px solid #8000ff;
}

#mission h2 {
  color: #a64dff;
  font-size: 2em;
  margin-bottom: 20px;
}
/* ===== Light Mode Overrides ===== */
body.light-mode h1,
body.light-mode h2,
body.light-mode h3 {
  color: #222; /* darker text for light background */
}
/* ===== Light Mode Fix for Services Section ===== */
body.light-mode #services {
  background-color: #f9f9f9;
}

body.light-mode #services h2 {
  color: #8000ff; /* keeps a readable purple heading */
}

body.light-mode #services li,
body.light-mode #services p {
  color: #333; /* makes sure list text is dark on light background */
}
body.light-mode p {
  color: #333;
}

#mission p {
  color: #ccc;
  font-size: 1.1em;
  max-width: 800px;
  margin: 10px auto;
  line-height: 1.6em;
}

/* Light mode */
body.light-mode #mission {
  background: linear-gradient(180deg, #f9f9f9 0%, #eaeaea 100%);
  color: #222;
}

body.light-mode #mission h2 {
  color: #8000ff;
}

body.light-mode #mission p {
  color: #444;
}

p {
  color: #cccccc; /* softer white for contrast */
  font-size: 18px;
}
h2 {
  color: #b266ff; /* same purple as the logo */
  margin-top: 40px;
  text-transform: uppercase;
}
ul {
  list-style: none; /* removes browser default bullets */
  padding: 0;
  margin: 20px auto; /* centers the list */
  display: inline-block; /* keeps it centered under the heading */
  text-align: left; /* keeps bullets aligned */
}

li {
  color: #cccccc;
  font-size: 18px;
  margin: 8px 0;
}

li::before {
  content: "• "; /* adds purple bullet */
  color: #b266ff;
}
form {
  margin: 40px auto;
  display: inline-block;
  text-align: left;
  background-color: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px #b266ff;
}

label, input, textarea {
  display: block;
  width: 100%;
  color: #ffffff;
  font-size: 16px;
}

input, textarea {
  background-color: #000000;
  border: 1px solid #b266ff;
  border-radius: 5px;
  padding: 8px;
  color: white;
  margin-top: 5px;
}

button {
  background-color: #b266ff;
  color: black;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background-color: #d9b3ff;
}
/* ===== Location Section Styling ===== */
#location {
  text-align: center;
  background-color: #111;
  color: #fff;
  padding: 40px 20px;
  margin-top: 40px;
  border-top: 2px solid #8000ff; /* purple highlight */
}

#location h2 {
  color: #a64dff;
  margin-bottom: 20px;
  font-size: 1.8em;
}

#location p {
  margin: 10px 0;
  line-height: 1.6;
}

#location iframe {
  width: 90%;
  max-width: 500px;
  height: 300px;
  border: 2px solid #8000ff;
  border-radius: 10px;
  box-shadow: 0 0 10px #8000ff55;
}
/* ===== Responsive Design (Mobile) ===== */
@media (max-width: 600px) {
  body {
    font-size: 16px;
    padding: 10px;
  }

  h1 {
    font-size: 1.8em;
  }

  #services ul {
    padding-left: 0;
    list-style: none;
  }

  #contact form, 
  #location iframe {
    width: 100%;
  }

  #location iframe {
    height: 250px;
  }

  button {
    width: 100%;
    padding: 12px;
  }
}
/* ===== Gallery Section ===== */
#gallery {
  background-color: #111;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  border-top: 2px solid #8000ff;
}

#gallery h2 {
  color: #a64dff;
  margin-bottom: 30px;
  font-size: 1.8em;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  justify-items: center;
}

.gallery-container img {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 10px #8000ff55;
  transition: transform 0.3s ease;
}

.gallery-container img:hover {
  transform: scale(1.05);
}
html {
  scroll-behavior: smooth;
}

* {
  transition: all 0.3s ease-in-out;
}
/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  header img {
    width: 120px;
  }

  h1 {
    font-size: 1.8em;
  }

  h2 {
    font-size: 1.4em;
  }

  p, li {
    font-size: 1em;
  }

  .gallery-container {
    grid-template-columns: 1fr;
  }

  form {
    width: 90%;
  }

  #map iframe {
    width: 100%;
  }
}
/* ===== Theme Toggle (Icon Style) ===== */
#theme-toggle {
  position: fixed;
  top: 15px;
  right: 15px;
  width: 45px;
  height: 45px;
  background-color: #8000ff;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 12px #8000ff66;
  transition: all 0.3s ease;
  z-index: 1000;
}

#theme-toggle:hover {
  transform: scale(1.1);
  background-color: #a64dff;
}

#theme-toggle .icon {
  font-size: 1.4em;
  transition: transform 0.3s ease;
}

/* ===== Light Mode Styling ===== */
body.light-mode {
  background-color: #f2f2f2;
  color: #222;
}

body.light-mode h1,
body.light-mode h2 {
  color: #8000ff;
}

body.light-mode #theme-toggle {
  background-color: #333;
  box-shadow: 0 0 12px #00000055;
}

body.light-mode #theme-toggle .icon {
  transform: rotate(180deg);
}
/* ===== Footer ===== */
footer {
  background-color: #0a0a0a;
  color: #ccc;
  text-align: center;
  padding: 20px;
  font-size: 0.95em;
  border-top: 2px solid #8000ff;
  margin-top: 40px;
}

footer p {
  margin: 5px 0;
}

footer a {
  color: #a64dff;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Light mode adjustments */
body.light-mode footer {
  background-color: #f2f2f2;
  color: #333;
  border-top: 2px solid #8000ff;
}
/* ===== Follow Us Section ===== */
#follow-us {
  background-color: #111;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  border-top: 2px solid #8000ff;
}

#follow-us h2 {
  color: #a64dff;
  margin-bottom: 15px;
  font-size: 1.6em;
}

#follow-us p {
  color: #ccc;
  margin-bottom: 20px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #8000ff;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px #8000ff55;
}

.social-link:hover {
  background-color: #a64dff;
  transform: scale(1.05);
}

.social-link img {
  width: 24px;
  height: 24px;
}

/* Light mode */
body.light-mode #follow-us {
  background-color: #f2f2f2;
  color: #333;
  border-top: 2px solid #8000ff;
}

body.light-mode .social-link {
  background-color: #333;
  box-shadow: 0 0 10px #00000055;
}