/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #ff0000;
    background-color: #65201f;
}

h1, h2, h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
header {
    background-color: #1a1a1a;
    color: #000000;
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.navbar .logo a {
    font-size: 1.8em;
    color: #fff;
    font-weight: 700;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: #ff0000;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('hero-image.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.5em;
    margin-bottom: 30px;
}

.hero .btn {
    background-color: #e60000;
    color: #fff;
    padding: 15px 30px;
    font-size: 1.2em;
    border-radius: 30px;
    transition: background-color 0.3s ease;
}

.hero .btn:hover {
    background-color: #b30000;
}

/* About Section */
.about {
    background-color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.about h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
}

.about p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
}

/* Products Section */
.products {
    background-color: #f9f9f9;
    padding: 80px 20px;
    text-align: center;
}

.products h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
}

.product-card {
    display: inline-block;
    width: 30%;
    margin: 15px;
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

.product-card h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
}

.product-card p {
    font-size: 1.1em;
    margin-bottom: 20px;
}

.product-card a {
    font-weight: bold;
    color: #e60000;
    font-size: 1.1em;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    text-align: center;
}

footer p {
    font-size: 1.1em;
}

/* Media Queries for responsiveness */
@media (max-width: 768px) {
    .navbar ul {
        display: block;
        text-align: center;
    }

    .navbar ul li {
        margin: 10px 0;
    }

    .product-card {
        width: 80%;
        margin: 20px auto;
    }

    .hero-content h1 {
        font-size: 2.5em;
    }

    .hero-content p {
        font-size: 1.2em;
    }
}

img{
  width: 30em;





}