@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

:root {
    --primary: #007bff;
    --dark: #0f1014;
    --darker: #050505;
    --gray: #2a2c33;
    --text: #ffffff;
    --text-muted: #a0a6b1;
    --accent: #e63946;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--darker);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 { font-weight: 800; text-transform: uppercase; letter-spacing: -1px; }
p { font-weight: 300; font-size: 1.1rem; color: var(--text-muted); }

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(5, 5, 5, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    text-decoration: none;
}

.logo span { color: var(--primary); }

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}
.nav-links a:hover { color: var(--primary); }

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 10%;
    position: relative;
    background: linear-gradient(to right, var(--darker) 30%, transparent), url('../images/hero.png');
    background-size: cover;
    background-position: center;
}

.hero-content { max-width: 600px; }
.hero-content h1 { font-size: 4rem; margin-bottom: 1.5rem; line-height: 1; }
.hero-content h1 span { color: var(--primary); }
.hero-content p { margin-bottom: 2rem; }

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary { background: var(--primary); color: white; border: none; }
.btn-primary:hover { background: #0056b3; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3); }

/* Sections */
section { padding: 8rem 10%; }

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}
.section-title h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.section-title .underline {
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: 0 auto;
}

/* Product Cards */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--gray);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.product-img {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.product-info { padding: 1.5rem; }
.product-info h3 { margin-bottom: 0.5rem; font-size: 1.2rem; }

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: var(--gray);
    padding: 4rem;
    border-radius: 20px;
}

.contact-info h3 { margin-bottom: 1rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-form input, .contact-form textarea {
    background: var(--darker);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 1rem;
    color: white;
    font-family: inherit;
    border-radius: 5px;
}

/* Footer */
footer {
    padding: 3rem 10%;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 3rem; }
    .contact-container { grid-template-columns: 1fr; padding: 2rem; }
    nav { padding: 1rem 5%; }
    .nav-links { display: none; }
}
