/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

/* Body and Layout */
body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
}

/* Header */
header {
    position: sticky;
    top: 0;
    background: #000;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    z-index: 1000;
}

header .logo {
    font-size: 1.5rem;
    font-weight: bold;
}

header nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
    font-weight: bold;
}

/* Sections */
.section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
}

/* Hero Section */
.hero {
    background: url('https://source.unsplash.com/1600x900/?car-parts') center/cover;
    color: white;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
}

.hero h1 {
    font-size: 2.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin: 10px 0 20px;
}

.cta {
    display: inline-block;
    background: #f90;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

/* Product Grid */
.products {
    background: #fff;
}

.products h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.product {
    background: #eee;
    padding: 20px;
    border-radius: 5px;
    font-weight: bold;
}

/* About Section */
.about {
    background: #f0f0f0;
}

/* Contact Section */
.contact {
    background: #fff;
}

.contact form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 400px;
}

input, textarea, button {
    padding: 10px;
    font-size: 1rem;
}

button {
    background: #f90;
    color: white;
    border: none;
    cursor: pointer;
}

/* Footer */
footer {
    background: #000;
    color: white;
    text-align: center;
    padding: 10px;
}

.socials a {
    color: #f90;
    text-decoration: none;
    margin: 0 10px;
}
