/* General Styling */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #121212; /* Dark background */
    color: #e6e6e6;
}

header {
    width: 100%;
    background-color: #3d3836; /* Dark gray background */
    padding: 10px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo img {
    width: 180px; /* Adjusted logo size */
    height: auto;
}

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

.nav-links li {
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: #bdb7b4; /* Lighter gray for text */
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: #fff; /* White on hover */
    font-size: 18px; /* Larger font size on hover */
    transform: scale(1.1); /* Slight zoom effect */
}

.menu-icon {
    display: none;
    font-size: 30px;
    color: #fff;
}

/* Product Styling */
.content-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
}

.product-image img {
    width: 600px; /* Adjust product image size */
    height: auto;
}

.product-details {
    margin-left: 40px;
    max-width: 600px;
}

.product-details h1 {
    font-size: 2.5em;
    color: #fff;
}

.product-details p {
    font-size: 1.2em;
    line-height: 1.6;
    color: #bdb7b4;
}

/* Mobile View */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .menu-icon {
        display: block;
    }

    .content-container {
        flex-direction: column;
        align-items: center;
    }

    .product-image img {
        width: 300px; /* Smaller image for mobile */
    }

    .product-details {
        margin-left: 0;
        text-align: center;
    }
}
