body {
  margin: 0;
  font-family: 'Courier New', monospace;
  background-color: #1a0000;
  color: #fff;
 opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

body.fade-start {
  opacity: 0;
}
body.fade-in {
  opacity: 1;
}

body.fade-out {
  opacity: 0;
}



h1 {
  font-size: 3em;
  font-family: 'Creepster', cursive;
  color: white;
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
}

nav li {
  margin: 0 15px;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 1.2em;
}

main {
  padding: 20px;
}

section {
  margin-bottom: 40px;
}

/* Center wrapper for all sections */
.section-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0;
}

/* Centered section titles */
#sketches h2 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 20px;
}

.sketch-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.sketch-box {
  background-color: #330000;
  border: 2px dashed #ff6666;
  
}

.price-box {
  background-color: #330000;
  border: 2px dashed #ff6666;
  padding: 20px;
  width: fit-content;
  font-family: 'Special Elite', monospace;
  font-size: 1.2em;
  line-height: 1.6;
  color: #ffcccc;
}

/* Jiggle animation */
@keyframes jiggle {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(3deg); }
  50% { transform: rotate(-3deg); }
  75% { transform: rotate(2deg); }
  100% { transform: rotate(0deg); }
}

nav a:hover {
  animation: jiggle 0.4s ease-in-out;
  color: #ff4444;
  text-shadow: 0 0 5px #ff4444;
}

.butcher-menu {
  background-color: #2b0000;
  border: 4px double #ff3333;
  padding: 25px;
   width: 400px; 
  font-family: 'Special Elite', monospace;
  color: #fff;
  box-shadow: 0 0 20px #660000;
  position: relative;
  overflow: hidden;
}

.menu-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  font-size: 1.4em;
  border-bottom: 1px dashed #ff6666;
  padding: 10px 0;
  gap: 10px;
}

.cut-name {
  color: #fff;
}

.cut-price {
  color: #ff9999;
  
}

.sold-out .stamp {
  position: absolute;
  top: 5px;
  right: -10px;
  background: #ff0000;
  color: white;
  font-size: 0.8em;
  padding: 2px 6px;
  transform: rotate(-15deg);
  font-weight: bold;
  box-shadow: 0 0 5px #660000;
}

/* Dripping blood effect */
.butcher-menu::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background: repeating-linear-gradient(
    to bottom,
    #ff0000,
    #ff0000 5px,
    transparent 5px,
    transparent 10px
  );
  animation: drip 2s infinite ease-in-out;
}

@keyframes drip {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

.social-bar {
  background-color: #330000;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  align-items: center; /* ✅ This centers items vertically */ 
  gap: 30px;
  font-family: 'Courier New', monospace;
  font-size: 1em;
  border-top: 2px solid #ff3333;
  border-bottom: 2px solid #ff3333;
  box-shadow: inset 0 5px 10px #660000;
}

.social-bar a,
.discord-hover {
  color: #fff;
  text-decoration: none;
  position: relative;
  padding: 5px 10px;
  border: 2px dashed #ff6666;
  background-color: #2b0000;
  transition: transform 0.2s ease, color 0.3s ease;
  display: inline-block;
  vertical-align: middle;
}

.social-bar a:hover,
.discord-hover:hover {
  transform: scale(1.05);
  color: #ffcccc;
  text-shadow: 0 0 5px #ff4444;
}

.social-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}


.sketch-box img {
  max-height: 450px; /* or whatever height fits your vibe */
  width: auto;
  display: block;
  margin: 0 auto;
}

.icon-nav {
 display: flex;
  justify-content: center;     /* centers the row */
  gap: 50px;                   /* tight spacing between buttons */
  flex-wrap: nowrap;           /* keeps them in one row */
  margin-bottom: 40px;
   
}


.nav-item {
display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: white;
  font-family: 'Courier New', monospace;
  transition: transform 0.2s ease;
  font-family: "Barrio", system-ui;
}

.nav-item img {
  width: auto;
  height: 90px;
  object-fit: contain;
  margin-bottom: 10px;
}

.nav-item span {
  font-size: 1em;
}

.site-header {
  position: relative;
  background-image: url('icons/banner.png');
  background-size: cover;        /* or use 'contain' if you want full image visible */
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  padding: 60px 20px;            /* increase to give the image room */
  color: white;
  overflow: hidden;
  min-height: 150px;             /* ensure image area; adjust to taste */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* subtle dark overlay for legibility */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(68, 7, 7, 0.55); /* darken the image for text contrast */
  z-index: 1;
}

/* title sits above overlay */
.site-header h1 {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: 3rem;
  line-height: 1;
  text-shadow: 0 4px 20px rgba(68, 7, 7, 0.55);
}

/* adjust placement and size */
.header-top-image {
  position: absolute;
  width: 500px;        /* tune size */
  height: auto;
  z-index: 5;         /* sits above banner and text */
  pointer-events: none;
}

.tagline {
  font-size: 1.5em;
  font-family: 'Courier New', monospace;
  color: #ff9999;
  margin-top: 10px;
  text-shadow: 0 0 5px #660000;
  font-style: italic;
}


.landing-main {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 20vh;
}

.enter-button a {
  background-color: #990000;
  color: white;
  padding: 15px 30px;
  font-size: 1.2em;
  font-family: 'Special Elite', monospace;
  text-decoration: none;
  border: 2px dashed #ff6666;
  box-shadow: 0 0 10px #660000;
  transition: transform 0.2s ease;
  position: relative;
}

.enter-button a::after {
  content: '🔪';
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.enter-button a:hover {
  transform: scale(1.05);
  color: #ff4444;
  text-shadow: 0 0 5px #ff4444;
}

.enter-button a:hover::after {
  transform: translateY(-50%) rotate(-45deg);
}



.about-main {
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
  font-family: 'Courier New', monospace;
  color: #fff;
  background-color: #1a0000;
  box-shadow: 0 0 20px #330000;
  border: 4px double #ff3333;
  position: relative;
}


.about-section {
  margin-bottom: 40px;
}

.about-section h2 {
  font-size: 2em;
  color: #ff6666;
  margin-bottom: 10px;
  font-family: 'Special Elite', monospace;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.about-section h2::after {
  content: "";
  position: absolute;
  right: 5px;
  top: 30%;
  transform: translateY(-50%);
  width: 120px;
  height: 120px;
  background-image: url('icons/hatchet.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}


.about-section p {
  font-size: 1.2em;
  line-height: 1.6;
  color: #ffcccc;
  background-color: #2b0000;
  padding: 15px;
  border-left: 4px dashed #ff4444;
  margin-bottom: 20px;
  box-shadow: inset 0 0 10px #660000;
}

.about-section::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    #ff0000,
    #ff0000 5px,
    transparent 5px,
    transparent 10px
  );
  margin-bottom: 20px;
  animation: dripDivider 3s infinite ease-in-out;
}



/* Tabs */
.gallery-tabs {
  text-align: center;
  margin-bottom: 20px;
}
.gallery-tabs button {
  background: none;
  border: 2px solid #660000;
  color: #ff6666;
  padding: 8px 16px;
  margin: 0 6px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.gallery-tabs button.active,
.gallery-tabs button:hover {
  background: #ff3333;
  color: #fff;
}

/* Gallery Container */
.gallery-main {
  position: relative; /* ← add this */
  max-width: 1800px;
  margin: 0 auto;
  padding: 10px 10px;
  background: #1a0000;
  border: 4px double #ff3333;
  box-shadow: 0 0 20px #330000;
  overflow-x: hidden;
  min-height: 50vh;
}
  

/* Horizontal Scroller */
.gallery-scroll {
  display: flex; 
  overflow-x: auto;
  white-space: nowrap;
  gap: 0;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

#designs-gallery {
  display: grid;
}

/* Hanging Items */
.gallery-item {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-left: -50px;
  position: relative;
  transform: rotate(-2deg) translateY(-10px);
  transition: transform 0.2s;
}
.gallery-item:first-child {
  margin-left: 0;
}
.gallery-item:nth-child(odd) {
  transform: rotate(-3deg) translateY(-15px);
}
.gallery-item:nth-child(even) {
  transform: rotate(2deg) translateY(-5px);
}
.gallery-item:hover {
  animation: dangle 1s ease-in-out infinite;
  z-index: 10;
}
@keyframes dangle {
  0%   { transform: rotate(0deg); }
  25%  { transform: rotate(2deg); }
  50%  { transform: rotate(-2deg); }
  75%  { transform: rotate(1deg); }
  100% { transform: rotate(0deg); }
}

/* Thumb wrapper: holds hook + hole + art */
.thumb {
  position: relative;
  display: inline-block;
  padding-top: 24px;  /* reserve vertical space for the hook */
}

/* Art Image */
.thumb .gallery-art {
  display: block;
  width: auto;        /* natural image width */
  max-width: 100%;
  height: auto;
  max-height: 400px;  /* cap height */
  object-fit: contain;
  border: 2px dashed #ff6666;
  box-shadow: 0 0 10px #660000;
  cursor: zoom-in;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.thumb .gallery-art:hover {
  transform: scale(1.05);
  filter: brightness(1.2) saturate(1.2);
}

/* Hook icon */
.thumb .hook-icon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 38px;
  user-select: none;
  pointer-events: none;
  z-index: 2;
}

/* Hook hole */
.thumb .hook-hole {
  position: absolute;
  top: 32px;   /* just below the hook tip */
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background: radial-gradient(ellipse at center, #3a0000 72%, #000 100%);
  border-radius: 50%;
  box-shadow: 0 2px 8px #660000;
  user-select: none;
  pointer-events: none;
  z-index: 1;
}

.gallery-bar {
  position: absolute;
  top: 8px;
  left: 0;
  width: 100%;
  height: 15px; /* adjust to match your image */
  background: url('icons/bar.png') repeat-x center;
  background-size: contain;
  z-index: 0;
}


/* Zoom overlay */
#zoom-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.8);
}
#zoom-overlay img {
  max-width: 90%;
  max-height: 90%;
  box-shadow: 0 0 20px #000;
}


.tos-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  background-color: #330000;
  padding: 20px;
  border-top: 2px solid #ff3333;
  border-bottom: 2px solid #ff3333;
}

.tos-nav a {
  background-color: #990000;
  color: white;
  padding: 10px 20px;
  font-family: 'Courier New', monospace;
  text-decoration: none;
  border: 2px dashed #ff6666;
  box-shadow: 0 0 5px #660000;
  transition: transform 0.2s ease;
}

.tos-nav a:hover {
  transform: scale(1.05);
  color: #ffcccc;
  text-shadow: 0 0 5px #ff4444;
}

.tos-main {
  max-width: 900px;
  margin: 40px auto;
  padding: 40px;
  background-color: #1a0000;
  border: 4px double #ff3333;
  box-shadow: 0 0 20px #330000;
  font-family: 'Courier New', monospace;
  color: #ffcccc;
}

.tos-main h2 {
  font-size: 2.5em;
  color: #ff6666;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 0 5px #660000;
}

.tos-section {
  margin-bottom: 30px;
  padding: 20px;
  background-color: #2b0000;
  border-left: 6px dashed #ff4444;
  box-shadow: inset 0 0 10px #660000;
}

.tos-section h3 {
  font-size: 1.5em;
  color: #fff;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tos-section p {
  font-size: 1.2em;
  color: #ff9999;
  line-height: 1.6;
}


.tos-main section {
  margin-bottom: 60px;
}


.custom-queue {
  padding: 1rem;
  margin-top: -21px;
}

#queue-board {
  display: flex;
  gap: 2rem;
  justify-content: center;
  padding-bottom: 35px;
  background: url('icons/tile.png') repeat;
   background-size: 300px auto;
  border-top: 4px solid #a52a2a;
  border-bottom: 4px solid #a52a2a;
}


.queue-list {
  background: transparent;
  border: none;
  padding: 0;
  text-align: center;
}

.queue-list h3 {
  color: #fff;
    font-family: "Rock Salt", cursive;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.queue-card {
  background: #fffbe6;
  border: 2px solid #a52a2a;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
  width: 180px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  position: relative;
   font-family: "Rock Salt", cursive;
   font-size: 0.75rem;
  transform: rotate(-1deg);
  transition: transform 0.3s ease;
  
}

.queue-card:hover {
  transform: rotate(1deg) translateY(-2px);
}

/* Simulate a hanging clip */

.queue-card::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 10px;
  background: #333;
  border-radius: 3px;
}

.order-number {
  font-weight: bold;
  color: #a52a2a;
  margin-bottom: 2px;
}



.paid-date {
  font-weight: bold;
  background: rgb(100, 12, 12);
  padding: 2px 6px;
  border-radius: 4px;
  display: inline-block;
}


.comm-type {
  font-size: 0.9rem;
  color: #a52a2a;
  margin-bottom: 0.5rem;
}

.toggle-details {
  background: none;
  border: none;
  color: #a52a2a;
  font-size: 0.85rem;
  cursor: pointer;
  margin-top: 0.5rem;
  text-decoration: underline;
}

.card-details {
  margin-top: 0.5rem;
  font-size: 0.80rem;
  color: #333;
  text-align: left;
  font-family: 'Courier New', Courier, monospace;
}

.hidden {
  display: none;
}

.client-name {
  font-size: 0.85rem;
  color: #444;
  margin-bottom: 0.5rem;
  font-style: italic;
}

.queue-card > div {
  margin: 0.25rem 0;
}

.ref-images {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.ref-img {
  width: 100px;
  height: auto;
  cursor: zoom-in;
  border-radius: 4px;
  transition: transform 0.2s ease;
}

.empty-sticker {
  position: relative;
  background: #fffbe6;
  border: 2px dashed #a52a2a;
  border-radius: 12px;
  padding: 1rem 2rem;
   font-family: "Rock Salt", cursive;
  color: #a52a2a;
  font-size: 1rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  transform: rotate(-3deg);
  margin-top: 2rem;
  text-align: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}


.commission-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch; /* ensures equal height columns */
  background-color: #2b0000;
  border: 4px double #ff3333;
  padding: 30px;
  margin: 40px auto;
  width: 100%;
  max-width: 1400px;
 
}


body.commissions-page .commission-block {
  margin-top: -30px;  /* was 40px */
}



/* Left side: title + images */
.commission-info {
  flex: 1 1 300px;
  display: flex;
  justify-content: center; /* vertical centering */
  align-items: center;
}

.info-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Title styling */
.commission-info h2 {
  font-size: 2em;
  color: #ff6666;
  margin-bottom: 20px;
  font-family: 'Courier New', monospace;
}

/* Image layout */

.sketch-preview {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}

.sketch-preview img {
  max-width: auto;
  max-height: 200px;
  border: 2px dashed #ff6666;
  box-shadow: 0 0 10px #660000;
  margin-bottom:25px;
}

/* Right side: price list */
.commission-prices {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  justify-content: center; /* <-- This centers vertically */
  padding-left: 40px;
  
}


.commission-prices .menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Courier New', monospace;
  font-size: 1.2em;
  color: #ffcccc;
  margin-bottom: 12px;
  width: 100%;
}

.commission-prices .cut-name {
  color: #fff;
}

.commission-prices .cut-price {
  color: #ff9999;
}

.commission-prices .dot-fill {
  flex-grow: 1;
  border-bottom: 4px dotted #ff4444;
  height: 6px;
  margin: 0 10px;
}

.commission-prices .menu-item.sold-out .cut-price {
  text-decoration: line-through;
  color: #999;
}

.zoomable {
  transition: transform 0.3s ease;
  cursor: zoom-in;
}



#zoom-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(20, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#zoomed-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border: 4px dashed #ff6666;
  box-shadow: 0 0 30px #660000;
  animation: zoomFade 0.3s ease;
}

@keyframes zoomFade {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.gallery-tabs {
  text-align: center;
  margin-bottom: 20px;
}

.gallery-tabs button {
  background-color: #990000;
  color: white;
  padding: 10px 20px;
  font-family: 'Courier New', monospace;
  border: 2px dashed #ff6666;
  margin: 0 10px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.gallery-tabs button:hover {
  transform: scale(1.05);
  color: #ffcccc;
  text-shadow: 0 0 5px #ff4444;
}


.accordion-toggle {
  background-color: #660000;
  color: #fff;
  font-size: 1.2em;
  font-family: 'Courier New', monospace;
  padding: 10px 20px;
  border: 2px dashed #ff6666;
  width: 100%;
  text-align: left;
  cursor: pointer;
  margin-top: 20px;
}

.accordion-toggle:hover {
  background-color: #990000;
  color: #ffcccc;
}

.accordion-content {
  display: none;
  padding: 20px;
  background-color: #2b0000;
  border: 2px dashed #ff6666;
  margin-bottom: 20px;
    width: 100%;
  box-sizing: border-box;
}

.accordion-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}


/* Remove per-column scrolling */
.accordion-columns > div {
  max-height: none;
  overflow-y: visible;
}

/* Apply scrolling to the whole accordion box */
.accordion-content {
  max-height: 300px;
  overflow-y: auto;
}

.accordion-block.might-draw .accordion-content,
.accordion-block.wont-draw .accordion-content {
  max-height: none !important;
  overflow-y: visible !important;
}

.accordion-block.might-draw .accordion-columns {
  grid-template-columns: repeat(2, minmax(300px, 1fr));
}



.accordion-block.vore-draw .accordion-columns {
  grid-template-columns: repeat(4, minmax(0px, 1fr));

}


.discord-hover {
  cursor: default;
}

.discord-username {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 10px);
  background-color: #990000;
  color: #ffcccc;
  padding: 5px 10px;
  border: 2px dashed #ff6666;
  font-size: 0.9em;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 10;
}

.discord-hover:hover .discord-username {
  opacity: 1;
  transform: translate(-50%, 0);
}

.floating-status {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 130px;
  height: auto;
  z-index: 999;
  pointer-events: auto;   /* ← changed from none to auto */
  opacity: 0.9;
}


.floating-status:hover {
  animation: dangle 1s ease-in-out infinite;
  transform-origin: top center;
}

@keyframes dangle {
  0%   { transform: rotate(0deg); }
  25%  { transform: rotate(2deg); }
  50%  { transform: rotate(-2deg); }
  75%  { transform: rotate(1deg); }
  100% { transform: rotate(0deg); }
}


#scrollToTopBtn {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 100;
  background: white;
  color: red;
  border: 4px solid red;
  font-weight: bold;
  font-size: 18px;
  font-family: 'Impact', 'Arial Black', sans-serif;
  padding: 12px 20px;
  border-radius: 0;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 95% 100%, 5% 85%, 0 100%);
  box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#scrollToTopBtn:hover {
  background: red;
  color: white;
}

#blade-line {
  position: fixed;
  top: 50%;
  left: 0;
  width: 0;
  height: 4px;
  background: red;
  z-index: 10000;
  transition: width 0.4s ease-out;
  pointer-events: none;
}

#next-page-preview {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

#blade-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(151, 10, 10, 0.6); /* black with 60% opacity */
  z-index: 9999;
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.4s ease-in-out;
  pointer-events: none;
}


