/* 
    Blaskicks - Modern Streetwear Landing Page
    Professional Design System
*/

:root {
    --primary: #00B4D8; /* Celeste */
    --background: #F8F9FA;
    --contrast: #1A1A1A;
    --support: #E0E0E0;
    --white: #FFFFFF;
    --blue: #00B4D8; /* WhatsApp celeste accent */
    --blue-dark: #0077B6;
    --shadow-soft: 0 4px 15px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.1);
    --font-titles: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius: 12px;
    --transition: all 0.3s ease-in-out;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    background-color: var(--background);
    color: var(--contrast);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-titles);
    font-weight: 800;
    text-transform: uppercase;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 4px;
    background-color: var(--primary);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.98);
    color: var(--white);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid #222;
    transition: var(--transition);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 98%;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 35px;
    width: auto;
    object-fit: contain;
}
.text-celeste { color: var(--primary); }
.text-negro { color: var(--contrast); }
.text-blanco { color: var(--white); }

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-weight: 400;
    font-size: 0.95rem;
    color: #f0f0f0;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary);
}

.btn-whatsapp-nav {
    background-color: var(--blue);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
}

.btn-whatsapp-nav:hover {
    background-color: var(--blue-dark);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(26, 26, 26, 0.4), rgba(26, 26, 26, 0.4)), 
                url('./Imagenes/zapas3.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--white);
    padding-top: 100px;
}

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

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.btn-primary {
    background-color: var(--blue);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 50px;
    font-family: var(--font-titles);
    font-weight: 700;
    display: inline-block;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: var(--contrast);
    transform: scale(1.05);
}

/* Bento Grid Catalog */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 400px;
    gap: 20px;
}

.bento-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background-color: var(--white);
    box-shadow: var(--shadow-soft);
    cursor: pointer;
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bento-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bento-item:hover img {
    transform: scale(1.1);
}

.bento-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.bento-info h3 {
    font-size: 1.2rem;
    margin: 0;
}

.bento-info i {
    font-size: 1.5rem;
    opacity: 0.8;
}

/* Budget Section */
.budget-card {
    background-color: var(--support);
    border-radius: var(--radius);
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.budget-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--primary);
}

.budget-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.budget-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #444;
}

.btn-whatsapp {
    background-color: var(--blue);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-whatsapp:hover {
    background-color: var(--blue-dark);
    transform: scale(1.05);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-medium);
}

/* Testimonials */
.testimonials-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.stars {
    color: var(--blue);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.client-name {
    font-weight: 700;
    color: var(--primary);
    display: block;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.contact-info h2 {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: start;
    gap: 15px;
    margin-bottom: 25px;
}

.info-item i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-top: 5px;
}

.map-placeholder {
    height: 100%;
    min-height: 300px;
    background-color: var(--support);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #888;
    gap: 10px;
}

.map-placeholder i {
    font-size: 3rem;
}

/* Footer */
.footer {
    padding: 80px 0 20px;
    background-color: var(--contrast);
    color: var(--white);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    color: var(--white);
    display: block;
    margin-bottom: 15px;
}

.footer-brand p {
    opacity: 0.7;
    font-weight: 300;
}

.footer-links {
    display: flex;
    gap: 100px;
}

.link-group h4 {
    margin-bottom: 20px;
    font-size: 1rem;
}

.link-group a {
    display: block;
    margin-bottom: 10px;
    opacity: 0.7;
    font-size: 0.9rem;
}

.link-group a:hover {
    opacity: 1;
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

.footer-bottom p {
    font-size: 0.8rem;
    opacity: 0.5;
}

/* Catalog Modal */
.catalog-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.catalog-modal.active {
    display: block;
}

.modal-content {
    background-color: var(--background);
    margin: 5% auto 10% auto;
    padding: 40px;
    width: 95%;
    max-width: 1200px;
    border-radius: var(--radius);
    box-shadow: 0 15px 50px rgba(0,0,0,0.5);
    position: relative;
    animation: modalSlideIn 0.4s ease-out forwards;
}

@keyframes modalSlideIn {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--support);
    padding-bottom: 20px;
}

.close-modal {
    color: var(--contrast);
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary);
    transform: scale(1.1);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 20px; /* More vertical space */
}

.product-card {
    background: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-3px);
}

.product-image-container {
    background-color: #f5f5f5; /* Clean light grey */
    width: 100%;
    aspect-ratio: 4/5;
    position: relative;
    border-radius: 8px; /* Soft rounding */
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 3rem;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply; /* Blends white bg images nicely into grey */
}

.btn-favorite {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--contrast);
    cursor: pointer;
    opacity: 0.6;
    transition: 0.2s;
}
.btn-favorite:hover { opacity: 1; transform: scale(1.1); color: var(--primary); }

.product-info {
    padding: 0 5px;
    text-align: left; /* Minimalist left align */
}

.status-badge {
    color: var(--primary); /* Celeste */
    font-size: 0.9rem;
    font-weight: 700;
    font-family: var(--font-body);
    margin-bottom: 6px;
}

.product-info h3 {
    font-size: 1.15rem;
    margin-bottom: 4px;
    color: var(--contrast);
    font-weight: 800; /* Bold Name */
    font-family: var(--font-titles);
    text-transform: none; /* No auto capitalize */
}

.product-info .subtitle {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 12px;
    font-family: var(--font-body);
}

.product-info .price {
    font-size: 1.25rem;
    font-weight: 800;
    font-family: var(--font-titles);
    color: var(--contrast); /* Black price like reference */
    margin-bottom: 15px;
}

/* WhatsApp consult button */
.btn-consult-whatsapp {
    background-color: var(--contrast); /* Dark Nike style */
    color: var(--white);
    border: none;
    padding: 12px 25px;
    border-radius: 30px; /* Pill shape */
    font-weight: 700;
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
    width: max-content;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s, transform 0.2s;
}

.btn-consult-whatsapp:hover {
    background-color: #333; /* Slightly lighter black on hover */
    transform: scale(1.02);
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--blue);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(0, 180, 216, 0.4);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background-color: var(--blue-dark);
    transform: scale(1.1) rotate(15deg);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 350px 350px;
    }
    .hero h1 { font-size: 2.8rem; }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.98);
        padding: 40px 0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        gap: 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero h1 { font-size: 1.8rem; margin-bottom: 15px; }
    .hero p { font-size: 1rem; margin-bottom: 25px; }
    .about-grid, .contact-grid, .testimonials-list, .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        flex-direction: column;
        gap: 40px;
    }

    .section-title { font-size: 2rem; }
    .budget-card { padding: 40px 20px; }
}

@media (max-width: 480px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 300px);
    }
    .hero { text-align: center; }
    .products-grid {
        grid-template-columns: 1fr;
    }
}
