/* Global styles */
body {
  margin: 0;
  font-family: 'Georgia', serif;
  background-color: #1a1a1a;
  color: #a6a6a6;
  background-image: url('data:image/png;base64,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');
}

.grid-container {
  display: grid;
  grid-template-columns: 200px 1fr;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
  gap: 20px;
}

.header {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #2a0a0a;
  background-image:url('https://www.transparenttextures.com/patterns/soft-kill.png');
  color: #d4a76a;
  padding: 20px;
  text-align: center;
  border-bottom: 3px solid #4a3c31;
  box-shadow: 0 4px 6px -2px #000;
}

.terminal {
  border: 2px solid #4a3c31;
  background-color: #0a0a0a;
  color: #d4a76a;
  padding: 10px;
  margin-bottom: 20px;
  width: 200px;
  font-family: 'Courier Prime', monospace;
}

.glitch {
  font-family: 'Playfair Display', serif;
  font-size: 2em;
  color: #2a0a0a;
  text-shadow: none;
  margin: 0 0 10px 0;
}

.line {
  height: 1px;
  background: rgba(42, 10, 10, 0.3);
  width: 100%;
  margin: 10px 0;
}

.subtitle {
  font-style: italic;
  margin: 0;
}

.fronting-alter {
  margin-top: 20px;
  font-family: 'Special Elite', cursive;
  font-size: 1.2em;
}

#alter-name {
  font-weight: bold;
  color: #8b4513;
}

.header {
  padding: 20px;
  background-color: #2a0a0a;
}
.golden-link {
  color: #d4af37; /* Golden color */
  text-transform: uppercase; /* Uppercase text */
  transition: transform 0.3s ease; /* Smooth transition for scaling */
  text-decoration: none; /* Remove underline */
}

.golden-link:hover {
  transform: scale(1.1); /* Scale up on hover */
}

.paper-note {
  background-color: #f4e6c0;
  color: #2a0a0a;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transform: rotate(-1deg);
  position: relative;
  overflow: hidden; /* Ensure any overflow from the image is hidden */
}
.paper-note h1 {
  position: relative; /* Ensures the image is positioned relative to the title */
  display: inline-block;
}

.paper-note img {
  position: absolute;
  right: -40px; /* Adjust this to position the image horizontally */
  top: 35px;
  width: 100px;
  height: auto;
}

.paper-note::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  width: 30px;
  height: 30px;
  background-color: #d4a76a;
  transform: translateX(-50%) rotate(45deg);
  box-shadow: 0 0 5px rgba(0,0,0,0.3);
}.side-nav {
  background-color: #2a1a0a;
  padding: 20px;
  border-right: 3px solid #d4a76a;
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.7);
  position: relative;
  overflow: hidden;
}

.side-nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('assets/gear-texture.png');
  opacity: 0.1;
  z-index: 0;
}


.side-nav ul {
  list-style-type: none;
  padding: 0;
  position: relative;
  z-index: 1;
}

.side-nav li {
  margin-bottom: 15px;
}

.side-nav a {
  color: #d4a76a;
  text-decoration: none;
  display: block;
  padding: 10px;
  background-color: rgba(84, 50, 20, 0.6);
  border: 1px solid #8b4513;
  border-radius: 5px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
         .postcard {
            width: 300px; /* Adjust size to your preference */
            height: auto;
            border: 5px solid #d2b48c; /* Light tan color for the border */
            box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5); /* Soft shadow to give a 3D feel */
            border-radius: 10px; /* Rounded corners like an old postcard */
            filter: sepia(0.6) contrast(0.8) saturate(0.8); /* Vintage color effect */
            background-color: #fdf5e6; /* Slightly off-white background */
            padding: 10px; /* Adds padding inside the postcard */
            position: relative;
            margin-left: 35%;
            transition: transform 0.2s ease, box-shadow 0.2s ease; /* Smooth hover effect */
            transition: transform 0.2s ease, box-shadow 0.2s ease; /* Smooth hover effect */ 
        }

        .postcard::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://www.transparenttextures.com/patterns/linen.png'); /* Subtle texture pattern */
            opacity: 0.2; /* Makes the texture subtle */
            pointer-events: none;
        }

        .postcard img {
            position: relative;
            width: 100%;
            height: auto;
            display: block;
            border-radius: 5px;
            border: 1px solid #c4a484; /* Small border around the image itself */
        }
        .postcard:hover {
    transform: scale(1.05); /* Slightly enlarge on hover */
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5); /* Optional: glowing effect on hover */
   
  }

      .stamp {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 75%; /* Adjust size if necessary */
    height: 100px;
    background: url('https://i.ibb.co/zSn69T3/image.png'); /* Placeholder for stamp image */
    background-size: cover; /* Ensure the stamp image fills the element */
    border: 1px solid #c4a484;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); /* Adds a little depth to the stamp */
}

.side-nav a::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  width: 20px;
  height: 20px;
  background-color: #d4a76a;
  border-radius: 50%;
  box-shadow: 0 0 5px #ffd700;
}

.side-nav a:hover {
  color: #ffd700;
  background-color: rgba(84, 50, 20, 0.8);
  transform: translateX(5px);
  box-shadow: -3px 3px 5px rgba(0, 0, 0, 0.5);
}

.content {  padding: 20px;
  background-color: #1a1a1a;
}

.blog-posts {
  background-color: #2a0a0a;
  border: 2px solid #d4a76a;
  padding: 20px;
  margin-bottom: 20px;
}

.crow-blog-post {
  background-color: #2a0a0a;
  border: 2px solid #d4a76a;
  padding: 20px;
  margin-bottom: 20px;
}
.crow-blog-post h2 {
  color: #d4a76a;
  border-bottom: 2px solid #4a3c31;
  padding-bottom: 10px;
  margin-bottom: 15px;
}
.crow-blog-post p {
  color: #a6a6a6;
  line-height: 1.6;
}
.crow-images{
      background-color: #2a0a0a;
  background-image: url("https://www.transparenttextures.com/patterns/foggy-birds.png");
  
  }

.crow-blog-post img {
  border-image-source: url('https://w7.pngwing.com/pngs/633/289/png-transparent-wood-frame-background-frame-continental-skin-texture.png');
    border-image-slice: 30%; /* Adjust depending on the texture details */
    border-image-repeat: stretch; /* Stretch the image across the borders */
    border-radius: 15px; /* Optional: Rounded corners for a smoother look */
    box-sizing: border-box; /* Ensures the border is included in the image's total size */
    transition: transform 0.2s ease, box-shadow 0.2s ease; /* Smooth hover effect */
    transition: transform 0.2s ease, box-shadow 0.2s ease; /* Smooth hover effect */ 
}

.crow-blog-post img:hover {
    transform: scale(1.05); /* Slightly enlarge on hover */
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5); /* Optional: glowing effect on hover */
   
  }

.blog-posts h2 {
  color: #d4a76a;
  border-bottom: 2px solid #4a3c31;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.blog-posts p {
  color: #a6a6a6;
  line-height: 1.6;
}

.footer {
  grid-column: 1 / -1;
  background-color: #2a0a0a;
  color: #d4a76a;
  padding: 10px;
  text-align: center;
}

@media (max-width: 768px) {
  .grid-container {
      grid-template-columns: 1fr;
  }

  .side-nav {
      border-right: none;
      border-bottom: 2px solid #4a3c31;
  }
}

#fronting-section {
    margin-bottom: 20px;
}

#fronting-form {
    margin-top: 10px;
}

#new-fronting {
    background-color: #1a1a1a;
    color: #d4a76a;
    border: 1px solid #4a3c31;
    padding: 5px;
    margin-right: 5px;
}

#fronting-form button {
    background-color: #4a3c31;
    color: #d4a76a;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}

#fronting-form button:hover {
    background-color: #5a4c41;
}

#sticker-board {
    margin-bottom: 20px;
}

#sticker-container {
    display: flex; /* Use flexbox for layout */
    flex-wrap: wrap; /* Allow stickers to wrap to the next line */
    position: relative; 
    min-height: 300px; 
    border: 2px dashed #4a3c31; 
    padding: 20px; 
    background-color: rgba(210, 180, 140, 0.2);
}

.sticker {
    max-width: 150px; 
    max-height: 150px; 
    border-radius: 8px; 
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4), 0 0 0 3px rgba(255, 255, 255, 0.1) inset; 
    transform: rotate(var(--rotation)); 
    transition: all 0.3s ease; 
    cursor: pointer; /* Change from move to pointer */
    user-select: none; 
    background-color: rgba(255, 255, 255, 0.9); 
    padding: 5px; 
    border: 1px solid rgba(0, 0, 0, 0.1); 
    filter: saturate(1.2) contrast(1.1); 
    margin: 10px; /* Space between stickers */
}

.sticker:hover {
    transform: scale(1.5); 
    z-index: 10; 
}

#sticker-form {
    margin-top: 10px; 
}


.gcp-container {
  display: flex;
  align-items: center;
  background-color: #2a0a0a;
  border: 2px solid #d4a76a;
  padding: 15px;
  margin: 20px 0;
  border-radius: 5px;
}

.gcp-container iframe {
  margin-right: 15px;
}

.gcp-description {
  font-style: italic;
  color: #d4a76a;
  margin: 0;
}



.friend-banners {
    background-color: #2a0a0a;
    border: 2px solid #d4a76a;
    padding: 20px;
    margin-top: 20px;
}

.friend-banners h2 {
    color: #d4a76a;
    border-bottom: 2px solid #4a3c31;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.banner-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.banner-container a {
    transition: transform 0.3s ease;
}

.banner-container a:hover {
    transform: scale(1.05);
}
  .banner-container img {
      width: 88px;  /* Standard button size */
      height: 31px; /* Standard button height */
      object-fit: cover; /* This ensures the image covers the area without stretching */
      border: 1px solid #4a3c31;
      border-radius: 5px; /* Adds a slight rounded corner for a button-like appearance */
      transition: transform 0.2s ease;
  }

  .banner-container img:hover {
      transform: scale(1.1);
      box-shadow: 0 0 5px rgba(212, 167, 106, 0.7);
  }
 .newspaper {
    background-color: #ffffff;
    background-image: url("https://www.transparenttextures.com/patterns/beige-paper.png");
    border: 1px solid #4a3c31;
    padding: 10px;
    margin-top: 10px;
    font-family: 'Georgia', 'Times New Roman', serif;
    color: #2a0a0a;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    position: relative;
    max-height: 600px; /* Limit height */
    overflow-y: auto; /* Enable scrolling for content */
}

.newspaper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
    background-image: url("https://www.transparenttextures.com/patterns/beige-paper.png");
    background-size: cover;
    opacity: 0.05;
    pointer-events: none;
}
.newspaper-content {
    display: none; /* Initially hidden */
    transition: all 0.3s ease-in-out;
}

.newspaper-title {
    font-size: 2em;
    text-align: center;
    border-bottom: 1px solid #4a3c31;
    padding-bottom: 5px;
    margin-bottom: 10px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Playfair Display', 'Old English Text MT', 'Times New Roman', serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    cursor: pointer; /* Add pointer cursor to indicate clickability */
}

.newspaper-title:hover {
    color: #4a3c31; /* Optional: Change color on hover */
}
.newspaper-title::after{
   content: "Click to expand"; /* Tooltip text */
    position: absolute;
    left: 60%;
    transform: translateX(-50%);
    font-size: 0.2em;
    color: #4a3c31;
    background: #fff;
    padding: 2px 5px;
    border: 1px solid #4a3c31;
    border-radius: 3px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
  }
  .newspaper-title:hover::after {
    opacity: 1; /* Show tooltip on hover */
}

.news-item {
    break-inside: avoid;
    margin-bottom: 10px; /* Reduced spacing between articles */
}

.news-item h3 {
    font-family: 'Libre Baskerville', 'Georgia', serif;
    font-size: 1.2em; /* Reduced size */
    font-weight: 700;
    margin-bottom: 5px; /* Tighter spacing */
}

.news-item p {
    font-family: 'Lora', 'Georgia', serif;
    font-size: 0.9em; /* Reduced font size */
    line-height: 1.5; /* Tighter line spacing */
    letter-spacing: 0.3px;
    text-align: justify;
    text-indent: 15px;
}

.news-item .date {
    font-style: italic;
    font-size: 0.8em; /* Smaller date font */
    margin-top: -5px; /* Adjust spacing */
    margin-bottom: 5px;
    color: #4a3c31;
}

/* Optional: Hide content until title clicked */
.newspaper-content {
    display: none;
    transition: all 0.3s ease;
}

.newspaper-title:hover {
    cursor: pointer;
}

.newspaper-title:active + .newspaper-content,
.newspaper-title:focus + .newspaper-content {
    display: block; /* Reveal content */
}

.journal-entries {
  
    background-color: #ffffff;
    background-image: url("https://www.transparenttextures.com/patterns/60-lines.png");
    border: 2px solid #4a3c31;
    padding: 20px;
    margin-top: 20px;
}
/* Entry content layout */
.entry-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 10px;
  max-height:0px;
  overflow: hidden;
  transition: max-height 0.75s ease; /* Smooth transition */
}
.entry-content.open {
  max-height: 1000px; /* Adjust this to a value large enough to fit the content */
  overflow: visible;
}
.poem-container {
            position: relative;
            background-color: #422820;
            background-image: url('https://www.transparenttextures.com/patterns/black-linen.png');
            padding: 30px;
            max-width: 800px;
            border-radius: 10px;
            border: 2px solid #d4a76a
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
            color: #f5deb3; /* Warm paper-like tone for the text */
            left:10%;
        }
  .poem p {
            line-height: 1.8em; /* Add more space between lines */
            margin: 0;
            margin-bottom: 20px; /* Add space between stanzas */
            text-align: center;
            color: white;
        }

        .poem p:last-child {
            margin-bottom: 0;
        }

        .poem-container h1 {
            text-align: center;
            font-size: 2.5em;
            margin-bottom: 30px;
            color: #f0e6d6;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
        }

/* Text column styling */
.text-column {
  flex: 2;
  padding-right: 20px;
  font-family: 'Courier Prime', monospace;
  line-height: 1.8;
  color: black;
}

/* Postcard column styling */
.postcard-column {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

/* Postcard image and container */
.postcard {
  text-align: center;
  max-width: 250px;
}

.postcard img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Journal entry overall styling */
.journal-entry {
  margin-bottom: 30px;
  border-bottom: 1px solid #4a3c31;
  padding-bottom: 20px;
}

/* Entry header for clickable toggle */
.entry-header {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  transition: background-color 0.3s ease;
}

.entry-header:hover {
  background-color: #f4f4f4;
}

/* Toggle symbol transitions */
.toggle-symbol {
  font-size: 24px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.entry-header.expanded .toggle-symbol {
  transform: rotate(45deg); /* Rotate symbol when expanded */
}

/* Header and paragraph font styles */
.journal-entry h3 {
  color: #000000;
  font-family: 'Special Elite', cursive;
  margin: 0;
}

.journal-entry p {
  font-family: 'Courier Prime', monospace;
  line-height: 1.6;
  color: black;
  margin: 10px 0;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
  .entry-content {
    flex-direction: column;
  }

  .text-column {
    padding-right: 0;
  }

  .postcard-column {
    margin-top: 20px;
  }

  .postcard {
    max-width: 100%;
  }
}

  .typewriter-quote {
      margin-top: 20px;
      padding: 10px;
      background-image: url('assets/aged-paper.jpg');
      background-size: cover;
      border: 1px solid #4a3c31;
      box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  }

  .typewriter-quote p {
      font-family: 'Special Elite', cursive;
      color: #2a0a0a;
      font-size: 16px;
      margin: 0;
      overflow: hidden;
      border-right: .15em solid #2a0a0a;
      white-space: nowrap;
      letter-spacing: .1em;
      animation: 
          typing 3.5s steps(40, end),
          blink-caret .75s step-end infinite;
  }

  @keyframes typing {
      from { width: 0 }
      to { width: 100% }
  }

  @keyframes blink-caret {
      from, to { border-color: transparent }
      50% { border-color: #2a0a0a; }
  }
  #disqus_thread {
    background-color: #f4e6c0;
    background-image: url('assets/aged-paper.jpg');
    background-size: cover;
    border: 3px solid #4a3c31;
    padding: 20px;
    margin-top: 20px;
    font-family: 'Courier Prime', monospace;
    color: #2a0a0a;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
    position: relative;
}

#disqus_thread::before,
#disqus_thread::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background-image: url('assets/gear-icon.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: 2;
}

#disqus_thread::before {
    top: -25px;
    left: -25px;
    transform: rotate(30deg);
}

#disqus_thread::after {
    bottom: -25px;
    right: -25px;
    transform: rotate(-15deg);
}
.site-button-tag {
  width: 176px;
  height: 62px;
  font-size: 15px;
  font-family: 'Playfair Display', serif;
  position: absolute;
  top: 250px;
  right: 20px;
  z-index: 10;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
.site-button {
  width: 176px;
  height: 62px;
  position: absolute;
  top: 300px;
  right: 20px;
  z-index: 10;
  background-color: #8b4513; /* Button background color */
  border: 2px solid #4a3c31; /* Button border color */
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

/* Tape Effect */
.site-button::before,
.site-button::after {
  content: '';
  position: absolute;
  width: 100px; /* Width of the tape */
  height: 12px; /* Height of the tape */
  background-color: rgba(192, 192, 192, 0.9); /* Color of the tape, like duct tape */
  box-shadow: 0 0 3px rgba(0,0,0,0.2); /* Optional shadow for depth */
  z-index: 1; /* Ensure the tape is on top of the button */
}

.site-button::before {
  top: -8px; /* Position above the button */
  left: 38px; /* Center the tape strip on the button */
  transform: rotate(-4deg); /* Slight rotation for natural look */
}

.site-button::after {
  bottom: -8px; /* Position below the button */
  right: 38px; /* Center the tape strip on the button */
  transform: rotate(4deg); /* Slight rotation for natural look */
}


.phoenicia { 
    background-color: #66023c;
    text-align:center;
    color:white;
    
  } 

