
/* site.css - Spice-Themed Styling for Trinetra Spices */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff9f0;
    color: #4e2e1c;
}
h1, h2, h3 {
    color: #7b3f00;
    margin-bottom: 10px;
}
p { line-height: 1.6; }
a { color: #a84300; text-decoration: none; }
a:hover { text-decoration: underline; }
header {
    background-color: #7b3f00;
    color: white;
    padding: 15px 0;
    text-align: center;
}
header img { height: 60px; margin-bottom: 10px; }
.nav {
    background-color: #f4e3d7;
    padding: 10px;
    text-align: center;
}
.nav a {
    margin: 0 15px;
    color: #7b3f00;
    font-weight: bold;
    font-size: 16px;
}
.container {
    max-width: 960px;
    margin: auto;
    padding: 20px;
}
img { max-width: 100%; height: auto; }
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 15px;
    margin-top: 20px;
}
.product-card {
    background-color: #fff3e0;
    border: 1px solid #e0c4a8;
    padding: 15px;
    text-align: center;
    border-radius: 10px;
    font-weight: bold;
    color: #5a3210;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}
.product-card:hover {
    transform: scale(1.05);
    background-color: #ffe4c4;
}
.product-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 8px;
}
.button {
    display: inline-block;
    background-color: #a84300;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 10px;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
}
.button:hover { background-color: #873700; }
footer {
    background-color: #7b3f00;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 30px;
    font-size: 14px;
}
