/* BitBagan LLC website styles */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f4f4f4;
}

header {
    background-color: #00468b;
    color: #fff;
    padding: 0.5rem 1rem;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

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

.nav-links li {
    margin-left: 1rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

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

/*
 * The hero section now uses a futuristic tech background image. To ensure
 * the text remains readable, a semi‑transparent dark gradient is layered
 * on top of the image. You can replace `tech-bg.png` with any other
 * image placed in the assets folder.
 */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('tech-bg.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 3rem 1rem;
    text-align: center;
}

.hero h1 {
    margin: 0 0 1rem;
    font-size: 2.4rem;
}

.hero p {
    font-size: 1.2rem;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #fff;
}

.section {
    margin-bottom: 2rem;
}

.section h2 {
    color: #00468b;
    margin-bottom: 0.5rem;
}

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

.product-card {
    background-color: #f9f9f9;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.product-card h3 {
    margin-top: 0;
    color: #00468b;
}

footer {
    background-color: #00468b;
    color: #fff;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}

form label {
    display: block;
    margin-top: 1rem;
    color: #00468b;
}

form input,
form textarea {
    width: 100%;
    padding: 0.5rem;
    margin-top: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

form input[type="submit"] {
    margin-top: 1rem;
    background-color: #00468b;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 0.6rem 1rem;
    border-radius: 4px;
}

form input[type="submit"]:hover {
    background-color: #003760;
}
