@font-face {
    font-family: 'RHEINMETALL-body';
    src: url('/static/fonts/1952 RHEINMETALL.ttf') format('truetype');

}

@font-face {
    font-family: 'Label-Reversed';
    src: url('/static/fonts/Impact Label Reversed.ttf') format('truetype');

}

@font-face {
    font-family: 'Label';
    src: url('/static/fonts/Impact Label.ttf') format('truetype');
 
}


body {
margin: 0;
padding: 0;
width: 100%;
overflow-x: hidden;
font-family: 'RHEINMETALL-body', sans-serif;
}


h1 {
  font-family: 'Label', sans-serif;
  font-size: 4em;
}
h2{
  text-decoration: none;
  color: #fff;
  margin: 0; /* Removes default margins */
  font-family: 'Label-Reversed', sans-serif;
  font-size: 48px; 
       
}



h3 {
margin-left: 0%;
margin-right: 10%;
margin-top: 1%;
margin-bottom: 1%;
    font-size: 24px;
    font-family: 'Label-Reversed', sans-serif;
}

/* Style for the clickable h3 links */
h3.clickable{
    color: #000;
    text-decoration: none;
    font-family: 'Label-Reversed', sans-serif;
    margin-left: 10%;


}

/* Hover effect for the clickable h3 links */
h3.clickable:hover {
    font-family: 'Label', sans-serif;
  color: #000;
    text-decoration: underline;

}

/* Standard h3 title styles (if needed) */

@media(max-width: 480px){
h3{
/*    margin-top: 128px;*/

}    
}

p {
  margin-left: 32px;
margin-right: 32px;
}





/*#### HEADER AND FOOTER #####*/

/*## MENU BAR*/
ul {
  list-style-type: none;
/*  height: 64px;*/
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #000;
}

li {
  float: left;
}

li a {
  display: block;
  color: white;
  text-align: center;
  padding: 20px 20px;
  text-decoration: none;
  text-transform: uppercase;
  font-family: 'Label-Reversed', sans-serif;
  font-size: 20px;
  font-weight: bold;
}

li a:hover:not(.active) {
  background-color: #fff;
  color: #000;
}

.about-button {
  background-color: #000;
  color: #fff;
  margin-right: 64px;
}

.shop-button {
  background-color: #fff;
  color: #000;
}

li a.logo-link {
    width: 64px;
    height: 64px;
    margin-left: 32px;
    background-color: #fff;
    padding: 0px;
}

/*#### TEXT BOX #####*/


.text-box{
margin-left: 0%;
margin-right: 0%;
font-family: 'Label', sans-serif;
font-size: 24px;
color: #fff;
background-color: #000;
padding-top: 8px;
padding-bottom: 8px;
}

@media(max-width:480px){
  .text-box h3{
    font-size: 16px;
    padding-top: 0px;
padding-bottom: 0px;
  }


.text-box ul {
    list-style-type: square; /* Or 'circle', 'square', 'none' depending on the desired bullet style */
    padding-left: 5%;
    margin: 0; 
    background-color: #000;
  }

.text-box ul li {

  color: #fff;
  padding-left: 2%;
  padding-right: 10%;
  padding-bottom: 16px;
  font-size: 12px;
  font-family: 'RHEINMETALL-body', sans-serif;

     }
}

/*###################*/
.text-box-gallery {
  background-color: #000; /* Light grey background */
  border: 1px solid #000; /* Light grey border */
  border-radius: 4px; /* Rounded corners */
  padding: 8px; /* Space inside the box */
  margin: 0px 0; /* Space outside the box */
  color: #fff; /* Dark grey text */
  font-size: 16px; /* Standard text size */
  line-height: 1.6; /* Slightly more space between lines of text */
}
/*###### footer ##################################*/
.site-footer {
    width: 100%;
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 64px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-links a,
.social-links a {
    color: #fff;
    margin: 10px 10px;
    text-decoration: none;
    font-size: 16px;
    background-color: #000;
    font-family: 'Label-Reversed', sans-serif;
}

.social-links a:hover,
.footer-links a:hover {
    text-decoration: underline;
    font-family: 'Label', sans-serif;
}

.footer-content p {
    margin-top: 20px;
    font-size: 12px;
}

/*##########################*/






/*###### SCROLLING TEXT BANNER ######*/

.full-width-banner {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 32px;
  margin-bottom: 0px;
  padding-top: 8px;
  padding-bottom: 8px;
  
}

.full-width-banner::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: url('/static/images/HEADER_IMAGE02.png') center center;
  background-size: cover;
  filter: blur(6px);
  z-index: -1;
  background: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 1) 100%), url('/static/images/HEADER_IMAGE02.png');background-size: cover;
}


@keyframes scrollText {
  from {
    left: 100%;
  }
  to {
    left: -100%;
  }
}
.scrolling-text {

  display: inline-block;
  position: relative;
  left: 100%;
  animation: scrollText 60s linear infinite;
  color: #fff;
  background-color: #000;
  padding: 8px;
  font-size: 12px;
}

@media(max-width: 480px){
  .scrolling-text {

  display: inline-block;
  position: relative;
  left: 100%;
  animation: scrollText 60s linear infinite;
  color: #fff;
  background-color: #000;
  padding: 6px;
  font-size: 8px;
}
}







/* #### PAGE MAIN TITLE #### */
.page-title {
  display: inline-block;
  background-color: black;
  padding-left: 96px;
  padding-right: 32px;
  padding-top: 8px;
  padding-bottom: 8px;
  margin-top: 0px;
  margin-bottom: 64px;
}
@media (max-width: 640px){
  .page-title h2 {
  display: inline-block;
  background-color: black;
  padding-left: 16px;
  padding-right: 8px;
  padding-bottom: 0px;
  font-size: 20px;
  font-family: 'Label-Reversed', sans-serif;
  margin-bottom: 0px;
}
  .page-title h3 {
  display: inline-block;
  background-color: black;
  padding-left: 16px;
  padding-right: 8px;
  padding-bottom: 0px;
  font-size: 10px;
  font-family: 'Label-Reversed', sans-serif;
  margin-bottom: 0px;
}
}

.page-body p {
  padding-left: 10%; /* Adjust percentage based on your design */
  padding-right: 10%;
  padding-bottom: 32px; /* You might keep bottom padding less variable */

}

/* Adjustments for smaller screens */
@media (max-width: 1024px) {
  .page-body p {
    padding-left: 5%; /* Less padding on medium screens */
    padding-right: 5%;
  }
}

@media (max-width: 768px) {
  .page-body p {
    padding-left: 3%; /* Even less padding on small screens */
    padding-right: 3%;
  }
}

@media (max-width: 480px) {
  .page-body p {
    padding-left: 0%; /* Minimal padding on very small screens */
    padding-right: 0%;
    hyphens: auto;
  }
}







/*#### COLLECTION IMAGE BAR #####  */
.image-bar {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 16px;
    overflow: hidden;



.clickable-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 64px;
}

.clickable-image img {
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    object-fit: cover;
    filter: blur(12px);
    transition: filter 0.3s ease;
    position: absolute;
    top: -10px;
    left: -10px;
  }

.clickable-image:hover img {
    filter: none;
}


.clickable-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.overlay-text {
    position: absolute;
    z-index: 2;
    color: #FFFFFF;
    font-size: 20px;
    padding: 5px;
    border-radius: 5px;

}


.clickable-image a {
    color: inherit;
    text-decoration: none;
    z-index: 2;
}






/*########################################*/

    /*########## BLOG CSS #################*/

.blog-image {
    width: 50%;
    height: 256px;
    margin-top: 64px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


 .blog-title {
  display: inline-block;
  background-color: black; 
  padding-left: 80px; 
  padding-right: 32px; 
  padding-top: 0px; 
  padding-bottom: 0px;
  margin-top: 32px;
/*  text-decoration: none;*/
}




.blog-canvas {

    
}

.container{

}

/*#### SEARCH PAGE ####*/




.flex-container {
    display: flex;

}


/*##### Search Pages ####*/

/*##########################*/





/*##### Product Search Pages####*/


