/*
Theme Name: Pune Veneers Theme
Theme URI: https://puneveneersandlaminates.com/
Author: Techmates Solution PUNE
Author URI: https://techmates-solutions.com/
Description: A premium WordPress theme for Pune Veneers & Laminates, featuring Italian-Indian aesthetics.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pune-veneers
*/

/* --- VARIABLES & RESET --- */
:root {
    --cream: #FDFBF7;
    --beige: #F5EFE6;
    --sand: #E8E0D5;
    --terracotta: #C06C55;
    --olive: #4A5D46;
    --charcoal: #2C2C2C;
    --brass: #BFA67A;
    --brass-light: #D4C098;
    --white: #FFFFFF;
    
    --font-display: 'Cinzel', serif;
    --font-body: 'Lato', sans-serif;

    --space-s: 1rem;
    --space-m: 2rem;
    --space-l: 4rem;
    --space-xl: 6rem;

    --radius-md: 12px;
    --radius-lg: 24px;
    
    --shadow-soft: 0 10px 40px -10px rgba(0,0,0,0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    background-color: var(--cream);
    color: var(--charcoal);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); color: var(--olive); }
h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--olive); margin-bottom: var(--space-m); }
a { text-decoration: none; color: inherit; transition: 0.3s ease; }
img { max-width: 100%; height: auto; display: block; object-fit: cover; }

/* --- UTILITIES --- */
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-m { gap: var(--space-m); }
.gap-s { gap: var(--space-s); }
.section-padding { padding: var(--space-xl) 0; }
.text-center { text-align: center; }

.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 1rem 2rem; border-radius: 50px;
    font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    font-size: 0.85rem; cursor: pointer; transition: all 0.3s ease;
    border: 1px solid transparent;
}
.btn-primary { background-color: var(--terracotta); color: var(--white); }
.btn-primary:hover { background-color: var(--olive); transform: translateY(-2px); }

/* --- HEADER & NAV --- */
header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
    background: rgba(253, 251, 247, 0.95); backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.nav-inner { height: 80px; display: flex; align-items: center; justify-content: space-between; }
.logo { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--olive); letter-spacing: -0.02em; }
.logo span { color: var(--terracotta); }

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; }
.nav-links a:hover, .nav-links .current-menu-item a { color: var(--terracotta); }

/* Mobile Menu Toggle */
.mobile-toggle { display: none; font-size: 1.5rem; color: var(--charcoal); background: none; border: none; cursor: pointer; }

/* --- FOOTER --- */
footer { background: var(--charcoal); color: var(--sand); padding: 4rem 0; margin-top: 4rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 3rem; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 3rem; }
.footer-col h4 { color: #fff; margin-bottom: 1.5rem; font-family: var(--font-display); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.8rem; }
.footer-col a:hover { color: var(--terracotta); }

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .mobile-toggle { display: block; }
    .nav-links {
        display: none; /* Hidden by default on mobile */
        position: absolute; top: 80px; left: 0; width: 100%;
        background: var(--cream); flex-direction: column;
        padding: 2rem; border-bottom: 1px solid rgba(0,0,0,0.1);
        text-align: center; gap: 1.5rem;
    }
    .nav-links.active { display: flex; }
}