/*
Theme Name: Varistor Solar
Theme URI: https://varistorsolar.com
Author: Your Name
Description: A custom WordPress theme for solar energy solutions.
Version: 1.0
License: GNU General Public License v2 or later
Tags: custom-theme, solar-energy, responsive, clean
*/

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: #f8f9fa;
    color: #333;
}

h1, h2, h3 {
    color: #ff9800;
}

/* Header */
header {
    background: #fff;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

nav a {
    text-decoration: none;
    color: #333;
    padding: 10px 15px;
    font-weight: bold;
    transition: all 0.3s ease;
}

nav a:hover {
    color: #ff9800;
}

/* Hero Section */
.hero {
    background: url('https://www.varistorsolar.com/wp-content/uploads/2024/08/Varistor-Solar-Blog-Banner.png') no-repeat center center/cover;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero h1 {
    font-size: 50px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

/* Grid Section */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 40px;
}

.grid-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 20px;
}
