body {
  font-family: "Montserrat", sans-serif;
  background-color: #0f1923;
  color: #c8c8c8;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  box-sizing: border-box;
  position: relative;
  align-items: center;
  background-image: linear-gradient(
      to right,
      rgba(50, 63, 75, 0.1) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, rgba(50, 63, 75, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  padding-bottom: 60px; /* Adjust this value based on your footer's height */
}

.container {
  max-width: 1200px;
  width: 90%;
  margin: 20px auto;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

header {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
  border-bottom: 2px solid #e34457;
}

.left-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 180px;
}

.left-header img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #e34457;
  box-shadow: 0 0 10px rgba(227, 68, 87, 0.5);
}

.subdomain-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.subdomain-buttons button {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.05em;
  background-color: #1a2a3c;
  color: #c8c8c8;
  border: 1px solid #323f4b;
  padding: 10px 15px;
  border-radius: 3px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out,
    padding-left 0.2s ease-in-out;
  text-align: center;
  text-transform: uppercase;
  font-size: 0.95em;
}

.subdomain-buttons button a {
  text-decoration: none;
  color: inherit;
  display: block;
  width: 100%;
  height: 100%;
  text-align: left;
  padding-left: 15px;
  box-sizing: border-box;
}

.subdomain-buttons button:hover {
  background-color: #e34457;
  border-color: #00bcd4;
  padding-left: 20px;
}

.right-header {
  flex-grow: 1;
  padding-left: 30px;
}

.right-header h1 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.2em;
  font-size: 3em;
  margin-bottom: 10px;
  color: #f04a5f;
  text-transform: uppercase;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.right-header .bio {
  line-height: 1.7;
  margin-bottom: 25px;
  border-left: 3px solid #00bcd4;
  padding-left: 15px;
}

.right-header .about-me {
  line-height: 1.8;
  padding-bottom: 40px;
}

.right-header .about-me h2 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.15em;
  font-size: 2em;
  color: #00bcd4;
  margin-bottom: 18px;
  border-bottom: 2px solid #00bcd4;
  padding-bottom: 10px;
  text-transform: uppercase;
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0f1923;
  border-top: 2px solid #e34457;
  padding: 15px 30px;
  z-index: 100;
}

.left-footer a#email-button.chat-button {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.1em;
  font-size: 1.1em;
  text-transform: uppercase;
  background-color: #1a2a3c;
  color: #c8c8c8;
  border: 1px solid #323f4b;
  padding: 12px 20px;
  border-radius: 3px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  text-decoration: none;
  display: inline-;
}
footer .right-footer {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 20px !important;
}

.right-footer .audio-info {
  color: #c8c8c8;
  font-size: 0.9em;
  display: inline-block !important;
  margin-bottom: 0 !important;
}

/* Basic styles for smaller screens (up to 768px wide) */
@media (max-width: 768px) {
  .container {
    width: 95%; /* Take up more width on smaller screens */
    margin: 10px auto; /* Adjust margins */
    padding-bottom: 100px; /* Add this line */
  }

  header {
    flex-direction: column; /* Stack header elements vertically */
    align-items: center; /* Center items in the header */
    padding: 15px; /* Adjust padding */
  }

  .left-header {
    width: 100%; /* Take full width */
    align-items: center; /* Center the image and buttons */
    margin-bottom: 20px; /* Add space below the image/buttons */
  }

  .left-header img {
    width: 120px; /* Slightly smaller profile image */
    height: 120px;
    margin-bottom: 10px;
  }

  .subdomain-buttons {
    flex-direction: row; /* Display buttons in a row */
    flex-wrap: wrap; /* Allow buttons to wrap to the next line if needed */
    justify-content: center; /* Center the buttons horizontally */
    gap: 5px; /* Reduce gap between buttons */
    width: 100%;
  }

  .subdomain-buttons button {
    font-size: 0.85em; /* Slightly smaller font for buttons */
    padding: 8px 12px; /* Adjust button padding */
    margin-bottom: 5px; /* Add a little space below each button */
    flex-grow: 1; /* Allow buttons to take equal width */
  }

  .subdomain-buttons button a {
    text-align: center; /* Center text within the button */
    padding-left: 0; /* Remove left padding */
  }

  .right-header {
    padding-left: 0; /* Remove left padding */
    text-align: center; /* Center align text in the right header */
  }

  .right-header h1 {
    font-size: 2.5em; /* Slightly smaller heading */
    margin-bottom: 8px;
  }

  .right-header .bio {
    border-left: none; /* Remove left border */
    padding-left: 0; /* Remove left padding */
    line-height: 1.6;
  }

  .right-header .about-me h2 {
    font-size: 1.8em; /* Slightly smaller subheading */
    padding-bottom: 8px;
  }

  footer {
    flex-direction: column; /* Stack footer elements vertically */
    align-items: center; /* Center items in the footer */
    padding: 15px; /* Adjust footer padding */
    text-align: center; /* Center text in the footer */
  }

  footer .left-footer,
  footer .right-footer {
    width: 100%; /* Take full width in the footer */
    margin-bottom: 10px; /* Add some space between footer sections */
    display: flex !important; /* Ensure flex display */
    flex-direction: column !important; /* Stack items in left and right footers */
    align-items: center !important; /* Center items in left and right footers */
    gap: 10px !important; /* Add gap between items in footer sections */
  }

  footer .right-footer .audio-info {
    font-size: 0.85em; /* Slightly smaller font in audio info */
  }
}

/* Further adjustments for even smaller screens (e.g., phones) */
@media (max-width: 480px) {
  .right-header h1 {
    font-size: 2em; /* Even smaller heading for very small screens */
  }

  .subdomain-buttons {
    flex-direction: column; /* Stack buttons vertically on very small screens */
  }

  .subdomain-buttons button {
    font-size: 0.9em; /* Adjust button font size */
    padding: 10px 15px; /* Adjust button padding */
  }
}
