/*
Theme Name: Grand Furniture Theme
Author: Gemini
Description: A custom WordPress theme inspired by Grand Furniture.
Version: 1.0
*/

/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 90%;
    margin: auto;
    max-width: 1200px;
    padding: 20px 0;
}

/* Header */
header {
    background-color: #f8f8f8;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

header h1 a {
    text-decoration: none;
    color: #333;
}

header p {
    color: #777;
    font-size: 0.9em;
    margin-top: 5px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

nav ul li {
    display: inline-block;
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #555;
    font-weight: bold;
}

/* Hero Section */
.hero-section {
    background-color: #d9534f; /* Grand Furniture Red */
    color: white;
    text-align: center;
    padding: 100px 0;
    margin-bottom: 40px;
}

.hero-section h2 {
    font-size: 3em;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.hero-section button {
    background-color: #333; /* Dark Gray */
    color: white;
    padding: 15px 30px;
    border: none;
    cursor: pointer;
    font-size: 1.1em;
    border-radius: 5px;
}

/* Product Categories & Featured Products */
.product-categories, .featured-products {
    margin-bottom: 40px;
}

.product-categories h3, .featured-products h3 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 30px;
    color: #333;
}

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

.category-item, .product-item {
    background-color: #f8f8f8;
    border: 1px solid #eee;
    padding: 20px;
    text-align: center;
    font-weight: bold;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section h2 {
        font-size: 2.2em;
    }

    .hero-section p {
        font-size: 1em;
    }

    nav ul li {
        display: block;
        margin: 10px 0;
    }

    .category-grid, .product-grid {
        grid-template-columns: 1fr;
    }
}
