
/* realrespite.ai | Real Respite shared stylesheet */
/* Old-school layout, modern responsive */

:root {
  --teal: #1E6F6B;
  --coral: #E89B7A;
  --mist: #FAFDFD;
  --slate: #374746;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background-color: var(--mist);
  color: var(--slate);
  line-height: 1.6;
}

header, footer {
  background-color: var(--mist);
  padding: 1em;
  border-bottom: 1px solid var(--teal);
}

header h1 {
  margin: 0;
  color: var(--teal);
  font-size: 1.8em;
  text-align: left;
}

nav {
  text-align: right;
}

nav a {
  color: var(--teal);
  text-decoration: none;
  margin: 0 0.5em;
}

nav a:hover {
  color: var(--coral);
}

main {
  padding: 2em;
  max-width: 800px;
  margin: auto;
}

footer {
  text-align: center;
  border-top: 1px solid var(--teal);
  font-size: 0.9em;
  margin-top: 2em;
  padding: 1em 0;
}

button {
  background-color: var(--teal);
  color: white;
  border: none;
  padding: 0.8em 1.5em;
  margin: 1em;
  cursor: pointer;
  font-size: 1em;
  border-radius: 4px;
}

button:hover {
  background-color: var(--coral);
}


.screenshot-container {
  width: 75vw;          /* 75% of the viewport width on desktop */
  max-width: 1000px;    /* Keeps screenshots from becoming too huge on large monitors */
  margin: 0 auto;       /* Center horizontally */
}

.screenshot-container img {
  width: 100%;          /* Scale image to container */
  height: auto;
  display: block;
  border-radius: 8px;   /* Optional: looks nicer */
}

/* Mobile responsiveness */
@media (max-width: 600px) {
  .screenshot-container {
    width: 95vw;        /* Nearly full width, but with some padding */
    max-width: none;    /* Let it fill the viewport */

@media (max-width: 600px) {
  nav {
    text-align: center;
  }
  header h1 {
    text-align: center;
  }
}
