/* 
Updated Apr 2026
*/

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: Tahoma, Arial, sans-serif;
        padding-top: 85px;
        background-color: gray;
		background-image: url('marble.jpg');
		background-repeat: repeat;
        display: grid;
        place-items: center;
        min-height: 100vh;
      }
	  
	  h2 {
		  margin-top: 1em;
		  margin-left: 10%;
		  margin-right: 10%;
		  padding: 10px;
		  background-color: silver;
		  font-family: serif;
		  text-align: center;
		  line-height: 1.5;
		  border-radius: 10px;
	  }
	  
	  ul {
		  color: gold;

	  }
	  
	  
	  	  .depot  {
		  font-size: clamp(.9rem, 3vw, 1.2rem);
		  font-family: georgia, serif;
		  color: ghostwhite;
		  line-height: 1.5em;
		  background-color: black;
		  background-image: url('black-granite.jpg');
		  padding: 3em;
		  width: 100%;
		  margin: auto;
		  text-align: center;

	  }

      /* Header */
      header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 85px;
        background: #404040;
        color: white;
		border-bottom: 2px solid silver;
        z-index: 1000;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      }
	  
	  .header-image {
		  display: flex;
		  flex-direction: column;
		  padding: 2em;
		  justify-content: center;
		  align-items: center;
		  color: brown;
		  font-weight: 600;
		  width: 100%;
		  border: 0px solid red;
	  }
	  
	  

      .header-container {
        max-width: 1200px;
        margin: 0 auto;
        height: 100%;
        display: flex;
        align-items: center;
        padding: 0 30px;
        gap: 30px;
        border: 0px solid black;
      }

      /* Left Navigation - Desktop */
      .header-left {
        flex: 1;
        display: flex;
        align-items: center;
      }

      .nav-links {
        display: flex;
        gap: 1rem;
        list-style: none;
      }

      .nav-links a {
        color: #e0e7ff;
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        transition: color 0.3s ease;
      }

      .nav-links a:hover {
        color: #F5F5F5;
      }

      /* Center Logo */
      .header-center {
        flex: 1;
        display: flex;
        justify-content: center;
      }

      .logo {
        font-family: georgia, serif;
        font-size: 40px;
        font-weight: bold;
        letter-spacing: 0px;
        color: white;
      }

      @media (max-width: 768px) {
        .logo {
          font-size: 22px;
        }
      }

      @media (max-width: 480px) {
        .logo {
          font-size: 18px;
        }
      }

      .logo span {
        color: #60a5fa;
      }

      /* Right Button */
      .header-right {
        flex: 1;
        display: flex;
        justify-content: flex-end;
      }

      .btn {
        padding: 10px 20px;
        background-color: silver;
        color: black;
        border: none;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 10px rgba(96, 165, 250, 0.3);
      }
	  
	  .btn a {
		color: black;
		text-decoration: none;
	  }

      .btn:hover {
        background-color: #F5F5F5;
        transform: translateY(-2px);
      }

      /* Hamburger Menu */
      .hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 10px;
      }

      .hamburger span {
        width: 28px;
        height: 3px;
        background-color: white;
        transition: all 0.3s ease;
      }

      /* Mobile Menu */
      .mobile-menu {
        position: fixed;
        top: 85px;
        left: 0;
        width: 100%;
        background-color: gray;
        display: none;
        flex-direction: column;
        padding: 20px 30px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        gap: 20px;
      }

      .mobile-menu a {
        color: #e0e7ff;
        text-decoration: none;
        font-size: 18px;
        font-weight: 500;
        padding: 10px 0;
      }

      /* Responsive */
      @media (max-width: 991px) {
        .nav-links {
          display: none;
        }

        .hamburger {
          display: flex;
        }

        .header-center {
          flex: 2;
        }

        .header-left,
        .header-right {
          flex: 1;
        }

        /* When menu is open */
        .mobile-menu.active {
          display: flex;
        }
      }


	/* tribute-image */ 
	.tribute-image {
      position: relative;
      width: 100%;
      height: 400px; /* Adjust as needed */
      background-image: url('banner-image-gray.jpg'); /* Replace with your image */
      background-size: cover;
      background-position: center;
	  border-bottom: 2px solid silver;
      overflow: hidden;
      display: flex;
      align-items: center;
    }

    .tribute-scroll-text {
      position: absolute;
      bottom: 1px; /* Position from bottom */
      left: 0;
      white-space: nowrap;
      font-size: 2.3rem;
	  font-family: serif;
      color: AliceBlue;
      text-shadow: 2px 2px 8px rgba(0, 0, 0, 1.8);
      padding: 10px 0;
      animation: scroll-left 27s linear infinite;
    }

   @keyframes scroll-left {
      0% {
        transform: translateX(100%);
      }
      100% {
        transform: translateX(-100%);
      }
    }





   New Soldiers 3-Column Grid Block
------------------------------------------------------------------- */
.new-soldiers-grid-container {
  max-width: 800px;
  margin: 40px;
  padding: 0 20px;
}

.new-soldiers-grid {
  display: grid;
  grid-template-columns: 1fr; /* Stacks vertically on mobile phones */
  gap: 25px;
}

.new-soldier-card {
  background-color: #f7f7f7; /* Very light gray block */
  border-left: 4px solid #444444; /* Dark gray tribute accent bar */
  padding: 24px;
  border-radius: 2px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.new-soldier-card h3 {
  margin-top: 0;
  margin-bottom: 4px;
  color: #000000;
  font-size: 1.25rem;
  font-weight: bold;
}

.new-soldier-meta {
  font-style: italic;
  color: #666666;
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.new-soldier-card p {
  color: #222222;
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}

/* Desktop View Breakpoint: Shifts to 3 equal-width side-by-side columns */
@media (min-width: 768px) {
  .new-soldiers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}












      /* Tribute Section */
	 .headstone-banner {
	  display: grid;
	  width: 100%;
      grid-template-columns: repeat(auto-fit, minmax(198px, 1fr));
      gap: 14px;
	  font-family: georgia, serif;
	  font-size: 4rem;
	  color: white;
      padding: 40px 15px 60px;
      background: gray;
      margin-top: 20px;
	  text-align: left;
	  justify-content: center;
	} 
	 	 
	
    .headstone-grid {
	  display: grid;
	  width: 100%;
      grid-template-columns: repeat(auto-fit, minmax(198px, 1fr));
      gap: 14px;
      padding: 40px 15px 60px;
      background: gray;
	  background-image: url('marble.jpg');
	  background-repeat: repeat;
	  margin-left: auto;
      margin-top: 0px;
	  margin-right: auto;
      justify-content: center;
	}

    .headstone {
      width: 100%;
      max-width: 198px;
      height: 98px;
   	  background-image: url('black-granite.jpg');
      color: #e0d8c0;
      border: 2px solid #666;
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      font-family: Georgia, serif;
      font-size: 14.5px;
      line-height: 1.35;
      padding: 8px 6px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
      transition: all 0.25s ease;
      margin: 0 auto;
    }

	.bigtext {
		font-size: 7rem;
		text-align: right;
	}

    .headstone:hover {
      background: #4a4a4a;
      border-color: #b38b5c;
      transform: translateY(-4px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    }

    .headstone:nth-child(odd):hover {
      background: #444444;
    }


    /* Tooltip */
    .tooltip {
      position: relative;
      display: block;
      width: 100%;
      height: 100%;
      color: inherit;
      text-decoration: none;
    }

    .tooltip .custom.info {
      visibility: hidden;
      position: absolute;
      z-index: 200;
      bottom: 110%;
      left: 50%;
      transform: translateX(-50%);
      background: #1f1f1f;
      color: #ddd;
      border: 1px solid #888;
      padding: 14px 16px;
      width: 240px;
      max-width: 92vw;
      font-size: 12px;
      line-height: 1.45;
      box-shadow: 0 6px 20px rgba(0,0,0,0.7);
      border-radius: 4px;
      text-align: left;
      white-space: normal;
    }

    .tooltip:hover .custom.info {
      visibility: visible;
    }


    /* Logo */
    .logo-cell {
      grid-column: 1 / -1;
      display: flex;
      justify-content: center;
      padding-top: 30px;
    }

    @media (min-width: 768px) {
      .headstone-grid {
        padding: 60px 30px;
      }
      .logo-cell {
        grid-column: span 1;
        justify-content: flex-end;
      }
    }




      /* Footer */
      footer {
        background: #404040;
        color: #cbd5e1;
        padding: 4rem 1.5rem 2rem;
		border-top: 2px solid silver;
		width: 100%;
      }
	  .footer-image {
			  display: flex;
		  padding: 1em;
		  justify-content: center;
		  align-items: center;
		  width: 100%;
		  border: 0px solid red;
	  }
      .footer-inner {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }
      @media (min-width: 768px) {
        .footer-inner {
          grid-template-columns: 2fr 1fr 1fr 1.2fr;
        }
      }
      .footer-col h4 {
        color: #f5f5f5;
        margin-bottom: 1.25rem;
        font-size: 1.1rem;
      }
      .footer-col a {
        color: #cbd5e1;
        text-decoration: none;
        transition: color 0.2s;
      }
      .footer-col a:hover {
        color: #f5f5f5;
      }
      .footer-bottom {
        max-width: 1200px;
        margin: 3rem auto 0;
        padding-top: 1.5rem;
        border-top: 1px solid silver;
        text-align: center;
        font-size: 0.85rem;
        color: silver;
      }
  