/*
Theme Name: TechZed Luxe
Theme URI: https://techzed.in/
Author: Gurdeep Singh (TechZed)
Author URI: https://techzed.in/
Description: Premium eye-catching dark WordPress theme crafted for TechZed — AI, Tech, Gaming & Innovation blog. Futuristic elegant design with deep navy, luxurious gold, and vibrant neon cyan accents. Fully customizable via WordPress Customizer, Gutenberg-ready, responsive, and optimized for viral content & readability. Perfect for modern tech bloggers who want a high-end, immersive reading experience.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: techzed
Tags: dark, elegant, modern, responsive, custom-colors, custom-menu, featured-images, sticky-post, threaded-comments, blog, news, ai, tech, one-column, two-columns, right-sidebar, left-sidebar
*/

/* ============================================
   TECHZED LUXE - PREMIUM DARK THEME
   Deep Navy + Gold + Neon Cyan Futuristic Aesthetic
   ============================================ */

:root {
  --gold: #c9a227;
  --gold-light: #e8d48b;
  --gold-dark: #a17f1f;
  --neon: #00f0ff;
  --neon-purple: #a855f7;
  --navy: #0a0f1e;
  --navy-light: #111827;
  --navy-deep: #05070f;
  --text: #e5e7eb;
  --text-muted: #9ca3af;
  --card: #111827;
  --card-hover: #1f2937;
}

/* Base & Typography */
body {
  font-family: 'Inter', system_ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--navy-deep);
  color: var(--text);
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', system_ui, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--gold-light);
}

/* Tailwind-like utility overrides + Premium additions */
.glass {
  background: rgba(17, 24, 39, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 162, 39, 0.15);
}

.neon-text {
  color: var(--neon);
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.gold-gradient {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title {
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--neon));
  border-radius: 3px;
}

/* Navbar */
.navbar {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
  background: rgba(5, 7, 15, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  border-bottom: 1px solid rgba(201, 162, 39, 0.1);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #05070f 0%, #0a0f1e 50%, #111827 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(201, 162, 39, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 240, 255, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  background-image: 
    linear-gradient(rgba(201, 162, 39, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 162, 39, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Post Cards - Eye-catching */
.post-card {
  background: var(--card);
  border: 1px solid rgba(201, 162, 39, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.post-card:hover {
  transform: translateY(-12px);
  border-color: var(--gold);
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.4),
              0 0 0 1px rgba(201, 162, 39, 0.2);
}

.post-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 60%;
  height: 60%;
  background: linear-gradient(
    to bottom right,
    transparent 30%,
    rgba(201, 162, 39, 0.08) 50%,
    transparent 70%
  );
  transform: skewX(25deg);
  transition: all 0.6s;
  opacity: 0;
}

.post-card:hover::after {
  left: 100%;
  opacity: 1;
}

.post-card img {
  transition: transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.post-card:hover img {
  transform: scale(1.08);
}

.category-pill {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 12px;
  border-radius: 9999px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.category-pill.tech { background: rgba(0, 240, 255, 0.15); color: var(--neon); border: 1px solid rgba(0, 240, 255, 0.3); }
.category-pill.ai { background: rgba(168, 85, 247, 0.15); color: #a855f7; border: 1px solid rgba(168, 85, 247, 0.3); }
.category-pill.gaming { background: rgba(249, 115, 22, 0.15); color: #f97316; border: 1px solid rgba(249, 115, 22, 0.3); }
.category-pill.news { background: rgba(201, 162, 39, 0.15); color: var(--gold); border: 1px solid rgba(201, 162, 39, 0.3); }
.category-pill.jais { background: rgba(236, 72, 153, 0.15); color: #ec4899; border: 1px solid rgba(236, 72, 153, 0.3); }

/* Buttons */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #111827;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 10px 15px -3px rgba(201, 162, 39, 0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(201, 162, 39, 0.4);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #111827;
}

.btn-neon {
  background: transparent;
  color: var(--neon);
  border: 2px solid var(--neon);
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-neon:hover {
  background: var(--neon);
  color: #0a0f1e;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

/* Single Post Styling */
.single-content {
  font-size: 1.1rem;
  line-height: 1.85;
}

.single-content h2, .single-content h3 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.single-content img {
  border-radius: 12px;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.3);
  margin: 2rem 0;
}

.single-content blockquote {
  border-left: 5px solid var(--gold);
  padding-left: 1.5rem;
  font-style: italic;
  color: var(--text-muted);
  background: rgba(201, 162, 39, 0.05);
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/* Newsletter */
.newsletter-card {
  background: linear-gradient(145deg, #111827, #0a0f1e);
  border: 1px solid rgba(201, 162, 39, 0.2);
}

/* Footer */
.footer {
  background: #05070f;
  border-top: 1px solid rgba(201, 162, 39, 0.1);
}

/* Customizer & WP Specific */
.wp-custom-header {
  margin-bottom: 0;
}

.sticky-post {
  border: 2px solid var(--gold) !important;
}

.comment-list {
  list-style: none;
  padding: 0;
}

.comment {
  background: var(--card);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(201, 162, 39, 0.1);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
}

/* Gutenberg Block Overrides for beauty */
.wp-block-image img,
.wp-block-gallery img {
  border-radius: 12px;
}

.wp-block-quote {
  border-left-color: var(--gold) !important;
}

/* Loading & Polish */
.post-card, .btn-gold, .btn-neon {
  will-change: transform;
}

/* ============================================
   DROPDOWN MENU STYLING (for Company / Main Menu)
   ============================================ */
.navbar .menu-item-has-children {
  position: relative;
}

.navbar .menu-item-has-children > a::after {
  content: ' ▼';
  font-size: 0.7em;
  margin-left: 4px;
  opacity: 0.7;
}

.navbar .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #111827;
  border: 1px solid rgba(201, 162, 39, 0.15);
  border-radius: 12px;
  padding: 8px 0;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
  z-index: 50;
  list-style: none;
  margin: 0;
}

.navbar .menu-item-has-children:hover > .sub-menu,
.navbar .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navbar .sub-menu li {
  margin: 0;
}

.navbar .sub-menu a {
  display: block;
  padding: 10px 20px;
  color: #e5e7eb;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.navbar .sub-menu a:hover {
  background: rgba(201, 162, 39, 0.1);
  color: #c9a227;
  padding-left: 24px;
}