@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_6152.JPG");}
  .item2 {
    background-image: url("Photo_Shoot_2025_MBC/DSC_6161.JPG");  }
  .item3 {
    background-image: url("Photo_Shoot_2025_MBC/DSC_6175.JPG");  }
  .item4 {
    background-image: url("Photo_Shoot_2025_MBC/DSC_6147.JPG");  }
  .item5 {
    background-image: url("misc_assets/South_Park_Signed_Photo.png");  }


/* 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;
}

.curiosity-vault{position:relative;height:650px;overflow:hidden;isolation:isolate;color:#fff;font-family:'Signika Negative',Arial,sans-serif;background:radial-gradient(circle at 50% 48%,#192b4c 0,#090f1e 38%,#02040a 78%);border-block:10px solid chartreuse}.vault-rays{position:absolute;z-index:0;top:50%;left:50%;width:950px;height:950px;opacity:.23;background:repeating-conic-gradient(from 0deg,rgba(127,255,0,.16) 0 3deg,transparent 3deg 15deg);transform:translate(-50%,-50%);animation:vaultSpin 38s linear infinite;mask-image:radial-gradient(circle,#000 0,transparent 68%)}@keyframes vaultSpin{to{rotate:360deg}}.vault-stars{position:absolute;z-index:0;inset:0;opacity:.45;background-image:radial-gradient(circle,#fff 1px,transparent 1.5px),radial-gradient(circle,chartreuse 1px,transparent 2px);background-position:0 0,27px 38px;background-size:63px 63px,91px 91px;animation:starDrift 18s linear infinite}@keyframes starDrift{to{background-position:63px 126px,118px 220px}}
.curiosity-marquee{position:absolute;z-index:8;left:0;right:0;bottom:0;overflow:hidden;color:#06101e;background:chartreuse;font-weight:900;font-size:.8rem;letter-spacing:.16em;white-space:nowrap}.curiosity-marquee span{display:inline-block;min-width:200%;padding:9px 0;animation:curiosityScroll 17s linear infinite}@keyframes curiosityScroll{to{transform:translateX(-50%)}}
.curiosity-panel{position:absolute;z-index:5;left:50%;top:50%;width:min(500px,42vw);box-sizing:border-box;padding:34px 38px 36px;text-align:center;border:1px solid rgba(127,255,0,.65);border-radius:50% 50% 18px 18px/18% 18% 18px 18px;background:linear-gradient(160deg,rgba(15,31,57,.96),rgba(2,7,16,.98));box-shadow:0 26px 70px #000c,0 0 50px rgba(127,255,0,.15),inset 0 0 45px rgba(25,135,244,.12);transform:translate(-50%,-50%)}.curiosity-panel::before{content:"?";position:absolute;left:50%;top:-46px;width:82px;height:82px;display:grid;place-content:center;color:#071329;background:chartreuse;border:7px solid #071329;border-radius:50%;font:900 3.2rem Arial;box-shadow:0 0 0 2px chartreuse,0 0 25px chartreuse;transform:translateX(-50%) rotate(-7deg)}
.curiosity-kicker{margin:15px 0 8px;color:chartreuse;font-size:.72rem;font-weight:800;letter-spacing:.22em}.curiosity-panel h2{margin:0;font-size:clamp(2.1rem,4vw,3.8rem);line-height:.95;text-transform:uppercase;text-shadow:0 0 24px rgba(25,135,244,.65)}.curiosity-panel>p:not(.curiosity-kicker){margin:18px auto 22px;max-width:410px;color:#b9c8dc;line-height:1.45}.curiosity-panel small{display:block;margin-top:15px;color:#72839a;font-size:.7rem;letter-spacing:.1em;text-transform:uppercase}
.curiosity-ebay{display:inline-flex;align-items:center;gap:8px;padding:12px 17px;color:#fff;text-decoration:none;border:1px solid #2b73bb;border-radius:8px;background:#0c3d74;box-shadow:0 5px 0 #041b35;transition:.2s}.curiosity-ebay:hover{color:#071329;background:chartreuse;border-color:chartreuse;transform:translateY(-3px)}.curiosity-ebay strong{display:inline-flex;font:900 1.3rem Arial,sans-serif;letter-spacing:-2px}.curiosity-ebay i{font-style:normal}.curiosity-ebay i:nth-child(1){color:#e53238}.curiosity-ebay i:nth-child(2){color:#378ee8}.curiosity-ebay i:nth-child(3){color:#f5af02}.curiosity-ebay i:nth-child(4){color:#86b817}
.curiosity{position:absolute;z-index:3;width:155px;height:155px;padding:10px;border:1px solid rgba(127,255,0,.35);border-radius:18px;background:rgba(5,14,28,.84);cursor:pointer;box-shadow:0 16px 30px #000a;transition:transform .35s cubic-bezier(.2,.9,.2,1.15),border-color .25s,box-shadow .25s}.curiosity img{display:block;width:100%;height:100%;object-fit:contain;filter:drop-shadow(0 12px 10px #000b)}.curiosity span{position:absolute;left:50%;bottom:-12px;padding:4px 9px;color:#071329;background:chartreuse;font:900 .62rem monospace;letter-spacing:.08em;opacity:0;transform:translateX(-50%) translateY(5px);transition:.25s}.curiosity:hover{border-color:chartreuse;box-shadow:0 20px 38px #000c,0 0 22px rgba(127,255,0,.25)}.curiosity:hover span,.curiosity.is-inspecting span{opacity:1;transform:translateX(-50%) translateY(0)}.curiosity.is-inspecting{z-index:7;transform:scale(1.42) rotate(0deg)!important;border-color:chartreuse;box-shadow:0 30px 70px #000,0 0 38px rgba(127,255,0,.4)}
.curiosity-one{left:5%;top:12%;transform:rotate(-8deg);animation:curioFloat 5.1s ease-in-out infinite}.curiosity-two{right:6%;top:11%;transform:rotate(7deg);animation:curioFloat 5.6s .7s ease-in-out infinite}.curiosity-three{left:7%;bottom:13%;transform:rotate(5deg);animation:curioFloat 5.3s 1.4s ease-in-out infinite}.curiosity-four{right:7%;bottom:13%;transform:rotate(-6deg);animation:curioFloat 5.8s 2.1s ease-in-out infinite}.curiosity-five{left:50%;top:7%;width:110px;height:140px;transform:translateX(-50%) rotate(4deg);animation:curioFloat 5s 2.8s ease-in-out infinite}@keyframes curioFloat{50%{margin-top:-12px}}
@media(max-width:900px){.curiosity-vault{height:620px}.curiosity-panel{width:52vw;padding-inline:25px}.curiosity{width:115px;height:115px}.curiosity-five{width:82px;height:108px}}@media(max-width:600px){.curiosity-vault{height:650px}.curiosity-panel{width:calc(100% - 96px);padding:28px 18px}.curiosity-panel::before{width:62px;height:62px;top:-38px;font-size:2.5rem}.curiosity-ebay{font-size:.75rem}.curiosity{width:78px;height:78px;padding:6px}.curiosity-one,.curiosity-three{left:4px}.curiosity-two,.curiosity-four{right:4px}.curiosity-five{top:3%;width:62px;height:82px}.curiosity span{font-size:.5rem}.curiosity.is-inspecting{transform:scale(1.25)!important}}@media(prefers-reduced-motion:reduce){.curiosity-vault *{animation:none!important;transition:none!important}}

.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;
}

