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

header {
    background: #2c3e50;
    color: white;
    padding: 20px;
    text-align: center;
}
nav ul {
    list-style: none;
    padding: 0;
    text-align: center;
    margin: 0.5;
}
nav ul li {
    display: inline;
    margin: 0 15px;
    
}
nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    
}

nav ul li a:hover {
    color: #3498db;
    border-radius: 5px;

}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* Products Section */
#products {
    margin-bottom: 30px;
    padding: 20px;
    background: #ecf0f1;
    border-radius: 8px;
}
#products h2 {
    text-align: center;
}

/* Flexbox Layout for Product Row */
.product-row {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap; /* Ensure they stack on smaller screens */
    margin-top: 20px;
}

/* Product Cards */
.product {
    flex: 1;
    min-width: 280px; /* Prevents the product cards from being too small */
    max-width: 300px; /* Prevents the product cards from being too large */
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

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

.product h3 {
    font-size: 20px;
    margin-bottom: 10px;
     font-weight: bold;
    font-style: italic;
}

.product p {
    font-size: 14px;
    color: #555;
    
}
.product:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer 
{
    text-align: center;
    padding: 20px;
    background: #567fa8;
    color: white;
    margin-top: 20px;
}

