* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #ffffff;
    color: #000000;
    line-height: 1.6;
}

/* Header & Navigation */
header {
    background-color: #000000;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

.logo {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 3px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 20px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.7;
}

/* Search Bar */
.search-container {
    display: flex;
    align-items: center;
}

.search-container input {
    padding: 6px 10px;
    border: 1px solid #ffffff;
    background: transparent;
    color: #ffffff;
    outline: none;
    font-size: 14px;
}

.search-container button {
    background: #ffffff;
    color: #000000;
    border: none;
    padding: 7px 12px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-color: #000000;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    padding-top: 80px;
}

.hero-content h1 {
    font-size: 60px;
    letter-spacing: 5px;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 40px;
    letter-spacing: 1px;
    color: #cccccc;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 35px;
    background-color: #ffffff;
    color: #000000;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn:hover {
    background-color: #000000;
    color: #ffffff;
}

/* Products Section */
.products {
    padding: 100px 50px;
    text-align: center;
    background-color: #ffffff;
}

.products h2 {
    font-size: 32px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 50px;
}

.product-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.product-card {
    background: #ffffff;
    border: 1px solid #000000;
    padding: 20px;
    width: 300px;
    text-align: center;
}
.product-img {
    width: 100%;       /* Makes the image fit the width of the product card box */
    max-width: 250px;  /* Limits how wide the image can get */
    height: 250px;     /* Sets a fixed height so all product photos look uniform */
    object-fit: cover; /* Crops the image neatly so it doesn't stretch or squish */
    border: 1px solid #000000;
    margin-bottom: 20px;
    display: block;
    margin-left: auto; /* Centers the image inside the card */
    margin-right: auto;
}


.product-card h3 {
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.product-card .price {
    font-weight: bold;
    margin-bottom: 20px;
}

.pre-order-btn {
    width: 100%;
    background-color: #000000;
    color: #ffffff;
    border: 2px solid #000000;
}

.pre-order-btn:hover {
    background-color: #ffffff;
    color: #000000;
}

/* About Section */
.about {
    background-color: #f9f9f9;
    padding: 100px 50px;
    text-align: center;
}

.about h2 {
    font-size: 32px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
}

.about p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    color: #333333;
}

/* Footer Section */
footer {
    background-color: #000000;
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

footer h3 {
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

footer p a {
    color: #ffffff;
    text-decoration: underline;
}

.social-links {
    margin: 25px 0;
}

.social-links a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 16px;
}

.social-links a:hover {
    text-decoration: underline;
}

.copyright {
    font-size: 12px;
    color: #666666;
    margin-top: 30px;
}

/* Responsive adjustments for phones */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 15px;
    }
    .nav-links {
        margin: 15px 0;
    }
    .hero-content h1 {
        font-size: 40px;
    }
    .products, .about {
        padding: 60px 20px;
    }
}
