@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;600;700&display=swap");
html, body {
  font-family: "Ubuntu", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

/* Dynamic background will be set by JavaScript */
html {
  background-color: var(--primary-bg, #000000);
}

body {
  background-color: var(--primary-bg, #000000);
  color: var(--primary-text, white);
}

/* Mobile-only adjustments */
@media (max-width: 767px) {
  .mobile-text {
    font-size: 1.125rem; /* Slightly smaller than desktop */
    line-height: 1.6;
  }
  .mobile-padding {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
/* Modal styles for broken telephone image */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 80%;
  border-radius: 8px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.5);
}

#caption {
  margin: auto;
  display: block;
  width: 80%;
  text-align: center;
  color: var(--primary-text, #fff);
  padding: 10px 0;
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: var(--primary-text, #fff);
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s;
}

.close:hover {
  color: var(--primary-hover, #bbb);
}

/* Mobile-specific modal adjustments */
@media (max-width: 768px) {
  .modal {
    padding-top: 60px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .modal-content {
    max-width: 95%;
    max-height: 70%;
  }
  #bloatFreeModal .modal-content {
    max-width: 90%;
    padding: 1.5rem;
  }
  #bloatFreeModal .modal-content .text-lg {
    font-size: 1rem;
    line-height: 1.5;
  }
  .close {
    top: 10px;
    right: 20px;
    font-size: 30px;
  }
}

/*# sourceMappingURL=main.css.map */