/* public/css/style.css - Zura Collection Theme */
@import url('https://fonts.googleapis.com/css2?family=Audiowide&display=swap');

:root {
    --pink-primary: #ff69b4;
    --pink-dark: #ff1493;
    --black-pekat: #0a0a0a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Audiowide', cursive;
    background: var(--black-pekat);
    color: #fff;
    overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #1a1a1a;
}
::-webkit-scrollbar-thumb {
    background: var(--pink-primary);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--pink-dark);
}

/* Glow Text */
.glow-text {
    text-shadow: 0 0 20px rgba(255,105,180,0.8), 
                 0 0 40px rgba(255,105,180,0.5), 
                 0 0 80px rgba(255,20,147,0.3);
}

/* Card Glass */
.glass-card {
    background: rgba(20,20,20,0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,105,180,0.2);
    border-radius: 15px;
    transition: all 0.3s;
}
.glass-card:hover {
    border-color: var(--pink-primary);
    box-shadow: 0 0 30px rgba(255,105,180,0.2);
    transform: translateY(-5px);
}

/* Button */
.btn-glow {
    background: linear-gradient(135deg, var(--pink-primary), var(--pink-dark));
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 10px 25px;
    font-family: 'Audiowide', cursive;
    transition: all 0.3s;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}
.btn-glow:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255,105,180,0.5);
    color: #fff;
}

/* Social Icons */
.social-glow {
    color: #fff;
    font-size: 24px;
    transition: all 0.3s;
    text-shadow: 0 0 10px rgba(255,105,180,0.3);
}
.social-glow:hover {
    color: var(--pink-primary);
    text-shadow: 0 0 30px rgba(255,105,180,0.8), 0 0 60px rgba(255,20,147,0.4);
    transform: scale(1.2);
}

/* Slide Vapor Effect */
.vapor-effect {
    position: relative;
    overflow: hidden;
}
.vapor-effect::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(255,105,180,0.1) 0%, transparent 70%);
    animation: vapor 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}
@keyframes vapor {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    50% { transform: translate(10%, -10%) scale(1.2); opacity: 0.8; }
}

/* Product Card */
.product-card {
    background: rgba(20,20,20,0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,105,180,0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
}
.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--pink-primary);
    box-shadow: 0 10px 40px rgba(255,105,180,0.3);
}
.product-card img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
    .glow-text {
        font-size: 1.5rem;
    }
    .social-glow {
        font-size: 18px;
    }
}