@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Roboto:wght@400&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    background-color: #FBF9F1; /* Creamy off-white */
    color: #333;
}

header {
    background: url('../assets/header-bg.png') no-repeat center center/cover;
    color: white;
    padding: 4rem 1rem;
    text-align: center;
    position: relative;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

header h1, header p {
    position: relative;
    z-index: 1;
}

header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin: 0;
}

header p {
    font-size: 1.2rem;
}

nav {
    background-color: #2C5F2D; /* Rich dark green */
    padding: 1rem;
    text-align: center;
}

nav a {
    color: white;
    margin: 0 1.5rem;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover {
    color: #97BC62; /* Lighter accent green */
}

.products {
    padding: 2rem;
    text-align: center;
}

.products h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2C5F2D; /* Rich dark green */
}

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

.product-card {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.product-card img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.product-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

.product-link {
    text-decoration: none;
    color: inherit;
}

.price {
    font-weight: bold;
    color: #558B2F; /* Muted green for price */
    font-size: 1.2rem;
}

button {
    background-color: #2C5F2D; /* Rich dark green */
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #558B2F; /* Muted green on hover */
    color: white;
}

footer {
    background-color: #2C5F2D; /* Rich dark green */
    color: white;
    text-align: center;
    padding: 1.5rem;
    margin-top: 2rem;
}
