html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }
  
  body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  .page-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
    
  /* Header starts here */
  
  .Navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 999;
      background-color: rgba(255,255,255,0.1);
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 1vw;
      height: 30px;
      box-sizing: border-box;
      }
  
  #Navbar-left {
      display: flex;
      justify-content: flex-start;
  }
  
  #Navbar-right {
      display: flex;
      gap: 12px;
  }
  
  #Navbar-home, #Navbar-photos, #Navbar-blogs, #Navbar-diary {
      color: rgb(181, 181, 181);
      font-size: 1.3rem;
      font-family: 'Suisseintl Webxl', Arial, sans-serif; 
      cursor: pointer;
      transition: color 0.2s;
      padding: 8px 10px;
      border-radius: 4px;
      font-weight: 700;
      letter-spacing: -0.08rem;
  }
  
  .links {
    text-decoration: none;
    color: rgb(181, 181, 181);
  }
  
  #Navbar-photos:hover, #Navbar-blogs:hover, #Navbar-diary:hover {
      text-decoration: underline;
      color: #ff5555;
  }
  
  @media (max-width: 768px) {
      .Navbar {
          height: 30px;
          padding: 0 1vw;
      }
      #Navbar-home, #Navbar-photos, #Navbar-blogs, #Navbar-diary {
          font-size: 1.3rem;
          padding: 6px 8px;
      }
      #Navbar-right {
          gap: 8px;
      }
  }
  
  @media (max-width: 480px) {
      .Navbar {
          height: auto;
          padding: 6px 3vw;
      }
      #Navbar-left {
          justify-content: flex-start;
      }
      #Navbar-right {
          justify-content: space-between;
          gap: 2px;
          margin-top: 4px;
      }
      #Navbar-home, #Navbar-photos, #Navbar-blogs, #Navbar-diary {
          font-size: 0.7rem;
          padding: 3px 5px;
      }
  }
  
  
  /* Header Ends here */
  
  
  
    /* footer starts here  */
  
    footer {
      bottom: 0;
      left: 0;
      width: 100%;
      margin-top : auto;
      margin-bottom : 5vh;
      height: fit-content;
      background-color: transparent;
      font-family: 'Suisseintl Webxl', Arial, sans-serif;
      display: flex;
      justify-content : space-between
    }
  
    .footer-left {
      padding-left : 5vw;
    }
  
    .footer-left1 {
          display: flex;
          font-size: clamp(1.2rem, 1.5vw + 0.5rem, 1.8rem); 
      font-weight: 700;
      letter-spacing: clamp(-0.1rem, -0.1vw - 0.05rem, -0.05rem);
    }
    #footer-black {
       color : gray;
       filter: blur(1px);
    }
    #footer-red {
      color : #ff0000e0;
    }
  
    .footer-left-red2 {
      color : #ff0000e0;
      font-size: clamp(1rem, 1.2vw + 0.3rem, 1.5rem); 
      font-weight: 700;
      letter-spacing: clamp(-0.07rem, -0.07vw - 0.02rem, -0.03rem);
    } 
  
    .footer-right {
      padding-right : 5vw;
    }
  
    .footer-right-1 {
      padding-top : 0;
      display: flex;
      flex-direction: column;
      font-size: clamp(1.2rem, 1.5vw + 0.5rem, 1.8rem); 
      font-weight: 700;
      letter-spacing: clamp(-0.1rem, -0.1vw - 0.05rem, -0.05rem);
    }
  
    #footer-right-1-1 {
      display : flex;
      gap : 5px;
      height : fit-content;
      margin-top : -33px;
    }
  
    .footer-links {
      margin-top : -2vh;
      
    }
    .link {
      color: rgb(181, 181, 181);
      font-family: 'Suisseintl Webxl', Arial, sans-serif; 
      cursor: pointer;
      transition: color 0.2s;
      font-size: clamp(1rem, 1.2vw + 0.3rem, 1.5rem); 
      font-weight: 700;
      letter-spacing: clamp(-0.07rem, -0.07vw - 0.02rem, -0.03rem);
      padding-right : 10px;
    }
  
      .link:hover {
          text-decoration: underline;
          color: #ff5555;
      }
  
  
      @media(max-width:600px) {
          footer {
              display : flex;
              flex-direction: column;
          }
          .footer-left {
            display: none;
        }
          .footer-right {
              margin-left : 6vw;
              text-align: right;
          }
          #footer-right-1-1 {
              display : flex;
  
              justify-content: right;
          }
      }
  
    /* footer ends here   */



/*list wrapper starts here*/

.list-wrapper {
  max-width: 800px;
  margin: 4rem auto 2rem auto; 
  padding: 2rem 8rem 2rem 8rem;
  background: #fff;
  border-radius: 12px;
  box-sizing: border-box;
  font-family: 'Suisseintl Webxl', Arial, sans-serif;
}

.list-header {
  margin-bottom: 2.5rem;
  text-align: left;
}

.list-heading {
  font-size: 2rem;
  font-weight: 700;
  text-align : center;
  color: #aa4848;
  margin-bottom: 0.5rem;
  letter-spacing: -0.1rem;
}

.list-description {
  text-align : center;
  font-size: 1.1rem;
  color: gray;
  font-weight: 600;
  letter-spacing: -.08rem;
}

.journal-entries {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  width : 100%;
}


.journal-entry {
  padding: 2rem 2rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(170, 72, 72, 0.08);
  text-align: left;
  width: 100%;
  border: none;
  transition: box-shadow 0.3s ease-in-out; 
}

.journal-entry:hover {
  box-shadow: 0 4px 12px rgba(170, 72, 72, 0.2); 
}



.journal-entry h2 {
  margin: 0 0 0.3rem 0;
  font-size: 1.3rem;
  font-weight:  600;
}

.journal-entry h2 a {
  color:#c36f6f;
  text-decoration: none;
  transition: color 0.18s;
}

.journal-entry h2 a:hover {
  color: #d11a2a;
}

.date {
  font-size: 0.8rem !important;
  color: #888888;
  letter-spacing: -0.05rem;;
  margin-bottom: 1rem;
}

.journal-entry p {
  margin: 0.3rem 0 0.7rem 0;
  color: #333;
  font-size: 1.05rem;
  letter-spacing: -0.05rem;
}

.first-line {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.journal-categories {
  margin-top: 0.2rem;
  text-align: right;
}


.category {
  display: inline-block;
  background: #f3f3f3;
  color: #d11a2a;
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: 3px;
  padding: 0.18em 0.7em;
  margin-right: 0.5em;
  margin-bottom: 0.2em;
  text-transform: lowercase;
}

.cover-link{
  display: block;
  text-decoration: none;
}

.cover-image-container {
  width : 100%;
  padding-top : 56.25%;
  position: relative;
  overflow : hidden;
  margin-bottom: 1rem;
  
}

.cover-image{
  position : absolute;
  top : 0;
  left : 0;
  width: 100%;
  height : 100%;
  object-fit : cover;
  border-radius : 2%;

  transition: transform 0.4s ease-in-out;
}

.cover-link:hover .cover-image{
  transform : scale(1.08);
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .list-wrapper {
    max-width: 97vw;
    padding: 1.2rem 1rem;
    margin: 2.5rem 1vw 1.5rem 1vw;
  }
}

@media (max-width: 600px) {
  .list-wrapper {
    padding: 0.7rem 0.2rem;
    margin: 1.2rem 0 1rem 0;
    border-radius: 0;
  }
  .list-heading {
    font-size: 1.3rem;
  }
  .list-description {
    font-size: 0.95rem;
  }
  .journal-entry {
    padding: 0.8rem 0.5rem;
  }
  .journal-entry h2 {
    font-size: 1.05rem;
  }
  .journal-entry p {
    font-size: 0.96rem;
  }
}

  
/*list wrapper ends here*/
