/*
Theme Name:   Fashion Elite Child
Theme URI:    https://fashioneliteone.com
Description:  GeneratePress Child Theme for Fashion Elite
Author:       Fashion Elite
Template:     generatepress
Version:      1.0.0
*/

/* =============================================
   IMPORT PARENT THEME
   ============================================= */
@import url("../generatepress/style.css");

/* =============================================
   GOOGLE FONTS — lightweight, fashion-forward
   ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
  --fe-black: #1a1a1a;
  --fe-white: #ffffff;
  --fe-cream: #faf8f5;
  --fe-blush: #f5ede8;
  --fe-rose: #c97d6e;
  --fe-rose-dark: #a6614f;
  --fe-gold: #c9a96e;
  --fe-gray: #888;
  --fe-light-gray: #e8e4df;
  --fe-heading-font: 'Cormorant Garamond', Georgia, serif;
  --fe-body-font: 'Jost', system-ui, sans-serif;
  --fe-transition: all 0.3s ease;
  --fe-shadow: 0 2px 20px rgba(0,0,0,0.06);
  --fe-shadow-hover: 0 8px 40px rgba(0,0,0,0.12);
}

/* =============================================
   GLOBAL RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--fe-body-font);
  font-weight: 300;
  color: var(--fe-black);
  background: var(--fe-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--fe-rose); text-decoration: none; transition: var(--fe-transition); }
a:hover { color: var(--fe-rose-dark); }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--fe-heading-font);
  font-weight: 400;
  line-height: 1.2;
  color: var(--fe-black);
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 3vw, 2rem); }

p { margin-bottom: 1.2em; }

.section-label {
  font-family: var(--fe-body-font);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fe-rose);
  display: block;
  margin-bottom: 0.5rem;
}

/* =============================================
   SITE HEADER
   ============================================= */
.site-header {
  background: var(--fe-white);
  border-bottom: 1px solid var(--fe-light-gray);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
}

.site-header .inside-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
}

/* Logo */
.site-logo img,
.header-image img {
  max-height: 50px;
  width: auto;
}

/* Navigation */
.main-navigation {
  font-family: var(--fe-body-font);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-navigation a {
  color: var(--fe-black);
  padding: 0.5rem 1rem;
}

.main-navigation a:hover { color: var(--fe-rose); }

.main-navigation .current-menu-item > a { color: var(--fe-rose); }

/* Dropdown */
.main-navigation .sub-menu {
  background: var(--fe-white);
  border: 1px solid var(--fe-light-gray);
  border-top: 2px solid var(--fe-rose);
  box-shadow: var(--fe-shadow);
  border-radius: 0 0 4px 4px;
  min-width: 180px;
}

.main-navigation .sub-menu a {
  font-size: 0.75rem;
  padding: 0.6rem 1.2rem;
  border-bottom: 1px solid var(--fe-light-gray);
  display: block;
}

.main-navigation .sub-menu a:last-child { border-bottom: none; }

/* =============================================
   HERO SECTION
   ============================================= */
.fe-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--fe-cream);
}

.fe-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-image: url('https://fashioneliteone.com/wp-content/uploads/2025/04/White-Green-Nature-Giveaway-Facebook-Cover-1-1024x577.png');
}

.fe-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(250,248,245,0.92) 0%,
    rgba(250,248,245,0.75) 50%,
    rgba(250,248,245,0.3) 100%
  );
}

.fe-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  width: 100%;
}

.fe-hero-content .eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fe-rose);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.fe-hero-content .eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--fe-rose);
}

.fe-hero-content h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  font-style: italic;
  max-width: 640px;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.fe-hero-content h1 strong {
  font-weight: 600;
  font-style: normal;
  display: block;
}

.fe-hero-content p {
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 480px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

/* =============================================
   BUTTONS
   ============================================= */
.fe-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--fe-body-font);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  transition: var(--fe-transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.fe-btn-primary {
  background: var(--fe-black);
  color: var(--fe-white);
}

.fe-btn-primary:hover {
  background: var(--fe-rose);
  color: var(--fe-white);
  transform: translateY(-1px);
}

.fe-btn-outline {
  background: transparent;
  color: var(--fe-black);
  border: 1px solid var(--fe-black);
}

.fe-btn-outline:hover {
  background: var(--fe-black);
  color: var(--fe-white);
}

/* =============================================
   CATEGORY CARDS SECTION
   ============================================= */
.fe-categories {
  padding: 5rem 2rem;
  background: var(--fe-white);
}

.fe-categories .section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.fe-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.fe-category-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  display: block;
  text-decoration: none;
}

.fe-category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.fe-category-card:hover img { transform: scale(1.06); }

.fe-category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26,26,26,0.75) 0%,
    rgba(26,26,26,0.1) 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.8rem;
  transition: var(--fe-transition);
}

.fe-category-card:hover .fe-category-card-overlay {
  background: linear-gradient(
    to top,
    rgba(26,26,26,0.85) 0%,
    rgba(26,26,26,0.2) 50%,
    transparent 100%
  );
}

.fe-category-card h3 {
  color: var(--fe-white);
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  margin: 0 0 0.3rem;
}

.fe-category-card .card-cta {
  color: rgba(255,255,255,0.7);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--fe-body-font);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--fe-transition);
}

.fe-category-card:hover .card-cta {
  color: var(--fe-gold);
  gap: 0.75rem;
}

.fe-category-card .card-cta::after {
  content: '→';
}

/* =============================================
   BANNER / INFO SECTION
   ============================================= */
.fe-info-banner {
  background: var(--fe-black);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.fe-info-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,125,110,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.fe-info-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.fe-info-banner h2 {
  color: var(--fe-white);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.fe-info-banner h2 strong {
  color: var(--fe-gold);
  font-style: normal;
  font-weight: 600;
}

.fe-info-banner p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 2rem;
}

.fe-category-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.fe-category-tab {
  font-family: var(--fe-body-font);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.55rem 1.2rem;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  background: transparent;
  cursor: pointer;
  transition: var(--fe-transition);
  text-decoration: none;
  display: inline-block;
}

.fe-category-tab:hover,
.fe-category-tab.active {
  background: var(--fe-rose);
  border-color: var(--fe-rose);
  color: var(--fe-white);
}

/* Video Container */
.fe-video-wrap {
  position: relative;
  aspect-ratio: 9/16;
  max-width: 340px;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.fe-video-wrap video,
.fe-video-wrap iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =============================================
   IMAGE GALLERY STRIP
   ============================================= */
.fe-gallery-strip {
  padding: 4rem 0;
  background: var(--fe-cream);
  overflow: hidden;
}

.fe-gallery-strip .section-header {
  text-align: center;
  padding: 0 2rem;
  margin-bottom: 2.5rem;
}

.fe-gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
  padding: 0 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.fe-gallery-grid .fe-gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}

.fe-gallery-grid .fe-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.fe-gallery-grid .fe-gallery-item:hover img {
  transform: scale(1.08);
}

.fe-gallery-grid .fe-gallery-item.wide {
  grid-column: span 2;
}

/* =============================================
   BLOG POSTS SECTION
   ============================================= */
.fe-blog-section {
  padding: 6rem 2rem;
  background: var(--fe-white);
}

.fe-blog-section .section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.fe-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.fe-post-card {
  display: flex;
  flex-direction: column;
  background: var(--fe-white);
  border: 1px solid var(--fe-light-gray);
  transition: var(--fe-transition);
  overflow: hidden;
}

.fe-post-card:hover {
  box-shadow: var(--fe-shadow-hover);
  transform: translateY(-4px);
  border-color: transparent;
}

.fe-post-card-thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.fe-post-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.fe-post-card:hover .fe-post-card-thumb img { transform: scale(1.05); }

.fe-post-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.fe-post-card-cat {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fe-rose);
  margin-bottom: 0.6rem;
}

.fe-post-card h3 {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: 0.8rem;
  flex: 1;
}

.fe-post-card h3 a {
  color: var(--fe-black);
}

.fe-post-card h3 a:hover { color: var(--fe-rose); }

.fe-post-card .post-meta {
  font-size: 0.72rem;
  color: var(--fe-gray);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--fe-light-gray);
}

/* "View All" button centered */
.fe-blog-section .fe-view-all {
  text-align: center;
  margin-top: 3rem;
}

/* =============================================
   MARQUEE STRIP (replaces heavy slider)
   ============================================= */
.fe-marquee-section {
  background: var(--fe-blush);
  padding: 3rem 0;
  overflow: hidden;
}

.fe-marquee-track {
  display: flex;
  gap: 0.5rem;
  animation: marquee 40s linear infinite;
  width: max-content;
}

.fe-marquee-track:hover { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.fe-marquee-track img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  flex-shrink: 0;
}

/* =============================================
   NEWSLETTER SECTION
   ============================================= */
.fe-newsletter {
  background: var(--fe-cream);
  padding: 5rem 2rem;
  text-align: center;
}

.fe-newsletter h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 0.75rem;
}

.fe-newsletter p {
  color: var(--fe-gray);
  font-size: 0.95rem;
  max-width: 400px;
  margin: 0 auto 2rem;
}

.fe-newsletter-form {
  display: flex;
  gap: 0;
  max-width: 420px;
  margin: 0 auto;
}

.fe-newsletter-form input[type="email"] {
  flex: 1;
  padding: 0.85rem 1.2rem;
  border: 1px solid var(--fe-light-gray);
  border-right: none;
  font-family: var(--fe-body-font);
  font-size: 0.9rem;
  outline: none;
  background: var(--fe-white);
}

.fe-newsletter-form input[type="email"]:focus {
  border-color: var(--fe-rose);
}

.fe-newsletter-form button {
  padding: 0.85rem 1.5rem;
  background: var(--fe-black);
  color: var(--fe-white);
  font-family: var(--fe-body-font);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--fe-transition);
}

.fe-newsletter-form button:hover { background: var(--fe-rose); }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--fe-black);
  color: rgba(255,255,255,0.65);
  padding: 4rem 2rem 2rem;
  font-size: 0.85rem;
}

.fe-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.fe-footer-brand .site-logo img { max-height: 40px; filter: brightness(0) invert(1); }

.fe-footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  line-height: 1.8;
  margin-top: 1rem;
}

.fe-footer-col h4 {
  color: var(--fe-white);
  font-family: var(--fe-body-font);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.fe-footer-col ul { list-style: none; padding: 0; margin: 0; }
.fe-footer-col ul li { margin-bottom: 0.6rem; }
.fe-footer-col ul li a {
  color: rgba(255,255,255,0.55);
  transition: var(--fe-transition);
  font-size: 0.85rem;
}
.fe-footer-col ul li a:hover { color: var(--fe-rose); }

.fe-footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

.fe-social-links {
  display: flex;
  gap: 1rem;
}

.fe-social-links a {
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--fe-transition);
}

.fe-social-links a:hover { color: var(--fe-rose); }

/* =============================================
   SINGLE POST STYLES
   ============================================= */
.single .entry-content {
  font-size: 1.05rem;
  line-height: 1.9;
  max-width: 760px;
  margin: 0 auto;
}

.single .entry-content h2 {
  font-size: 1.8rem;
  font-style: italic;
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--fe-light-gray);
}

.single .entry-content h3 {
  font-size: 1.35rem;
  margin: 2rem 0 0.75rem;
}

.single .entry-content img {
  border-radius: 2px;
  box-shadow: var(--fe-shadow);
  margin: 2rem auto;
}

/* Post Header */
.fe-post-header {
  background: var(--fe-cream);
  padding: 4rem 2rem 3rem;
  text-align: center;
  margin-bottom: 3rem;
}

.fe-post-header .post-cats {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fe-rose);
  font-weight: 600;
  margin-bottom: 1rem;
}

.fe-post-header h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-style: italic;
  font-weight: 300;
  max-width: 800px;
  margin: 0 auto 1rem;
}

/* =============================================
   GENERATEPRESS OVERRIDES
   ============================================= */

/* Remove GP default padding on full-width pages */
.page-template-elementor_header_footer .site-main,
.page-template-default .site-main {
  padding: 0;
}

/* GP container width */
.inside-article,
.inside-page-header {
  max-width: 1200px;
}

/* Remove default GP header when using custom header */
.has-custom-header .site-header { display: none; }

/* Sidebar on blog listing */
.sidebar .widget-title {
  font-family: var(--fe-body-font);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--fe-light-gray);
  margin-bottom: 1rem;
}

/* =============================================
   RESPONSIVE — TABLET
   ============================================= */
@media (max-width: 900px) {
  .fe-category-grid { grid-template-columns: repeat(2, 1fr); }
  .fe-posts-grid { grid-template-columns: repeat(2, 1fr); }
  .fe-info-banner-inner { grid-template-columns: 1fr; gap: 3rem; }
  .fe-footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .fe-gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

/* =============================================
   RESPONSIVE — MOBILE
   ============================================= */
@media (max-width: 600px) {
  .fe-category-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .fe-posts-grid { grid-template-columns: 1fr; }
  .fe-footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .fe-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .fe-video-wrap { max-width: 100%; }
  .fe-newsletter-form { flex-direction: column; }
  .fe-newsletter-form input[type="email"],
  .fe-newsletter-form button { width: 100%; border: 1px solid var(--fe-light-gray); }
  .fe-footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .fe-hero { min-height: 70vh; }
}

/* =============================================
   PERFORMANCE — CRITICAL
   ============================================= */

/* Prevent layout shift from images */
.fe-post-card-thumb,
.fe-category-card,
.fe-gallery-item {
  background-color: var(--fe-light-gray);
}

/* Smooth scroll */
html { scroll-behavior: smooth; }

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .fe-marquee-track { animation: none; }
  * { transition: none !important; }
}
