/* Variables for easy color changes */
:root {
    --primary-color: #007bff; /* Blue */
    --secondary-color: #6c757d; /* Gray */
    --background-color: #f8f9fa; /* Light Gray/Off-white */
    --card-background: #ffffff; /* White */
    --text-color: #343a40; /* Dark Gray */
    --whatsapp-green: #25d366; 
}

/* Base Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header/Hero Section */
.hero {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero h1 {
    margin-top: 0;
    font-size: 2.5em;
}

.hero p {
    font-size: 1.2em;
}

/* Main Content Sections */
main {
    padding: 40px 0;
}

section {
    margin-bottom: 40px;
    padding: 20px;
    background: var(--card-background);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

h2 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--background-color);
    padding-bottom: 10px;
    margin-top: 0;
}

/* Products Layout (Empty for now) */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.placeholder-text {
    grid-column: 1 / -1; /* Span across all columns */
    text-align: center;
    padding: 50px 0;
    font-style: italic;
    color: var(--secondary-color);
}


/* WhatsApp Contact Button Styling */
.whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--whatsapp-green);
    color: white;
    padding: 12px 25px;
    border-radius: 50px; /* Pill shape */
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
    margin-top: 15px;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
}

.whatsapp-button:hover {
    background-color: #128C7E; /* Darker green on hover */
    transform: translateY(-2px); /* Lift effect */
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.6);
}

.whatsapp-button i {
    margin-right: 10px;
    font-size: 1.3em;
}

.note-text {
    font-size: 0.9em;
    color: var(--secondary-color);
    margin-top: 15px;
}

/* Footer */
footer {
    background-color: var(--text-color);
    color: white;
    text-align: center;
    padding: 15px 0;
    font-size: 0.9em;
    margin-top: 40px;
}