:root {
    --stripe-light: #3b72a0;
    --stripe-dark:  #336092;
    --nav-height:   4rem;
    --gap:          1.5rem;
  }
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    min-height: 100vh;
    font-family: 'Open Sans', sans-serif;
    background: repeating-linear-gradient(
      90deg,
      var(--stripe-light) 0,
      var(--stripe-light) 4px,
      var(--stripe-dark) 4px,
      var(--stripe-dark) 8px
    );
    color: #333;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  .site-header {
    top: 0;
    background: rgba(255,255,255,0);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
    padding: 3rem 0;
    font-size: large;
  }

  .nav-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
    text-align: center;
    max-width: 1100px; /* Match .page-wrapper */
    width: 100%;
    margin-top: 1.5rem;
  }
  
  @media (min-width: 768px) {
    .nav-inner {
      max-width: 1100px;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      text-align: left;
      padding: 0 2.5rem;
    }
  }

  @media (max-width: 768px) {
    .nav-inner {
      margin-top: rem;
      margin-bottom: 4rem;
    }
  }


  .site-nav a {
    margin-left: var(--gap);
    font-family: 'Fjalla One', sans-serif;
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  
  .site-nav a.active {
    color: white; /* Light gray for the active link */
  }
  
  .logo {
    font-family: 'Fjalla One', sans-serif;
    font-weight: normal;
  }
  
  .logo a {
    color: white;
    font-weight: bold;
  }
  
  .tagline {
    font-style: italic;
    color: white;
  }
  
  .site-nav a {
    margin-left: var(--gap);
    font-family: 'Fjalla One', sans-serif;
  }
  
  .layout {
    display: grid;
    grid-template-columns: 250px 1fr 250px; /* equal sidebars, fixed width */
    gap: var(--gap);
    padding: var(--gap);
    align-items: start;
  }
  
  .layout {
    display: grid;
    grid-template-columns: 250px 1fr 250px; /* Desktop: fixed-width sidebars */
    gap: var(--gap);
    padding: var(--gap);
    align-items: start;
  }
  
  /* Stack sidebars on mobile */
  @media (max-width: 768px) {
    .layout {
      grid-template-columns: 1fr; /* One column */
      grid-template-areas:
        "left"
        "right"
        "main";
    }
  
    .col.sidebar:first-of-type {
      grid-area: left;
    }
  
    .col.sidebar:last-of-type {
      grid-area: right;
    }
  
    .col.content {
      grid-area: main;
    }
  }
  
  .col {
    background: white;
    padding: var(--gap);
    border-radius: 8px;
  }
  
  .content h2 {
    font-family: 'Fjalla One', sans-serif;
    margin-bottom: 0.5rem;
    font-weight: normal;
  }
  
  .sidebar h2 {
    font-family: 'Fjalla One', sans-serif;
    margin-bottom: 0.5rem;
    font-weight: normal;
  }
  
  .search-box form {
    margin-bottom: 1.5rem;
  }
  
  .search-box input[type="search"] {
    flex: 1;
    padding: 0.4rem;
    border: 1px solid #ccc;
    border-radius: 4px 0 0 4px;
  }
  
  .search-box button {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem; /* Adjust spacing as needed */
    margin-top: 0.5rem;
  }
  
  .site-footer {
    text-align: center;
    padding: var(--gap);
    font-size: 0.9rem;
    color: white;
  }

  .page-wrapper {
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  @media (min-width: 768px) {
    .page-wrapper {
      max-width: 1100px;
    }
  }

  .site-poll {
    margin-top: 1.5rem;
  }

  @media (max-width: 768px) {
  body {
    margin-top: 1.5rem;
  }
}

/* General form input styles */
input[type="text"],
input[type="search"],
input[type="email"],
input[type="password"],
textarea,
select {
  width: 100%;
  padding: 0.6rem 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
}

/* Focus state */
input[type="text"]:focus,
input[type="search"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border-color: #337ab7;
  box-shadow: 0 0 0 3px rgba(51, 122, 183, 0.2);
  outline: none;
}

/* Modern button style */
button,
input[type="submit"] {
  background-color: #337ab7;
  color: white;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  font-family: inherit;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

/* Hover/focus effects for buttons */
button:hover,
input[type="submit"]:hover,
button:focus,
input[type="submit"]:focus {
  background-color: #285f8f;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.tweet-button {
  background-color: #337ab7;
  color: white;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  font-family: inherit;
  display: inline-block;
  text-align: center;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.tweet-button:hover,
.tweet-button:focus {
  background-color: #285f8f;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  outline: none;
}

.poll-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem; /* Adjust spacing as needed */
    margin-top: 0.5rem;
  }
  
.out-of-stock {
    color:red;
    font-size: x-large;
}

ul {
    padding-left: 30px;
  }

  .project img {
    width: 100%;
    height: auto;
    border-radius: 6px; /* Optional: for a cleaner look */
    display: block;     /* Removes any inline whitespace */
    margin-top: 0.5rem; /* Optional: add space above image */
  }

  @media (max-width: 767px) {
    body {
      margin-top: 4.5rem; /* or whatever spacing you want */
    }
  }