@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap");
body {
  background: linear-gradient(
      rgba(36, 37, 42, 0.9),
      rgba(36, 37, 42, 0.9)
    ),
    url('../image/splash6.jpg'); /* Add your background image */
  background-size: cover; /* Ensures the image covers the entire background */
  background-repeat: no-repeat; /* Prevents the image from repeating */
  background-attachment: fixed; /* Keeps the background image fixed when scrolling */
  background-position: center; /* Centers the background image */
  color: #edf0f1; /* Optional: default text color for better readability */
  font-family: Arial, sans-serif;
  text-align: center;
  margin: 20px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 10%;
  position: relative; /* Add position relative to the header */
}

.logo {
  cursor: pointer;
}

.nav__links {
  list-style: none;
}

.nav__links li {
  display: inline-block;
  padding: 0px 50px;
}

.nav__links li a {
  transition: all 0.3s ease 0s;
  color: #edf0f1;
  display: flex;
  align-items: center; /* Ensures the text and icon are vertically aligned */
  gap: 8px; /* Adds space between the icon and the text */
}

.nav__links li a:hover {
  color: #0088a9;
}

/* Global Icon Styling */
.nav-icon {
  width: 36px; /* Adjust the width to resize the icon */
  height: 36px; /* Ensure the height is consistent */
  vertical-align: middle; /* Aligns the icon with the middle of the text */
}

button {
  padding: 9px 25px;
  background-color: rgba(0, 136, 169, 1);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

button:hover {
  background-color: rgba(0, 136, 169, 0.8);
}

/* Media Queries */
@media only screen and (max-width: 600px) {
  header {
    flex-direction: column;
    align-items: stretch;
  }

  nav {
    margin-top: 10px;
  }

  .nav__links {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .nav__links li {
    margin: 10px 0;
  }
}

/* Dropdown Styles */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background-color: rgba(0, 136, 169, 1);
  border: none;
  border-radius: 50px;
  padding: 9px 25px;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #edf0f1;
  transition: all 0.3s ease 0s;
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background-color: #2c2c2c;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 10px;
}

.dropdown-content a {
  color: #edf0f1;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
  background-color: #444;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: rgba(0, 136, 169, 0.8);
}

h2 {
  background-color: #2c2c2c; /* Set the background color to match the table */
  color: #fff; /* Set the text color for the h2 */
  padding: 10px; /* Adjust the padding as needed */
  border-radius: 10px; /* Set the border-radius to match the table */
}

form {
  margin-top: 20px; /* Adjust the top margin as needed */
}

form label {
  display: block;
  margin: 10px 0; /* Adjust the margin around labels */
  color: #fff; /* Set the text color for labels */
}

form input {
  padding: 10px; /* Adjust the padding for input elements */
  margin-bottom: 10px; /* Adjust the bottom margin for input elements */
  width: 50%; /* Make the input elements full width */
  box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

form p {
  margin: 10px 0; /* Adjust the margin around paragraphs */
  color: #fff; /* Set the text color for paragraphs */
}

.table-container {
  margin: 0 auto;
  width: 70%;
}

/* Table styles */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px; /* Adjust the top margin as needed */
  border-radius: 10px; /* Adjust the value to control the roundness of the corners */
  overflow: hidden; /* Ensure the rounded corners are visible */
}

table img {
  width: 30px;
  height: 30px;
}

table th,
table td {
  padding: 10px;
  border: 1px solid #444; /* Change the border color to match your design */
  background-color: #2c2c2c; /* Set the background color for th and td */
  color: #fff; /* Set the text color for th and td */
}

table th {
  font-weight: bold;
}

/* Customize column widths */
table th:nth-child(1),
table td:nth-child(1) {
  width: 5%; /* Adjust the width for the first column */
  background-color: #333;
  border-top-left-radius: 10px;
}

table th:nth-child(2),
table td:nth-child(2) {
  width: 10%; /* Adjust the width for the second column */
}

table th:nth-child(3),
table td:nth-child(3) {
  width: 5%; /* Adjust the width for the third column */
}

table th:nth-child(4),
table td:nth-child(4) {
  width: 5%; /* Adjust the width for the fourth column */
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

/* New styles for "Items Used" and "Profit" columns */
table th:nth-child(5),
table td:nth-child(5),
table th:nth-child(6),
table td:nth-child(6) {
  width: 5%; /* Adjust the width for the fifth and sixth columns */
}

.membership-note {
  margin-top: 10px; /* Adjust the margin as needed */
  font-size: 14px;
  color: #fff; /* Adjust the color as needed */
  background-color: #2c2c2c; /* Set the background color to match the table */
  padding: 10px; /* Adjust the padding as needed */
  border-radius: 10px; /* Set the border-radius to match the table */
  width: 70%; /* Set the width to match the table */
  margin: 0 auto; /* Center the element */
}

.membership-star {
  width: 20px; /* Set the width of the image as needed */
  height: 20px; /* Set the height of the image as needed */
  margin-right: 5px; /* Adjust the margin as needed */
}

/* Footer Styles */
footer {
  background-color: #2c2c2c;
  color: #ffffff;
  padding: 40px 0;
  text-align: center;
}

.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  border-top: 1px solid #444;
}

.footer-section {
  flex: 1;
  margin: 20px;
  min-width: 250px;
}

.footer-section h2 {
  font-size: 18px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
}

.footer-section ul {
  list-style-type: none;
  padding: 0;
}

.footer-section ul li {
  margin: 10px 0;
}

.footer-section ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #ffd700;
}

.footer-section .social-icons a img {
  width: 24px;
  margin: 0 10px;
  filter: invert(100%);
  transition: filter 0.3s ease;
}

.footer-section .social-icons a:hover img {
  filter: invert(60%);
}

.footer-bottom {
  background-color: #1a1a1a;
  padding: 10px 0;
  border-top: 1px solid #444;
  font-size: 12px;
  color: #888;
}

