/*
Theme Name: She Style Closet
Theme URI: https://shestylecloset.com
Author: She Style Closet Team
Author URI: https://shestylecloset.com
Description: A luxury, high-fashion editorial WordPress magazine theme designed for women's fashion, beauty, style, jewelry, and lifestyle. Ultra-fast, lightweight, accessible, and SEO-optimized.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: she-style-closet
Tags: fashion, blog, magazine, beauty, lifestyle, grid-layout, two-columns, custom-header, custom-menu, featured-images, full-width-template, theme-options, translation-ready

--------------------------------------------------------------
>>> TABLE OF CONTENTS:
1. CSS Variables & Reset
2. Typography & Base Styles
3. Header, Navigation & Mobile Menu
4. Editorial Hero & Magazine Grids
5. Article Cards & Hover States
6. Section Layouts (Trending, Beauty, Fashion, Jewelry, Editor's Picks)
7. Single Post, Gutenberg & Typography
8. Reusable Blocks (Shop The Look, Pro Tip, Editor's Note, Key Takeaways)
9. Sidebar, Widgets & Author Bio
10. Archive, Category, Search & 404
11. Newsletter & Instagram Strip
12. Footer & Utility
13. Responsive Breakpoints & Accessibility
-------------------------------------------------------------- */

/* 1. CSS VARIABLES & COLOR PALETTE */
:root {
  --bg-primary: #FAF9F5;
  --bg-secondary: #F4F1EA;
  --bg-card: #FFFFFF;
  --bg-elevated: #EDE8DE;
  
  --text-primary: #111111;
  --text-secondary: #4A4A4A;
  --text-muted: #767676;
  --text-inverse: #FFFFFF;
  
  --border-light: #E8E4DA;
  --border-subtle: #DCD6CA;
  --border-dark: #111111;
  
  --accent-taupe: #B8AFA6;
  --accent-taupe-dark: #8C827A;
  --accent-rose: #C28B8B;
  --accent-rose-light: #F7EEEE;
  --accent-gold: #C5A880;
  
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-heading: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  
  --container-max: 1320px;
  --container-narrow: 1140px;
  --reading-width: 760px;
  
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
  
  --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.04);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 12px 36px rgba(0, 0, 0, 0.12);
  
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* 2. RESET & BASE STYLES */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover, a:focus {
  color: var(--accent-rose);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

h1 { font-size: clamp(2.2rem, 4vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.85rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.08em; }

p {
  margin-bottom: 1.4rem;
}

.site-container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.site-container--narrow {
  max-width: var(--container-narrow);
}

.site-container--reading {
  max-width: var(--reading-width);
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}
