/*
Theme Name: Janki Jewellers
Theme URI: 
Author: Janki Jewellers
Author URI: 
Description: Custom theme for Janki Jewellers — Gold & Silver Jewellery Showcase
Text Domain: janki-jewellers
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

/* ==========================================================================
   CSS Variables (Theme Palette & Typography)
   ========================================================================== */
:root {
	/* Color Palette */
	--color-primary: #800020; /* Deep Burgundy/Maroon */
	--color-secondary: #D4AF37; /* Gold */
	--color-accent: #C0392B;
	--color-dark: #1a1a1a;
	--color-light: #F8F5F0; /* Cream White */
	--color-white: #FFFFFF;
	--color-text: #333333;
	--color-text-light: #777777;

	/* Typography */
	--font-heading: 'Playfair Display', serif;
	--font-body: 'Poppins', sans-serif;
}

/* ==========================================================================
   Basic CSS Reset
   ========================================================================== */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--color-text);
	background-color: var(--color-white);
	line-height: 1.6;
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	color: var(--color-primary);
	margin-bottom: 0.5em;
	font-weight: 600;
}

a {
	color: var(--color-primary);
	text-decoration: none;
	transition: all 0.3s ease-in-out;
}

a:hover,
a:focus {
	color: var(--color-secondary);
	text-decoration: none;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* Additional specific theme styles are mapped in assets/css/main.css and responsive.css */
