/*
Theme Name: DecoFurnish
Theme URI: https://example.com/decofurnish
Author: Antigravity
Author URI: https://example.com
Description: A modern, elegant WordPress theme for furniture and decoration companies.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: decofurnish
Tags: furniture, decoration, modern, elegant, responsive
*/

:root {
    --primary-color: #5D4037;
    /* Brown 700 */
    --secondary-color: #D7CCC8;
    /* Brown 100 */
    --accent-color: #E64A19;
    /* Deep Orange 700 */
    --text-color: #333333;
    --background-color: #FFFFFF;
    --light-gray: #F5F5F5;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    color: var(--primary-color);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Helper Classes */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: var(--accent-color);
    color: #fff;
}

.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

/* Navigation */
.main-navigation {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.main-navigation li {
    margin-left: 20px;
}

.main-navigation a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 700;
}

.menu-toggle {
    display: none;
}

/* Mobile Menu */
@media (max-width: 768px) {
    .main-navigation ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #fff;
        position: absolute;
        top: 60px;
        /* Adjust based on header height */
        left: 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .main-navigation.toggled ul {
        display: flex;
    }

    .main-navigation li {
        margin: 0;
        text-align: center;
        border-bottom: 1px solid #eee;
    }

    .main-navigation a {
        display: block;
        padding: 15px;
    }

    .menu-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
    }
}

/* Header */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px;
}

/* Generic Layout */
.site-content {
    min-height: 60vh;
}

/* Footer */
.site-footer {
    background-color: var(--primary-color);
    color: #fff;
    padding: 2rem 0;
    text-align: center;
}

.site-footer a {
    color: var(--secondary-color);
}