/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

:root {
    --mk-dark: #050505;
    --mk-gray: #121212;
    --mk-card: #1e1e1e;
    --mk-text: #ffffff;
    --mk-text-muted: #a0a0a0;

    /* Vibrant Gradient Colors */
    --mk-red: #ff0055;
    --mk-cyan: #00ffff;
    --mk-purple: #9d00ff;
    --mk-gold: #ffd700;

    --mk-gradient-primary: linear-gradient(135deg, var(--mk-red), var(--mk-purple));
    --mk-gradient-text: linear-gradient(90deg, var(--mk-cyan), var(--mk-purple), var(--mk-red));
    --mk-glass: rgba(255, 255, 255, 0.05);
    --mk-glass-border: rgba(255, 255, 255, 0.1);
}

body {
    background-color: var(--mk-dark);
    color: var(--mk-text);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
}

/* Typography & Utils */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.text-gradient {
    background: var(--mk-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: gradientMove 5s linear infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Navbar */
.navbar {
    background: rgba(5, 5, 5, 0.9) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--mk-glass-border);
}

.navbar-brand img {
    height: 40px;
    border-radius: 5px;
}

.nav-link {
    color: var(--mk-text-muted) !important;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--mk-text) !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.btn-gradient {
    background: var(--mk-gradient-primary);
    color: white;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 0, 85, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 85, 0.6);
    color: white;
}

.btn-outline-light {
    border-radius: 50px;
    padding: 8px 20px;
}

/* Hero Section */
.hero-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(to bottom, rgba(5, 5, 5, 0.3), var(--mk-dark)),
        url('https://images.unsplash.com/photo-1549887534-1541e9326642?q=80&w=1920&auto=format&fit=crop');
    /* Fallback Placeholder for 'Cabalgata' style */
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    background: radial-gradient(circle at center, transparent 0%, var(--mk-dark) 90%);
    position: absolute;
    inset: 0;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 300;
}

/* Glass Cards */
.card-glass {
    background: var(--mk-glass);
    border: 1px solid var(--mk-glass-border);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.card-glass:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.product-card img {
    border-radius: 10px;
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-title {
    font-size: 1.1rem;
    margin-top: 15px;
    margin-bottom: 5px;
}

.product-price {
    color: var(--mk-cyan);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Footer */
footer {
    background: black;
    border-top: 1px solid var(--mk-glass-border);
    margin-top: 50px;
}

/* Helpers */
.bg-dark-section {
    background-color: var(--mk-gray);
}