/*
Theme Name: Fashion Life 4U
Theme URI: https://fashionlife4u.com/
Author: Antigravity
Author URI: 
Description: A custom WordPress theme based on Fashion Life 4U.
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: fashionlife4u
Tags: e-commerce, custom-background, custom-colors, custom-header, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

:root {
	--primary-color: #000000;
	--text-color: #111111;
	--text-muted: #666666;
	--border-color: #DADADA;
	--background-color: #FFFFFF;
	--background-soft: #F2F2F2;
	--font-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }

body {
	margin: 0;
	background: var(--background-color);
	color: var(--text-color);
	font-family: var(--font-primary);
	line-height: 1.6;
}

a {
	color: var(--primary-color);
	text-decoration: none;
	transition: color 0.2s ease;
}
a:hover { color: var(--text-muted); }
img { height: auto; max-width: 100%; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; width: 100%; }

/* --- Layout --- */
.site { display: flex; flex-direction: column; min-height: 100vh; }
.site-content { flex-grow: 1; padding: 2rem 0; }

/* --- Top Bar --- */
.top-bar {
	background-color: var(--primary-color);
	color: var(--background-color);
	text-align: center;
	padding: 8px 0;
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.05em;
}
.top-bar p { margin: 0; }

/* --- Header --- */
.site-header {
	background: var(--background-color);
	border-bottom: 1px solid var(--border-color);
}
.header-main { padding: 1rem 0; }
.header-grid {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.site-branding .site-title { margin: 0; font-size: 1.5rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }

.main-navigation ul {
	list-style: none; margin: 0; padding: 0;
	display: flex; gap: 1.5rem;
}
.main-navigation a { font-weight: 600; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 0.5px; }

.header-utilities {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	font-size: 0.9rem;
	font-weight: 600;
}
.header-utilities a { text-transform: uppercase; }

/* --- Hero Section --- */
.hero-section {
	background-color: var(--background-soft);
	padding: 100px 20px;
	text-align: center;
	margin-bottom: 3rem;
}
.hero-title { font-size: 3rem; margin: 0 0 10px; font-weight: 800; text-transform: uppercase; }
.hero-subtitle { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 2rem; }
.button {
	display: inline-block;
	background: var(--primary-color);
	color: var(--background-color);
	padding: 12px 30px;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 1px;
	border: 1px solid var(--primary-color);
	transition: all 0.3s ease;
}
.button:hover {
	background: var(--background-color);
	color: var(--primary-color);
}

/* --- Sections --- */
.section-title {
	text-align: center;
	font-size: 2rem;
	margin-bottom: 2rem;
	text-transform: uppercase;
}

/* --- Footer --- */
.site-footer {
	background: var(--background-soft);
	border-top: 1px solid var(--border-color);
	padding: 3rem 1rem;
	text-align: center;
	margin-top: auto;
}
