/* Root Variables */
:root {
    /* Using exact colors from v0 original design */
    --background: oklch(0.15 0 0); /* Deep charcoal black #262626 */
    --foreground: oklch(0.95 0.01 85); /* Warm ivory #f2ede5 */
    --primary: oklch(0.95 0.01 85); /* Ivory for primary actions */
    --primary-foreground: oklch(0.15 0 0); /* Dark text on ivory */
    --muted: oklch(0.25 0 0); /* Medium gray #404040 */
    --muted-foreground: oklch(0.65 0 0); /* Muted gray text #a6a6a6 */
    --card: oklch(0.18 0 0); /* Slightly lighter #2d2d2d */
    --border: oklch(0.28 0 0); /* Subtle borders #474747 */
    --accent: oklch(0.3 0 0); /* Subtle accent #3d3d3d */
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Inter, 'Helvetica Neue', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    letter-spacing: 0.3px;
    font-weight: 400;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Buttons */
.btn {
    display: inline-block !important;
    padding: 0.875rem 2rem !important;
    border: 2px solid var(--foreground) !important;
    background: transparent !important;
    color: var(--foreground) !important;
    text-decoration: none !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.05em !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-align: center !important;
    border-radius: 0.375rem !important;
}

.btn:hover {
    background-color: var(--foreground) !important;
    color: var(--background) !important;
}

.btn-primary {
    background-color: var(--primary) !important;
    color: var(--primary-foreground) !important;
    border-color: var(--primary) !important;
}

.btn-primary:hover {
    opacity: 0.9;
    background-color: var(--primary) !important;
    color: var(--primary-foreground) !important;
}

.btn-outline {
    background: transparent !important;
    border-color: var(--foreground) !important;
    color: var(--foreground) !important;
}

.btn-outline:hover {
    background-color: var(--foreground) !important;
    color: var(--background) !important;
}

.btn-lg {
    padding: 1.25rem 2.5rem !important;
    font-size: 0.9375rem !important;
}

.btn-full {
    width: 100% !important;
}

/* Utilities */
.text-center {
    text-align: center;
}

.text-muted {
    color: var(--muted-foreground);
}

.mt-4 {
    margin-top: 1rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.gap-4 {
    gap: 1rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0px;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
}

.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 600px;
    opacity: 0.9;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.chevron-down {
    color: rgba(255, 255, 255, 0.7);
    font-size: 2rem;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* Featured Products */
.featured-products {
    padding: 5rem 1rem;
    background-color: var(--background);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 600px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    text-decoration: none;
    color: inherit;
    border: 2px solid var(--border);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background-color: var(--muted);
}

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

.product-info {
    padding: 1.5rem;
}

.product-category {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.product-name {
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.05em;
	text-transform: uppercase;
}

.section-footer {
    text-align: center;
}

/* Brand Story */
.brand-story {
    padding: 5rem 1rem;
    background-color: var(--card);
}

.brand-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

/* Mobile: image first, text second */
.brand-text {
    order: 2;
}

.brand-image {
    order: 1;
    border-radius: 1rem;
    overflow: hidden;
}

.brand-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 1rem;
}

.brand-title {
    font-size: 1.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.brand-description {
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--muted-foreground);
}

/* Page Hero */
.page-hero {
    padding: 8rem 1rem 5rem;
    margin-top: 80px;
}

.page-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.page-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 600px;
}

/* Responsive */
@media (max-width: 768px) {
    #header-space {
		display:none !important;
	}
	
	.hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .brand-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }

    .desktop-only {
        display: none !important;
    }
}

/* Utilities for responsive */
.mobile-only {
    display: none;
}

@media (max-width: 768px) {
	#header-space {
		display:none !important;
	}
	
    .mobile-only {
        display: block;
    }
}

/* Desktop: text on left (order 1), image on right (order 2) */
@media (min-width: 769px) {
    #header-space {
		display:none !important;
	}
	
	.brand-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
    
    .brand-text {
        order: 1;
    }
    
    .brand-image {
        order: 2;
    }
}
