/* Define color variables for light and dark themes */
:root {
    --background-color: #fdfdfd;
    --text-color: #333;
    --input-background: #fff;
    --input-border: #ddd;
    --button-background: #333;
    --button-text-color: #fff;
    --button-hover: #555;
    --message-color: #333; /* Green color for success */
  }
  
  /* Default (Light Mode) */
/* Default (Light Mode) */

  /* Dark mode color variables */
  @media (prefers-color-scheme: dark) {
    :root {
      --background-color: #333;
      --text-color: #eee;
      --input-background: #333;
      --input-border: #555;
      --button-background: #eee;
      --button-text-color: #222;
      --button-hover: #ccc;
      --message-color: #fff; /* A softer green for success in dark mode */
    }
  }

/* Wrapper for the subscription section */
.subscribe-wrapper {
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: left;
    background-color: var(--background-color);
    color: var(--text-color);
  }
  
  /* Header styling */
  .subscribe-header {
    font-size: 2em;
    font-weight: 700;
    color: var(--text-color);
    margin-top: 0;
    margin-bottom: 15px;
    padding: 0;
  }
  
  /* Inline form styling */
  .subscribe-form-inline {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
  }
  
  /* Input field styling */
  .subscribe-input-inline {
    width: 60%;
    padding: 10px;
    font-size: 1em;
    background-color: var(--input-background);
    color: var(--text-color);
    border: 1px solid var(--input-border);
    border-radius: 4px;
    outline: none;
    box-sizing: border-box;
  }
  
  /* Button styling */
  .subscribe-button-inline {
    background-color: var(--button-background);
    color: var(--button-text-color);
    padding: 10px 20px;
    font-size: 1em;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .subscribe-button-inline:hover {
    background-color: var(--button-hover);
  }
  
  /* Message styling */
  .subscribe-message-inline {
    font-size: 1em;
    color: var(--message-color);
    margin-top: 15px;
  }


/* Portrait styling */
.portrait-container {
  display: flex;
  justify-content: left;
  margin: 2rem 0;
}

.portrait-image {
  max-width: 350px;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}