/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

   .copyleft {
    display: inline-block;
    transform: rotate(180deg);
  }
  
     body {
      background-color: #0f130b;
      background-image: url('../images/bg_hikingShoes.png');
      background-position: top;
      background-repeat: no-repeat;
      background-attachment: fixed;
      font-size: 20px;
      font-family: "Times New Roman";
      margin: 0;
    }
    
    p {
      line-height: 1.5em; /*I find the default HTML line-height tends to be a bit claustrophobic for main text*/
    }
    
    img {
      max-width: 100%;
      height: auto;
      margin-top: 0.5em;
      margin-bottom: 0.5em;
    }
    .right {
      float: right;
      margin-left: 1em;
    }
    .left {
      float: left;
      margin-right: 1em;
    }
    .center {
      display: block;
      margin-right: auto;
      margin-left: auto;
      text-align: center;
    }
    @media only screen and (min-width: 600px) {
      .small {
        max-width: 60%;
        height: auto;
      }
    }
    .caption {
      margin-top: 0;
      font-size: 0.9em;
      font-style: italic;
    }
    
    a:hover { 
      background-color: #eecdc2;
    }
    
    h1, h2, h3, h4, h5 {
      color: #714e54;
      font-family: Arial, Helvetica, sans-serif;
    }
    
    /*#CONTAINER is the rectangle that contains everything but the background!*/
    #container {
      margin: 3em auto;
      width: 90%;
      max-width: 700px;
      background-color: #efefef;
      color: #353535; 
      outline-color: #c1c0b5;
      outline-style: ridge;
      outline-width: 4px;
      outline-offset: 0;
    }
    
    #content {
      padding: 10px 5% 20px 5%;
    }
    
    
    /*HEADER STYLE*/
    #header {
      position: relative;
      background-color: #563d41;
      padding: 0 5%;
      border-color: #c1c0b5 ;
      border-style: ridge;
      border-width: 0 0 4px 0;
    }
    #header ul {
      list-style-type: none;
      padding: 0.5em 0;
      margin: 0;
    }
    #header li {
      font-size: 1.2em;
      display: inline-block;
      margin-right: 1.5em;
      margin-bottom: 0.2em;
      margin-top: 0.2em;
    }
    #header li a {
      color: white;
      text-decoration: none;
      background-color: inherit;
    }
    #header li a:hover {
      text-decoration: underline;
    }
    
    /*Floating Logo*/
    #header:after {
        position: absolute;
        right: 10px;
        top: -10px;
        content: '';
        background-image: url('/images/zoneletslogo.png');
        background-repeat: no-repeat;
        pointer-events: none;
        width: 48px;
        height: 48px;
        overflow:hidden;
    }
    
    /*POST LIST STYLE*/
    #postlistdiv ul {
      font-size: 1.2em;
      padding: 0;
      list-style-type: none;
    }
    #recentpostlistdiv ul {
      font-size: 1.2em;
      padding: 0;
      list-style-type: none;
    }
    .moreposts {
      font-size: 0.8em;
      margin-top: 0.2em;
    }
    
    /*NEXT AND PREVIOUS LINKS STYLE*/
    #nextprev {
      text-align: center;
      margin-top: 1.4em;
    }
    
    /*DISQUS STYLE*/
    #disqus_thread {
      margin-top: 1.6em;
    }
    
    /*FOOTER STYLE*/
    #footer {
      font-size: 0.8em;
      padding: 0 5% 10px 5%;
    }
  /* Story page styles */
  .story-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    line-height: 1.8;
    font-size: 18px;
  }
  
  .story-title {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 10px 0;
    text-align: center;
    line-height: 1.2;
  }
  
  .story-author {
    font-size: 18px;
    color: #64748b;
    text-align: center;
    margin: 0 0 8px 0;
    font-style: italic;
  }
  
  .story-meta {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #64748b;
  }
  
  .story-date {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 10px;
  }
  
  .story-tags {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
  }
  
  .story-tag {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #3b82f6;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #3b82f6;
  }
  
  .author-note {
    background: #f8fafc;
    border-left: 4px solid #3b82f6;
    padding: 15px 20px;
    margin: 20px 0 30px 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #475569;
  }
  
  .author-note p {
    margin: 0;
    line-height: 1.6;
  }
  
  .story-divider {
    border-bottom: 1px solid #64748b;
    margin: 20px 0;
    height: 1px;
    width: 100%;
  }
  
  .story-text {
    text-align: justify;
    margin-bottom: 30px;
  }
  
  .story-text p {
    margin-bottom: 20px;
    text-indent: 0;
  }
  
  .story-break {
    text-align: center;
    margin: 30px 0;
    font-size: 1.2em;
    letter-spacing: 0.5em;
  }
  
  .back-link {
    display: inline-block;
    margin-top: 40px;
    padding: 10px 20px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    text-decoration: none;
    color: #3b82f6;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .back-link:hover {
    background: #3b82f6;
    color: white;
    text-decoration: none;
  }
  
  @media (max-width: 768px) {
    .story-content {
      padding: 15px;
      font-size: 16px;
    }
    
    .story-title {
      font-size: 28px;
    }
    
    .story-text {
      text-align: left;
    }
  }
  