@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
    --neon-red: #f20d0d;
    --neon-blue: #0dcaf0;
    --bg-dark: #0a0a0a;
    --bg-surface: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

.glass {
    background: var(--bg-surface);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--neon-red);
    text-decoration: none;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(242, 13, 13, 0.5);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    font-size: 1.1rem;
}

nav a:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 8px rgba(13, 202, 240, 0.6);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    position: relative;
    background: linear-gradient(rgba(10, 10, 10, 0.4), rgba(10, 10, 10, 0.9)),
        url('assets/hero.png');
    background-size: cover;
    background-position: center;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--neon-red), var(--neon-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.hero p {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.cta-button {
    padding: 1rem 2.5rem;
    background: var(--neon-red);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(242, 13, 13, 0.6);
}

/* Sections */
section {
    padding: 8rem 5%;
}

h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--neon-red);
}

/* Grid Layouts */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: scale(1.02);
    border-color: var(--neon-blue);
    box-shadow: 0 0 30px rgba(13, 202, 240, 0.2);
}

.card img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Floating WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #25d366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    cursor: pointer;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 30px rgba(37, 211, 102, 0.6);
    }

    100% {
        transform: scale(1);
    }
}

.card-whatsapp-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #25d366;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition);
}

.card-whatsapp-btn:hover {
    background: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
}

/* Social Media Icons */
.social-footer {
    margin-top: 2rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.social-footer a {
    color: var(--text-primary);
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-footer a:hover {
    color: var(--neon-blue);
    transform: translateY(-3px);
}

/* Shop Categories */
.categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-pill {
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--neon-blue);
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.category-pill:hover,
.category-pill.active {
    background: var(--neon-blue);
    color: var(--bg-dark);
}

footer {
    padding: 4rem 5%;
    background: #050505;
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    header {
        padding: 1rem 5%;
    }

    nav {
        display: none;
    }
}