/* GLOBAL SETTINGS */
/* --- ENTRANCE ANIMATION (MATCHING CONTACT PAGE) --- */
body {
    animation: homeFadeIn 1s ease-out forwards;
}

@keyframes homeFadeIn {
    from { 
        opacity: 0; 
        transform: translateY(20px); /* Starts slightly lower */
        filter: blur(5px); /* Adds a subtle glass-load effect */
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
        filter: blur(0);
    }
}

/* Fix for the fixed header so it doesn't "jump" during the animation */
.main-header {
    animation: headerFade 1.2s ease-in-out;
}

@keyframes headerFade {
    from { opacity: 0; }
    to { opacity: 1; }
}
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 5vw;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #111;
}
.header-container { display: flex; justify-content: space-between; align-items: center; }
.nav-logo { font-family: 'Syncopate'; font-weight: 700; color: #fff; text-decoration: none; font-size: 1.2rem; }
.nav-links { display: flex; gap: 30px; }
.nav-links a { color: #fff; text-decoration: none; font-weight: 900; font-size: 0.8rem; letter-spacing: 2px; transition: 0.3s; }
.nav-links a:hover { color: #F0F000; }
.header-actions .nav-icon-btn { background: #FF007F; color: #fff; padding: 8px 15px; text-decoration: none; font-weight: 900; font-size: 0.7rem; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    background: #000; 
    color: #fff; 
    font-family: 'Inter', sans-serif; 
    overflow-x: hidden; 
}

/* HERO SECTION */
.v3-hero { 
    position: relative; 
    height: 100vh; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    overflow: hidden;
}

.v3-hero-bg { 
    position: absolute; 
    inset: 0; 
    background-image: url('assets/image_0.jpg'); /* Make sure this image is in your assets folder */
    background-size: cover; 
    background-position: center; 
    filter: grayscale(100%) brightness(0.3); 
    z-index: -2;
}

.v3-overlay { 
    position: absolute; 
    inset: 0; 
    background: linear-gradient(180deg, transparent 0%, #000 100%); 
    z-index: -1;
}

.v3-logo { width: 120px; margin-bottom: 20px; }

.v3-title { 
    font-family: 'Syncopate', sans-serif; 
    font-size: clamp(3.5rem, 15vw, 11rem); 
    line-height: 0.8; 
    margin: 0; 
    letter-spacing: -5px;
    background: linear-gradient(90deg, #F0F000, #FF007F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.v3-title .dot { -webkit-text-fill-color: #FF007F; }

/* UPDATED SEAMLESS TICKER */
.v3-ticker { 
    background: #F0F000; 
    color: #000; 
    padding: 12px 0; 
    margin-top: 30px; 
    overflow: hidden; 
    white-space: nowrap; 
    font-weight: 900; 
    text-transform: uppercase; 
    transform: rotate(-1deg); 
    width: 120%; /* Keeps it wider than the screen so edges are hidden */
    margin-left: -10%;
    display: flex;
}

.ticker-track {
    display: flex;
    flex-shrink: 0;
    width: max-content;
    animation: tickerLoop 30s linear infinite; /* Adjusted speed for smoother reading */
}

.ticker-track span {
    display: inline-block;
    padding-right: 0px; /* Space is handled by the text itself */
    font-size: 1.1rem;
    letter-spacing: 2px;
}

/* THE MAGIC LOOP */
@keyframes tickerLoop {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Resets halfway through the double-text */
}

/* Optional: Stop scrolling when someone hovers (pro touch) */
.v3-ticker:hover .ticker-track {
    animation-play-state: paused;
    cursor: default;
}

/* BUTTONS */
.v3-actions { margin-top: 50px; display: flex; gap: 20px; justify-content: center; }

.v3-btn-main { 
    padding: 20px 50px; 
    background: #FF007F; 
    color: #fff; 
    text-decoration: none; 
    font-weight: 900; 
    border: 2px solid #FF007F;
    box-shadow: 6px 6px 0px #F0F000;
    transition: 0.3s;
}

.v3-btn-outline {
    padding: 20px 50px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    transition: 0.3s;
}

.v3-btn-main:hover { transform: translate(-3px, -3px); box-shadow: 10px 10px 0px #F0F000; }
.v3-btn-outline:hover { background: #fff; color: #000; }

/* BENTO GRID */
.v3-bento { padding: 100px 5vw; background: #000; }
.bento-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    grid-template-rows: repeat(2, 320px); 
    gap: 15px; 
    max-width: 1400px;
    margin: 0 auto;
}

.bento-item { padding: 40px; display: flex; flex-direction: column; justify-content: space-between; }
.tall-card { grid-column: span 2; grid-row: span 2; }
.wide-card { grid-column: span 2; }
.small-card { grid-column: span 2; }

.pink-bg { background: #FF007F; }
.yellow-bg { background: #F0F000; }
.black-bg { border: 1px solid #222; background: #080808; }

.bento-num { font-size: 4rem; font-weight: 900; opacity: 0.3; line-height: 1; }
.bento-item h3 { font-family: 'Syncopate', sans-serif; font-size: 2.2rem; margin: 0; }
.dark-text { color: #000; }

.stat-row { display: flex; gap: 50px; }
.stat span { display: block; font-size: 0.75rem; color: #666; letter-spacing: 2px; }
.stat strong { font-size: 2.5rem; font-weight: 900; color: #F0F000; }

@media (max-width: 900px) {
    .bento-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .tall-card, .wide-card, .small-card { grid-column: span 1; }
    .v3-actions { flex-direction: column; align-items: center; }
}
/* SHOP SECTION */
.shop-section { padding: 100px 5vw; background: #000; }
.shop-header { margin-bottom: 60px; text-align: left; }
.section-title { font-family: 'Syncopate'; font-size: 3rem; letter-spacing: -2px; }
.section-sub { color: #F0F000; font-weight: 900; letter-spacing: 4px; font-size: 0.7rem; margin-top: 10px; }

/* PRODUCT GRID */
.product-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); 
    gap: 30px; 
    max-width: 1400px; 
    margin: 0 auto; 
}

/* THE CARD */
.product-card { 
    background: #080808; 
    border: 1px solid #111; 
    padding: 20px; 
    transition: 0.3s; 
}
.product-card:hover { border-color: #222; }

/* IMAGE SWAP LOGIC */
.product-image-wrapper { 
    position: relative; 
    width: 100%; 
    aspect-ratio: 1/1; 
    background: #0d0d0d; 
    overflow: hidden; 
    margin-bottom: 20px;
}

.product-image-wrapper img { 
    position: absolute; 
    top: 0; left: 0; 
    width: 100%; height: 100%; 
    object-fit: contain; 
    transition: opacity 0.4s ease-in-out; 
}

.img-back { opacity: 0; }
.product-card:hover .img-front { opacity: 0; }
.product-card:hover .img-back { opacity: 1; }

/* TAGS & INFO */
.product-tag { 
    position: absolute; top: 15px; left: 15px; 
    background: #F0F000; color: #000; 
    font-size: 0.6rem; font-weight: 900; 
    padding: 5px 10px; z-index: 2; 
}

.info-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.info-top h3 { font-weight: 900; font-size: 1.1rem; letter-spacing: 1px; }
.price { color: #FF007F; font-weight: 900; }
.product-desc { color: #666; font-size: 0.8rem; line-height: 1.4; margin-bottom: 25px; }

/* SHOP BUTTON */
.buy-btn { 
    width: 100%; padding: 18px; 
    background: #FF007F; color: #fff; 
    border: none; font-weight: 900; cursor: pointer; 
    box-shadow: 5px 5px 0px #F0F000; 
    transition: 0.3s; 
    letter-spacing: 1px;
}

.buy-btn:hover { 
    transform: translate(-2px, -2px); 
    box-shadow: 8px 8px 0px #F0F000; 
}

/* PLACEHOLDER CARD */
.coming-soon { 
    height: 100%; display: flex; align-items: center; justify-content: center; 
    color: #222; font-family: 'Syncopate'; font-size: 2rem; 
}
.placeholder { opacity: 0.5; filter: grayscale(1); }

@media (max-width: 600px) { .product-grid { grid-template-columns: 1fr; } }