@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("streetwear_assets/HEADBAND_SLIDER.png");}
  .item2 {
    background-image: url("streetwear_assets/Supreme_Mossy_Oak_Hat.png"), radial-gradient(circle, #3e4522 0%, #080a05 70%);
    background-size: contain, cover;  }
  .item3 {
    background-image: url("streetwear_assets/BAPE_ABC_Shark_Tee.png"), radial-gradient(circle, #15395b 0%, #050a10 70%);
    background-size: contain, cover;  }
  .item4 {
    background-image: url("streetwear_assets/michigan_sweatshirt.png"), radial-gradient(circle, #132b4f 0%, #05080e 70%);
    background-size: contain, cover;  }
  .item5 {
    background-image: url("streetwear_assets/supreme_ghost_rider_tee_orange.png"), radial-gradient(circle, #6a2910 0%, #0b0604 70%);
    background-size: contain, cover;  }


/* 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;
}

.streetwear-drop { --drop-x:0px; --drop-x-back:0px; --drop-y:0px; position:relative; height:620px; overflow:hidden; isolation:isolate; color:#fff; font-family:'Signika Negative',Arial,sans-serif; background:radial-gradient(circle at 50% 42%,#272727 0,#111 42%,#050505 100%); border-block:10px solid chartreuse; }
.drop-grid { position:absolute; z-index:0; inset:0; opacity:.22; background-image:linear-gradient(rgba(127,255,0,.2) 1px,transparent 1px),linear-gradient(90deg,rgba(127,255,0,.2) 1px,transparent 1px); background-size:54px 54px; transform:perspective(500px) rotateX(62deg) scale(1.6) translateY(32%); transform-origin:bottom; }
.drop-noise { position:absolute; z-index:6; inset:0; opacity:.045; pointer-events:none; background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E"); }
.streetwear-drop::before { content:""; position:absolute; z-index:1; inset:0; pointer-events:none; background:repeating-linear-gradient(0deg,transparent 0 3px,rgba(255,255,255,.018) 4px); }
.drop-tape { position:absolute; z-index:8; left:-6%; width:112%; overflow:hidden; color:#050505; background:chartreuse; box-shadow:0 7px 22px #0009; font-weight:900; font-style:italic; letter-spacing:.13em; white-space:nowrap; transform:rotate(-2deg); }
.drop-tape span { display:inline-block; min-width:200%; padding:8px 0; animation:streetTape 13s linear infinite; }
.drop-tape-top { top:24px; }.drop-tape-bottom { bottom:24px; transform:rotate(2deg); background:#fff; }.drop-tape-bottom span { animation-direction:reverse; animation-duration:16s; }
@keyframes streetTape { to { transform:translateX(-50%); } }
.drop-terminal { position:absolute; z-index:5; top:50%; left:50%; width:min(580px,calc(100% - 480px)); box-sizing:border-box; padding:34px 40px 40px; border:1px solid #626262; border-radius:3px; background:linear-gradient(145deg,rgba(25,25,25,.96),rgba(5,5,5,.98)); box-shadow:14px 14px 0 #000,15px 15px 0 chartreuse,0 30px 80px #000c; transform:translate(calc(-50% + var(--drop-x-back)),calc(-50% + var(--drop-y))); transition:transform .2s ease-out; }
.terminal-status { display:flex; align-items:center; gap:8px; padding-bottom:12px; color:#9c9c9c; font:700 .68rem monospace; letter-spacing:.13em; border-bottom:1px solid #333; }.terminal-status span { width:8px;height:8px;border-radius:50%;background:chartreuse;box-shadow:0 0 10px chartreuse;animation:statusBlink 1.2s infinite alternate}.terminal-status b{margin-left:auto;color:chartreuse}@keyframes statusBlink{to{opacity:.35}}
.drop-number { margin:25px 0 7px; color:chartreuse; font:700 .78rem monospace; letter-spacing:.12em; }
.drop-terminal h2 { margin:0; font-size:clamp(2.7rem,5.2vw,5rem); line-height:.88; letter-spacing:-.055em; text-transform:uppercase; }.drop-terminal h2 em { color:transparent; font-style:normal; -webkit-text-stroke:1px chartreuse; text-shadow:4px 4px 0 #173c00; }
.drop-copy { max-width:470px; margin:22px 0 25px; color:#bcbcbc; font-size:1rem; line-height:1.45; }
.streetwear-ebay-button { display:inline-flex; align-items:center; gap:9px; padding:13px 18px; color:#050505; text-decoration:none; background:chartreuse; border:2px solid chartreuse; font-weight:800; text-transform:uppercase; letter-spacing:.04em; box-shadow:6px 6px 0 #fff; transition:transform .16s ease,box-shadow .16s ease,background .16s ease; }.streetwear-ebay-button:hover{color:#fff;background:#111;transform:translate(-2px,-2px);box-shadow:9px 9px 0 chartreuse}.streetwear-ebay-button strong{display:inline-flex;font:900 1.3rem Arial,sans-serif;letter-spacing:-2px;text-transform:none}.streetwear-ebay-button i{font-style:normal}.streetwear-ebay-button i:nth-child(1){color:#e53238}.streetwear-ebay-button i:nth-child(2){color:#0064d2}.streetwear-ebay-button i:nth-child(3){color:#f5af02}.streetwear-ebay-button i:nth-child(4){color:#86b817}
.drop-product { position:absolute; z-index:3; display:block; object-fit:contain; filter:drop-shadow(0 28px 22px #000d); transition:transform .2s ease-out; }.drop-product-left{left:4%;bottom:70px;width:min(260px,20vw);transform:translate(var(--drop-x),var(--drop-y)) rotate(-9deg);animation:productFloat 4.8s ease-in-out infinite}.drop-product-right{right:3%;bottom:72px;width:min(300px,23vw);transform:translate(var(--drop-x-back),var(--drop-y)) rotate(8deg);animation:productFloat 5.4s 1s ease-in-out infinite}.drop-product-back{left:50%;top:65px;width:190px;opacity:.16;filter:grayscale(1) drop-shadow(0 20px 15px #000);transform:translateX(-50%) scale(1.8) rotate(-4deg)}
@keyframes productFloat{50%{margin-bottom:14px}}
.drop-stamp { position:absolute; z-index:4; right:22%;top:18%;width:88px;height:88px;display:grid;place-content:center;color:chartreuse;text-align:center;font:900 .78rem monospace;line-height:1.1;border:3px double chartreuse;border-radius:50%;opacity:.75;transform:rotate(12deg);animation:stampTurn 12s linear infinite}@keyframes stampTurn{to{rotate:360deg}}
@media(max-width:900px){.streetwear-drop{height:560px}.drop-terminal{width:calc(100% - 270px);padding:30px}.drop-product-left{width:150px;left:1%}.drop-product-right{width:170px;right:0}.drop-stamp{right:17%;top:15%}}
@media(max-width:600px){.streetwear-drop{height:590px}.drop-terminal{width:calc(100% - 42px);padding:27px 22px 32px}.drop-copy{font-size:.9rem}.streetwear-ebay-button>span{display:none}.drop-product{opacity:.32}.drop-product-left{width:120px;bottom:55px}.drop-product-right{width:135px;bottom:55px}.drop-product-back{width:130px}.drop-stamp{display:none}.drop-tape{font-size:.72rem}}
@media(prefers-reduced-motion:reduce){.streetwear-drop *{animation:none!important;transition:none!important}.terminal-status span{opacity:1}}

.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;
}

