@import url(https://fonts.googleapis.com/css?family=Signika+Negative:400,700);


body{
    cursor: url('Logos/Old_English_D_Cursor_Tigers.png'), auto;
  }

/* Navbar container */
.signature-container {
    background-repeat: no-repeat;
    background-image: url('Logos/BG_Image_ANIMATED_STARS.gif'); /* Background image for the signature section */
    background-size: cover; /* Ensure the image covers the entire section */
    background-position: center; /* Center the image */
    display: flex;
    justify-content: center;
    margin-bottom: 10px; /* Space between signature and navbar */
    box-shadow: 0 10px 0 chartreuse; /* Adds a chartreuse-colored shadow to simulate margin color */
    border-top: chartreuse 10px solid;
    padding-top: 20px;
    padding-bottom: 20px; /* Adds a chartreuse-colored shadow to simulate margin color */
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(-135deg, #0f2027, #141564, #1987f4); /* Subtle gradient background */
    padding: 15px;
    font-family: 'Signika Negative', sans-serif;
    margin-bottom: 10px; /* Space between signature and navbar */
    box-shadow: 0 10px 0 chartreuse; /* Adds a chartreuse-colored shadow to simulate margin color */
}

a {
    font-family: 'Signika Negative', sans-serif;
}

/* Responsive Navbar */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column; /* Stack items vertically */
        padding: 10px;
    }

    .navbar a {
        font-size: 10px; /* Reduce font size for smaller screens */
        margin: 5px 0; /* Add spacing between stacked links */
        padding: 10px;
    }
}

/* Even for ultra-small screens */
@media (max-width: 576px) {
    .navbar {
        justify-content: flex-start; /* Align items to the left (optional) */
    }

    .navbar a {
        font-size: 12px; /* Further reduce font size */
    }
}

.navbar a {
    margin: 0 12px;
    padding: 8px 16px;
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease-in-out;
    overflow: hidden;
}

/* Animated Underline */
.navbar a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: yellow;
    transition: width 0.4s ease-in-out, left 0.4s ease-in-out;
}

/* Hover Effects */
.navbar a:hover {
    color: red;
}

.navbar a:hover::before {
    width: 100%;
    left: 0;
}

/* Subtle Scaling Effect */
.navbar a::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: scale(0.8);
    border-radius: 8px;
    transition: opacity 0.4s, transform 0.4s;
}

/* Hover Glow */
.navbar a:hover::after {
    opacity: 1;
    transform: scale(1);
}

/* Smooth Animation when Link is Clicked */
.navbar a:active {
    transform: scale(0.95);
    transition: transform 0.1s;
}
/* Navbar container */

* {
    margin: 0;
    padding: 0;
  }
  
  .carousel-container {
    width: 100vw; /* Full viewport width */
    overflow: hidden; /* Hide images outside the container */
}

.carousel_items {
    display: flex; /* Arrange images in a single row */
    flex-wrap: nowrap; /* Prevent wrapping to the next line */
    transition: transform 1.5s ease-in-out; /* Smooth sliding effect */
    width: calc(100vw * 5); /* 100vw multiplied by the number of items (5 in this case) */
}

.carousel_item {
    width: 100vw; /* Full viewport width */
    height: 100vh; /* Full viewport height */
    background-repeat: no-repeat;
    background-size: cover; /* Image covers its container */
    background-position: center; /* Center the image */
}

/* For medium screens (e.g., tablets) */
@media (max-width: 992px) {
    .carousel_item {
        height: 70vh; /* Reduce height for better fit */
        background-size: contain; /* Adjust to maintain aspect ratio */
    }
}

/* For small screens (e.g., mobile phones) */
@media (max-width: 576px) {
    .carousel_item {
        height: 50vh; /* Further reduce height for small screens */
        background-size: contain; /* Ensure the image is scaled down */
        background-position: center;
    }
}

.carousel_item img {
    position: absolute;
    width: 100%; /* Adjust to the container width */
    height: auto; /* Maintain the original aspect ratio */
    object-fit: cover; /* Adjust how the image is fitted within the container */
}
  
  .item1 {
    background-image: url("Photo_Shoot_2025_MBC/DSC_6004.JPG");}
  .item2 {
    background-image: url("Photo_Shoot_2025_MBC/DSC_6001.JPG");  }
  .item3 {
    background-image: url("Photo_Shoot_2025_MBC/DSC_6002.JPG");  }
  .item4 {
    background-image: url("Photo_Shoot_2025_MBC/DSC_6036.JPG");  }
  .item5 {
    background-image: url("Photo_Shoot_2025_MBC/DSC_6123.JPG");  }


/* CSS for the card boxes section */
/* CSS for the card boxes section */
/* CSS for the card boxes section */


.card-boxes {
    text-align: center;
    padding: 40px 20px;
    background-color: #ffffff;
    background-image: url('HomepageAssets/Holofoil_ANIMATED.gif');
    border-bottom: chartreuse 10px solid; 
    border-top: chartreuse 10px solid;
}

.card-boxes h3 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.card-item {
    background-color: #f9f9f9;
    border: 3px solid chartreuse;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}

.card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 24px 8px gold, 0 0 40px 16px chartreuse;
    border-color: gold;
}

/* Sparkle effect only on first hover, not continuous, and card returns to unhovered state after animation */
.card-item::after {
    content: "";
    pointer-events: none;
    position: absolute;
    top: -40%;
    left: -40%;
    width: 180%;
    height: 180%;
    background: radial-gradient(circle, rgba(255,255,224,0.6) 0%, rgba(255,255,224,0.1) 60%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 2;
}

.card-item.sparkle::after {
    opacity: 1;
    animation: sparkle 0.8s linear;
}

@keyframes sparkle {
    0% {
        opacity: 0.7;
        transform: scale(0.8) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.1) rotate(10deg);
    }
    100% {
        opacity: 0;
        transform: scale(1.3) rotate(-10deg);
    }
}

/* Card returns to unhovered state after animation ends, even if still hovered.
   This requires JS to remove the .sparkle class and the :hover effect after animation. */
.card-item:not(.sparkle):hover {
    transform: translateY(-5px);
    box-shadow: 0 0 24px 8px gold, 0 0 40px 16px chartreuse;
    border-color: gold;
}
.card-item.sparkle {
    /* Remove hover effect while sparkling */
    transform: none !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    border-color: chartreuse !important;
}


.card-item img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.funko-section { --shift-x:0px; --shift-x-reverse:0px; --shift-y:0px; --shift-y-reverse:0px; position:relative; width:100%; height:560px; overflow:hidden; isolation:isolate; background:radial-gradient(ellipse at 50% 100%,rgba(25,135,244,.18),transparent 48%),linear-gradient(135deg,#050811,#111c2e 48%,#050811); border-block:8px solid chartreuse; }
.funko-section::after { content:""; position:absolute; z-index:1; inset:auto 0 0; height:22%; pointer-events:none; background:linear-gradient(180deg,transparent,rgba(0,0,0,.6)),repeating-linear-gradient(90deg,transparent 0 9.9%,rgba(127,255,0,.08) 10%); transform:perspective(260px) rotateX(55deg); transform-origin:bottom; }
.fireworks-canvas { position:absolute; z-index:2; inset:0; pointer-events:none; }
.vault-spotlight { position:absolute; z-index:0; top:-20%; left:50%; width:min(800px,90vw); height:125%; pointer-events:none; background:conic-gradient(from 165deg at 50% 0,transparent 0 26%,rgba(25,135,244,.1) 31%,rgba(127,255,0,.1) 36%,transparent 42% 100%); filter:blur(12px); transform:translateX(calc(-50% + var(--shift-x))); transition:transform .25s ease-out; }
.display-shelves { position:absolute; z-index:0; inset:8% 3% 12%; opacity:.38; pointer-events:none; background:repeating-linear-gradient(0deg,transparent 0 118px,rgba(129,167,207,.22) 119px 121px,rgba(0,0,0,.7) 122px 128px),repeating-linear-gradient(90deg,transparent 0 calc(25% - 2px),rgba(129,167,207,.11) calc(25% - 1px) 25%); border:1px solid rgba(129,167,207,.12); box-shadow:inset 0 0 50px #000; }
.vault-panel { position:absolute; z-index:4; top:50%; left:50%; width:min(620px,calc(100% - 340px)); box-sizing:border-box; padding:34px 42px 38px; color:#fff; text-align:center; border:1px solid rgba(127,255,0,.55); border-radius:20px; background:linear-gradient(145deg,rgba(9,26,51,.94),rgba(2,7,17,.96)); box-shadow:0 24px 60px rgba(0,0,0,.65),0 0 45px rgba(25,135,244,.18),inset 0 1px rgba(255,255,255,.08); transform:translate(calc(-50% + var(--shift-x-reverse)),calc(-50% + var(--shift-y-reverse))); transition:transform .25s ease-out,box-shadow .3s ease; }
.vault-panel:hover { box-shadow:0 28px 70px rgba(0,0,0,.72),0 0 55px rgba(127,255,0,.2),inset 0 1px rgba(255,255,255,.1); }
.vault-kicker { margin:0 0 8px; color:chartreuse; font-size:.75rem; font-weight:700; letter-spacing:.24em; }
.vault-panel h2 { margin:0; font-size:clamp(2rem,4vw,3.5rem); line-height:1; letter-spacing:-.03em; text-transform:uppercase; text-shadow:0 0 24px rgba(25,135,244,.55); }
.vault-subtitle { margin:15px 0 24px; color:#b9c9dd; font-size:.95rem; letter-spacing:.14em; text-transform:uppercase; }
.vault-subtitle span { color:chartreuse; padding:0 5px; }
.vault-ebay-button { display:inline-flex; align-items:center; justify-content:center; gap:9px; padding:13px 20px; color:#eaf3ff; text-decoration:none; border:1px solid #2e7ed0; border-radius:10px; background:linear-gradient(180deg,#135aa4,#0a3769); box-shadow:0 6px 0 #041b35,0 10px 22px rgba(0,0,0,.35); transition:transform .18s ease,border-color .18s ease,filter .18s ease; }
.vault-ebay-button:hover { transform:translateY(-3px); border-color:chartreuse; filter:brightness(1.12); }
.vault-ebay-button:active { transform:translateY(3px); box-shadow:0 2px 0 #041b35; }
.vault-ebay-button > span { font-size:.86rem; font-weight:700; text-transform:uppercase; letter-spacing:.05em; }
.vault-ebay-button > b { color:chartreuse; }
.ebay-word { display:inline-flex; font:800 1.35rem Arial,sans-serif; letter-spacing:-2px; }
.ebay-word i { font-style:normal; }.ebay-word i:nth-child(1){color:#e53238}.ebay-word i:nth-child(2){color:#0064d2}.ebay-word i:nth-child(3){color:#f5af02}.ebay-word i:nth-child(4){color:#86b817}
.funko-character { position:absolute; z-index:5; width:155px; padding:0; border:0; outline-offset:4px; background:transparent; cursor:pointer; filter:drop-shadow(0 18px 12px rgba(0,0,0,.65)); transition:filter .2s ease; }
.funko-character:hover { filter:drop-shadow(0 18px 16px rgba(127,255,0,.35)); }
.funko-character img { display:block; width:100%; height:auto; }
.funko-character::after { content:""; position:absolute; left:12%; right:12%; bottom:-7px; height:13px; border-radius:50%; background:rgba(0,0,0,.55); filter:blur(5px); }
.character-bottom-left { left:24px; bottom:-125px; animation:peekBottomLeft 6.2s .2s infinite ease-in-out; transform:translate(var(--shift-x),var(--shift-y)); }
.character-bottom-right { right:24px; bottom:-125px; animation:peekBottomRight 6.2s 1.65s infinite ease-in-out; transform:translate(var(--shift-x-reverse),var(--shift-y)); }
.character-top-left { left:24px; top:-125px; animation:peekTopLeft 6.2s 3.1s infinite ease-in-out; transform:translate(var(--shift-x),var(--shift-y)); }
.character-top-right { right:24px; top:-125px; animation:peekTopRight 6.2s 4.55s infinite ease-in-out; transform:translate(var(--shift-x-reverse),var(--shift-y)); }
@keyframes peekBottomLeft { 0%,18%,100%{bottom:-125px;rotate:-5deg}38%,62%{bottom:12px;rotate:2deg}50%{bottom:20px;rotate:-2deg} }
@keyframes peekBottomRight { 0%,18%,100%{bottom:-125px;rotate:5deg}38%,62%{bottom:12px;rotate:-2deg}50%{bottom:20px;rotate:2deg} }
@keyframes peekTopLeft { 0%,18%,100%{top:-125px;rotate:4deg}38%,62%{top:8px;rotate:-2deg}50%{top:15px;rotate:2deg} }
@keyframes peekTopRight { 0%,18%,100%{top:-125px;rotate:-4deg}38%,62%{top:8px;rotate:2deg}50%{top:15px;rotate:-2deg} }
.funko-character.character-react img { animation:characterReact .55s cubic-bezier(.2,.9,.2,1.2); }
@keyframes characterReact { 0%{scale:1}45%{scale:1.22;rotate:8deg}75%{scale:.96;rotate:-4deg}100%{scale:1;rotate:0deg} }

/* Fireworks */
.firework {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: explode 2s infinite ease-out;
}

.firework1 {
    top: 30%;
    left: 20%;
    background: red;
    animation-delay: 0s;
}

.firework2 {
    top: 50%;
    left: 60%;
    background: blue;
    animation-delay: 0.7s;
}

.firework3 {
    top: 35%;
    left: 80%;
    background: yellow;
    animation-delay: 1.4s;
}

@keyframes explode {
    0% {
        transform: scale(1);
        box-shadow:
            0 0 0 red,
            0 0 0 blue,
            0 0 0 green,
            0 0 0 yellow;
        opacity: 1;
    }

    100% {
        transform: scale(3);
        box-shadow:
            -40px -40px 0 red,
            40px -40px 0 blue,
            -40px 40px 0 green,
            40px 40px 0 yellow;
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .funko-section {
        height: 470px;
    }
    .vault-panel { width:calc(100% - 150px); padding:28px 20px; }
    .vault-ebay-button > span { display:none; }
    .funko-character { width:105px; }
    .character-bottom-left,.character-top-left { left:8px; }
    .character-bottom-right,.character-top-right { right:8px; }
}

@media (max-width: 480px) {
    .funko-section {
        height: 430px;
    }
    .vault-panel { width:calc(100% - 64px); padding:25px 16px 28px; }
    .vault-kicker { font-size:.6rem; }
    .vault-subtitle { font-size:.7rem; }
    .funko-character { width:82px; opacity:.88; }
}

@media (prefers-reduced-motion: reduce) {
    .funko-section *, .funko-section *::before, .funko-section *::after { animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; }
    .fireworks-canvas,.firework { display:none; }
    .character-bottom-left,.character-bottom-right { bottom:10px; }
    .character-top-left,.character-top-right { top:10px; }
}

.center-container {
    display: flex; /* Enables Flexbox */
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically */
    background-color: #f4f4f4; /* Optional background for clarity */
    border-bottom: 10px solid chartreuse;
    margin: 0;
    padding: 0;
  }

  body, html {
    margin: 0; /* Removes default body margin */
    padding: 0; /* Removes default body padding */
}

  @keyframes glowMove {
    0% {
      transform: translateX(0);
    }
    50% {
      transform: translateX(10px);
    }
    100% {
      transform: translateX(0);
    }
  }

  @keyframes colorPulse {
    0% {
      text-shadow: 0 0 10px chartreuse, 0 0 20px #ff4d4d, 0 0 30px #ff4d4d,
        0 0 40px #ff4d4d;
    }
    25% {
      text-shadow: 0 0 10px chartreuse, 0 0 20px #ff4d4d, 0 0 30px #ff4d4d,
        0 0 40px #ff4d4d;
    }
    50% {
      text-shadow: 0 0 20px chartreuse, 0 0 30px #ff4d4d, 0 0 40px #ff4d4d,
        0 0 50px #ff4d4d;
    }
    75% {
      text-shadow: 0 0 10px chartreuse, 0 0 20px #ff4d4d, 0 0 30px #ff4d4d,
        0 0 40px #ff4d4d;
    }
    100% {
      text-shadow: 0 0 10px chartreuse, 0 0 20px #ff4d4d, 0 0 30px #ff4d4d,
        0 0 40px #ff4d4d;
    }
  }

/* LISTING ITEMS */
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 50px 100px; /* Increased left and right padding */
    background-color: black;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.gallery-item {
    flex: 1 0 15%; /* Adjust to allow flexibility */
    text-align: center;
    margin-bottom: 10px; /* Reduced margin-bottom */
    max-width: 200px; /* Ensure images don't get too large */
}
.gallery-item img {
    width: 200px; /* Set image width to 200px */
    height: 200px; /* Set image height to 200px */
    object-fit: cover; /* Ensure images cover the container without stretching */
    display: block; /* Ensures the image behaves as a block element */
    margin-bottom: 20px; /* Adds space between the image and the description */
}
.description {
    margin-top: 5px; /* Reduced margin-top */
    font-family: Arial, sans-serif; /* Clean font */
    font-weight: bold; /* Bold text */
    color: chartreuse;
}

.price {
    color: chartreuse; /* Green text for price */
    font-weight: bold;
    margin-top: 5px;
    font-size: 1.5rem;
}

.description, .price {
    margin-top: 0;
    margin-bottom: 10px; /* Adjusts spacing between descriptions and prices */
}

@media (max-width: 1200px) {
    .gallery-item {
        flex: 1 0 25%; /* Adjust width to fit 4 items in a row */
    }
}
@media (max-width: 992px) {
    .gallery-item {
        flex: 1 0 30%; /* Adjust width to fit 3 items in a row */
    }
}
@media (max-width: 769px) {
    .gallery-item {
        flex: 1 0 45%; /* Adjust width to fit 2 items in a row */
    }
}
@media (max-width: 576px) {
    .gallery-item {
        flex: 1 0 100%; /* Make it full-width on very small screens */
    }
}

.popOutHover { 
    transition: transform 0.6s ease-in-out, box-shadow 0.6s ease-in-out; /* Smooth transition for the scaling and shadow */ 
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 1); /* Larger and darker initial shadow */ 
} 

.popOutHover:hover { 
    transform: scale(1.1); /* Pop out effect on hover */ 
    box-shadow: 0px 12px 25px rgba(0, 0, 0, 1); /* Larger and darker shadow on hover */ 
}

#siteseal {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 18px auto 0;
}

