/* Basic Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #0d0d0d;
    color: #e0e0e0;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header and Navigation */
.header {
    background-color: #1a1a1a;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #007BFF; /* Accent color for the logo */
}

.nav a {
    margin-left: 25px;
    font-weight: 400;
    color: #b0b0b0;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #007BFF;
}

.cart-icon {
    font-size: 1.2rem;
}

/* Hero Section */
.hero {
    position: relative;
    text-align: center;
    padding: 120px 20px; /* Increased padding to give breathing room */
    background-color: #111; /* Background stays dark */
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    color: #422bdc;
    max-width: 700px;
    margin: 0 auto 30px;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #007BFF;
    color: white;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #0056b3;
}

/* Featured Products Section */
.featured-products {
    padding: 80px 0;
}

.featured-products h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
}

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

.product-card {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.product-card img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.product-card p {
    color: #b0b0b0;
    margin-bottom: 15px;
}

.price {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: #007BFF;
    margin-bottom: 15px;
}

.add-to-cart {
    background-color: #007BFF;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.add-to-cart:hover {
    background-color: #0056b3;
}

/* Why Choose Us Section */
.about-us {
    padding: 80px 0;
    background-color: #121212;
}

.about-us h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 20px;
    background-color: #1a1a1a;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.feature-item .icon {
    font-size: 2.5rem;
    color: #007BFF;
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-item p {
    color: #b0b0b0;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #333;
}

.footer .social-links a {
    color: #b0b0b0;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.footer .social-links a:hover {
    color: #007BFF;
}

.footer p {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #b0b0b0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        text-align: center;
    }
    .nav {
        margin-top: 15px;
    }
    .nav a {
        margin: 0 10px;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .featured-products h2, .about-us h2 {
        font-size: 2rem;
    }
}
