/* style.css */

/* General page styling */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333333;
}

/* Header section with a bold, punchy red background */
header {
    background-color: #CC0000; 
    color: #ffffff;
    text-align: center;
    padding: 2.5rem 1rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

header p {
    font-size: 1.2rem;
    margin-top: 0.5rem;
    font-weight: 300;
}

/* Product card layout */
.product-container {
    display: flex;
    justify-content: center;
    padding: 3rem 1rem;
}

.product-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.08);
    padding: 2rem;
    text-align: center;
    max-width: 350px;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

/* Image placeholder styling */
.product-card img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    border: 1px solid #eeeeee;
}

.product-card h2 {
    color: #111111;
    margin-bottom: 0.5rem;
}

.product-card p {
    color: #666666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Call to action button */
.buy-btn {
    display: inline-block;
    background-color: #CC0000;
    color: #ffffff;
    text-decoration: none;
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 4px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.buy-btn:hover {
    background-color: #990000;
}