html {
  scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #0e0e0e;
    color: #e0f7fa;
}
.container {
    padding: 2rem;
    max-width: 800px;
    margin: auto;
}
section {
    margin-bottom: 3rem;
}
.hero h1 {
    font-size: 2.5rem;
    color: #00ffff;
}
.hero h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
button {
    background-color: #00bcd4;
    color: black;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
button:hover {
    background-color: #0097a7;
}
input[type="email"] {
    padding: 0.5rem;
    width: 60%;
    margin-right: 0.5rem;
    border-radius: 4px;
    border: 1px solid #00ffff;
}
footer {
    font-size: 0.8rem;
    color: #b0bec5;
    border-top: 1px solid #444;
    padding-top: 1rem;
}
.journal-preview blockquote {
    font-style: italic;
    background: #1c1c1c;
    padding: 1rem;
    border-left: 4px solid #00bcd4;
}
/* Ensure input field inline in Mailchimp also matches your text inputs */
input[type="submit"].button {
    background-color: #00bcd4;
    color: black;
    padding: 10px;
    margin-top: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
input[type="submit"].button:hover {
    background-color: #0097a7;
}
/* Make Mailchimp submit match site button style */
#mc_embed_signup input[type="submit"].button,
#mc_embed_signup input[type="submit"] {
  background-color: #00bcd4;  /* or replace with your main button color */
  color: black;
  padding: 0.75em 1.5em;
  border: none;
  border-radius: 6px;
  font-size: 1em;
  font-family: inherit;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

/* Hover / focus state */
#mc_embed_signup input[type="submit"].button:hover,
#mc_embed_signup input[type="submit"]:hover,
#mc_embed_signup input[type="submit"].button:focus,
#mc_embed_signup input[type="submit"]:focus {
  background-color: var(--btn-bg-hover, #0097a7);  /* adjust to your hover color */
}

/* Ensure input field in Mailchimp also matches your text inputs */
#mc_embed_signup input[type="email"] {
  font-family: inherit;
  font-size: inherit; /* 1em;*/
  /* font-size: 1em;*/
  padding: 0.6em;
  border-radius: 4px;
  border: 1px solid #ccc;  /* or match your site’s input border */
}

/* Stories from the Fog styling */
.stories {
    background: #1a1a1a;
    padding: 1.5rem;
    border-left: 4px solid #00bcd4;
    border-radius: 8px;
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.stories h3 {
    color: #00ffff;
    margin-bottom: 0.5rem;
}
.stories p {
    margin-bottom: 1rem;
}
/* for Button from legacy style_fs.css */
.button {
    background-color: #00bcd4;
    color: black;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.button:hover {
    background-color: #0097a7;
}

/* Ensure anchor buttons look consistent */
a.button {
    text-decoration: none;
    display: inline-block;
}

/* 3 Column Footer */
.footer {
  background-color: #111827;
  color: #d1d5db;
  padding: 20px 40px;
  font-size: 0.9rem;
}

.footer a {
  color: #d1d5db;
  text-decoration: none;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid #374151;
  padding-top: 1rem;
}

.footer-column {
  flex: 1;
  text-align: left;
}

.footer-column.center {
  text-align: center;
}

.footer-column.right {
  text-align: right;
}

@media (max-width: 768px) {
  .footer-columns {
    flex-direction: column;
    text-align: center;
  }

  .footer-column,
  .footer-column.center,
  .footer-column.right {
    text-align: center;
  }
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 1.5em;
  /* border-top: 1px solid #222; */
  padding-top: 1em;
  font-size: 0.9em;
  color: #999;
}

.footer-bottom div {
  flex: 1;
  text-align: center;
  min-width: 120px;
  padding: 0.5em;
}

.footer-bottom a {
  color: #999;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Logo */
.logo-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 40px; /* Adjust as needed */
  width: auto;
}
.site-title {
  font-size: 2rem; /* Match your brand */
  margin: 0;
}

/* For Dark Background */
body.dark-bg {
  background-color: #000; /* or #111 for dark gray */
  color: #fff;
}

/* Feedback */
.feedback-container {
  max-width: 600px;
  margin: 4rem auto;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.feedback-container h1 {
  text-align: center;
  margin-bottom: 1rem;
  color: #111;
}

.feedback-container p {
  text-align: center;
  margin-bottom: 2rem;
  color: #555;
}

.feedback-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feedback-form input,
.feedback-form textarea {
  padding: 0.8rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.feedback-form textarea {
  min-height: 150px;
  resize: vertical;
}

.feedback-form button {
  padding: 0.8rem;
  font-size: 1rem;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.feedback-form button:hover {
  background-color: #222;
}

/* Back To Top */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  background-color: #222;
  color: white;
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 16px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
#backToTop.show {
  opacity: 0.8;
  visibility: visible;
}
#backToTop:hover {
  opacity: 1;
}

.button,
button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #00bcd4; /* or use your theme color */
  color: black;
  text-decoration: none;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-family: inherit;
  transition: background-color 0.2s ease;
}

.button:hover,
button:hover {
  background-color: #0097a7; /* Darker shade on hover */
}
