/* CSS 21 Dec 2024 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Global link styling for consistency across all pages */
a {
  color: rgb(52, 152, 219);
  text-decoration: none;
}

a:visited {
  color: rgb(52, 152, 219); /* Prevent color change after visit */
}

.container {
  max-width: 90%;
  margin: 0 auto;
  padding-top: 5px;
}

.title {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 6em;
  font-weight: 900;
  color: #00004d;
  color: rgba(0, 0, 0, 0.3);
  background-image: -webkit-linear-gradient(
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.25) 100%
  );
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.42);
}

.subtitle {
  text-align: center;
  margin-bottom: 0.8em;
  font-family: "Montserrat", sans-serif;
  font-size: 2em;
  color: rgb(52, 152, 219);
  letter-spacing: 1.3rem;
  word-break: break-word;
  padding-top: 20px;
}

.subtitle:hover {
  color: rgb(231, 76, 60);
}

.badactors {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 1.5em;
  color: red;
  letter-spacing: 0.2rem; /* Reduced spacing between characters */
  max-width: 75%; /* Prevent excessive stretching */
  padding: 10px; /* Reduced padding for a tighter appearance */
  margin: 0 auto; /* Center the content */
  line-height: 1.4; /* Add consistent spacing between lines if text wraps */
}

/* Paragraph and Body Styling */
body {
  background-color: #000000;
  height: 100vh;
  background: linear-gradient(-130deg);
  background-repeat: no-repeat;
  font-family: "Montserrat", sans-serif;
  text-align: justify; /* Justify all text globally */
  padding: 20px; /* Add consistent padding around the entire body */
  margin: 0 auto; /* Center the content */
}

p {
  text-align: justify; /* Justify paragraphs */
  margin-bottom: 15px; /* Add spacing between paragraphs */
}

/* List Styles */
.outerUL {
  list-style-type: disc; /* Disc bullets for top-level lists */
  padding-left: 40px; /* Consistent indentation */
  margin: 0; /* Reset margins */
}

.innerUL {
  list-style-type: circle; /* Circle bullets for nested lists */
  padding-left: 20px; /* Indentation for nested lists */
  margin: 0;
}

/* Ensure Proper Styling for Lists in .about Section */
.about {
  max-width: 90%; /* Prevent excessive stretching */
  margin: 0 auto; /* Center content */
  padding: 20px; /* Add spacing within the section */
  font-family: "Montserrat", sans-serif;
  font-size: 1.4em;
  color: rgb(153, 163, 164);
  letter-spacing: 0.1em;
}

.about ul {
  list-style-type: disc; /* Default to disc for unordered lists */
  margin: 0; /* Reset margins */
  padding-left: 40px; /* Ensure proper indentation */
}

.about ul li {
  text-align: left; /* Ensure left alignment */
  margin-bottom: 10px; /* Add spacing between list items */
}

.about ul ul {
  list-style-type: circle; /* Use circles for nested lists */
  padding-left: 20px; /* Add extra indentation for nested lists */
}

/* Override Global Alignment for Lists */
body ul,
body ul li {
  text-align: left; /* Ensure lists are left-aligned globally */
}

/* ================================= 
  Media Queries
==================================== */

/* Smartphones */
@media (max-width: 600px) {
  .title {
    font-size: 3em;
  }

  .subtitle {
    font-size: 1.5em;
    letter-spacing: 0.5rem;
  }

  .about {
    font-size: 1em;
  }

  .outerUL {
    padding-left: 20px; /* Reduce indentation for smaller screens */
  }
  .innerUL {
    padding-left: 15px; /* Further reduce for nested lists */
  }
}

/* Tablets */
@media (min-width: 601px) and (max-width: 1024px) {
  .title {
    font-size: 4em;
  }

  .subtitle {
    font-size: 1.75em;
    letter-spacing: 1rem;
  }

  .about {
    font-size: 1.2em;
  }
}

/* Laptops and small desktops */
@media (min-width: 1025px) and (max-width: 1440px) {
  .title {
    font-size: 5em;
  }

  .subtitle {
    font-size: 1.9em;
    letter-spacing: 1.2rem;
  }

  .about {
    font-size: 1.3em;
  }
}

/* Large desktops */
@media (min-width: 1441px) {
  .title {
    font-size: 6em;
  }

  .subtitle {
    font-size: 2em;
    letter-spacing: 1.3rem;
  }

  .about {
    font-size: 1.4em;
  }
}
