@charset "utf-8";
/* CSS Document */
body {
	 margin: 0;
  padding: 0;
	overflow-x: hidden;
  background-color: black;
  cursor: url('cursor.cur'), auto;
	
}

header {
	margin: 0;
  padding: 0;
  background-image: url("https://bitchshirts.ca/wp-content/uploads/2026/05/bitchshirtslogo.png");
  background-size: contain;     
  background-repeat: no-repeat; 
 background-position: center;
  top: 15px;
  width: 100%;
	height: 200px;
	
}
.site-header,
.custom-logo-link,
.custom-logo,
header.site-header {
  display: none !important;
}
header img {
  display: block;
  margin: 0 auto;
}
.entry-content > *:first-child {
  margin-top: 0 !important;
}

h2 {
  font-size: 26px;
  color: red;
  text-align: center;
  font-family: "Wilson Wells";
	 margin-top: 0;
}
h3 {
  font-size: 26px;
  color: red;
  text-align: center;
  font-family: "Wilson Wells";
	 margin-top: 0;
}
p {
  font-family: "Times New Roman";
  color: white;
  *text-align: center;*
  font-size: 16px;
	
}

footer {
  font-size: 12px;
  color: red;
  text-align: center;
  font-family: "Times New Roman";
}
.site-content,
.wp-site-blocks,
.entry-header,
.page-header {
  margin: 0 !important;
  padding: 0 !important;
}

h1, h2, p {
  margin-top: 0;
}
.topnav {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 24px;
  gap: 10px;
}

.topnav a {
  color: white;
  text-decoration: none;
  font-size: 17px;
}
/* Change the color of links on hover */
.topnav a:hover {
  color: red;
}

/* Add a color to the active/current link */
.topnav a.active {
  color: greenyellow;
}
a {
  color: white;
  text-decoration: underline;
  
}

/*a:visited {                               Makes all links green, fix later
  color: yellowgreen;
  text-decoration: underline;
}
*/


a:hover {
  color: red; 
  text-decoration: underline;
}
.full-width-row {
  display: flex;
  justify-content: center;

  gap: 20px;

  width: 100vw !important;

}
/* Ensure the image is an inline-block so it can be transformed */
.bounce-image {
  display: inline-block;
  transition: transform 0.2s ease;
}

/* Trigger the animation on hover */
.bounce-image:hover {
  animation: bounce 0.5s infinite; /* Repeats the bounce while hovering */
}

/* Define the vertical movement */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px); /* Adjust this value for a higher or lower bounce */
  }
	
}
/* =========================
   MOBILE OPTIMIZATION ONLY
   ========================= */
@media (max-width: 768px) {
	 .entry-content {
    text-align: center;
	}
  /* Prevent sideways scrolling */

  /* Header spacing fix */
  header {
    margin-top: 0;
  }

  /* Nav stacks vertically */
  .topnav {
    flex-direction: row;
    gap: 6px;
    font-size: 18px;
  }

  /* Title smaller on mobile */
  h2 {
    font-size: 20px;
  }

  /* FULL WIDTH ROW (your product images) */
  .full-width-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;

  width: 100% !important;
  margin: 0 auto !important;
  text-align: center;
}
  /* Make images fit mobile nicely */
  .full-width-row img {
    width: 45% !important;
    height: auto;
  }
.woocommerce-products-header {
    display: none;
}

.page-title {
    display: none;
}

}