
:root {
    --primary: #111;
    --secondary: #f5f5f5;
    --accent: #111;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #111;
    line-height: 1.5;
    background-color: white;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-weight: 500;
    letter-spacing: -0.5px;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Custom animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
}

/* Custom scroll behavior */
html {
    scroll-behavior: smooth;
}
/* Product hover effects */
.product-card:hover {
    transform: scale(1.02);
    transition: transform 0.2s ease;
}

/* Nike-style product cards */
.product-card {
    border-radius: 0;
    box-shadow: none;
    transition: all 0.2s ease;
}

.product-card img {
    object-fit: cover;
    width: 100%;
    height: auto;
}

/* Buttons */
.btn {
    border-radius: 30px;
    font-weight: 500;
    padding: 12px 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.btn-outline {
    background: transparent;
    border: 1px solid currentColor;
}

.btn:hover {
    opacity: 0.8;
}
/* Hero Video Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
}

/* Button Styles */
.btn {
    display: inline-block;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 2rem;
    transition: all 0.3s ease;
}
.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--accent);
    transform: translateY(-2px);
}
/* Responsive Typography */
@media (max-width: 640px) {
    .text-hero {
        font-size: 2.5rem;
    }
}
/* Custom button styles */
.btn-primary {
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive typography */
@media (max-width: 640px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
}