/*
Theme Name: HayderVoice 4.0
Description: Advanced philosophical WordPress theme with mobile-first design and golden aesthetics
Version: 4.0
Author: HayderVoice
Text Domain: haydervoice
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --primary-dark: #1a1a1a;
    --primary-light: #f8f7f5;
    --accent-gold: #D4A574;
    --accent-warm: #DAA520;
    --accent-deep: #B8860B;
    --text-primary: #2d3748;
    --text-secondary: #718096;
    --text-muted: #a0aec0;
    --surface-white: #ffffff;
    --surface-cream: #fefcf8;
    --shadow-soft: 0 4px 20px rgba(212, 165, 116, 0.15);
    --shadow-deep: 0 20px 60px rgba(212, 165, 116, 0.25);
    --shadow-glow: 0 0 40px rgba(212, 165, 116, 0.3);
    --gradient-hero: linear-gradient(135deg, #fefcf8 0%, #f8f7f5 100%);
    --gradient-accent: linear-gradient(135deg, #D4A574 0%, #DAA520 100%);
    --gradient-gold: linear-gradient(45deg, #D4A574, #DAA520, #B8860B);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    color: var(--text-primary);
    background: var(--surface-cream);
    font-size: clamp(16px, 2.5vw, 18px);
    overflow-x: hidden;
}

/* WordPress Core Classes */
.alignleft { float: left; margin: 0 2rem 1.5rem 0; max-width: 50%; }
.alignright { float: right; margin: 0 0 1.5rem 2rem; max-width: 50%; }
.aligncenter { display: block; margin: 0 auto 2rem; }
.alignwide { width: 100vw; position: relative; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; }
.alignfull { width: 100vw; position: relative; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; }
.screen-reader-text { position: absolute !important; clip: rect(1px, 1px, 1px, 1px); }
.sticky { background: var(--surface-white); padding: 2rem; border-radius: 12px; border-left: 4px solid var(--accent-gold); }

/* Enhanced Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-dark);
    letter-spacing: -0.02em;
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    line-height: 1.2;
}

h1 { font-size: clamp(2.2rem, 6vw, 3.2rem); margin-bottom: clamp(1.5rem, 4vw, 2rem); }
h2 { font-size: clamp(1.8rem, 5vw, 2.5rem); }
h3 { font-size: clamp(1.4rem, 4vw, 1.8rem); }
h4 { font-size: clamp(1.2rem, 3.5vw, 1.4rem); }
h5 { font-size: clamp(1.1rem, 3vw, 1.2rem); }
h6 { font-size: clamp(1rem, 2.8vw, 1.1rem); }

p {
    margin-bottom: clamp(1.2rem, 4vw, 1.8rem);
    line-height: 1.7;
    font-size: clamp(16px, 2.5vw, 18px);
    max-width: none;
}

/* Enhanced Link Styles */
a {
    color: var(--accent-gold);
    text-decoration-line: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-warm);
    text-decoration-thickness: 2px;
    transform: translateY(-1px);
}

/* Dynamic Container System - FIXED */
.container {
    width: 100%;
    max-width: 100% !important;
    padding: 0 clamp(1rem, 4vw, 3rem);
    margin: 0 auto;
}

.content-container {
    width: 100%;
    max-width: 100% !important;
    padding: 0 clamp(1rem, 3vw, 2rem);
    margin: 0 auto;
}

.reading-container {
    width: 100%;
    max-width: 100% !important;
    padding: 0 clamp(1.5rem, 4vw, 2rem);
    margin: 0 auto;
}

/* Site Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(254, 252, 248, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
    padding: clamp(1rem, 3vw, 1.5rem) 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled {
    background: rgba(254, 252, 248, 0.98);
    box-shadow: var(--shadow-soft);
    padding: clamp(0.8rem, 2vw, 1.2rem) 0;
}

.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.site-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--primary-dark);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: all 0.4s ease;
    position: relative;
}

.site-title::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -10px;
    right: -10px;
    bottom: -5px;
    background: var(--gradient-gold);
    border-radius: 12px;
    opacity: 0;
    z-index: -1;
    transition: all 0.4s ease;
    filter: blur(15px);
}

.site-title:hover {
    color: var(--surface-white);
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(212, 165, 116, 0.5);
}

.site-title:hover::before {
    opacity: 1;
    filter: blur(8px);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    padding: clamp(6rem, 15vw, 8rem) 0 clamp(2rem, 8vw, 4rem);
    margin-top: clamp(80px, 15vw, 100px);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 165, 116, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(218, 165, 32, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(184, 134, 11, 0.1) 0%, transparent 60%);
    pointer-events: none;
    animation: heroShimmer 6s ease-in-out infinite;
}

@keyframes heroShimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: clamp(0.8rem, 2.5vw, 1rem) clamp(1.5rem, 4vw, 2.2rem);
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: clamp(14px, 2.2vw, 16px);
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: clamp(2rem, 5vw, 3rem);
    box-shadow: var(--shadow-soft);
    border: 2px solid rgba(212, 165, 116, 0.3);
    transition: all 0.4s ease;
}

.hero-badge:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
    border-color: var(--accent-gold);
}

.hero-badge::before {
    content: '✦';
    color: var(--accent-gold);
    font-size: 1.2em;
    animation: badgeSparkle 3s ease-in-out infinite;
}

@keyframes badgeSparkle {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 8vw, 5.5rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--primary-dark);
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
    letter-spacing: -0.03em;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(100px, 20vw, 200px);
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
    animation: titleUnderline 2s ease-out;
}

@keyframes titleUnderline {
    from { width: 0; opacity: 0; }
    to { width: clamp(100px, 20vw, 200px); opacity: 1; }
}

/* Enhanced Quote Card */
.quote-container {
    position: relative;
    margin: clamp(2rem, 5vw, 3rem) auto;
    max-width: clamp(350px, 75vw, 650px);
}

.quote-card {
    background: linear-gradient(145deg, #ffffff 0%, #fefcf8 100%);
    border-radius: clamp(16px, 4vw, 24px);
    padding: clamp(2rem, 6vw, 3rem);
    box-shadow: 
        0 10px 40px rgba(212, 165, 116, 0.25),
        0 4px 12px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(212, 165, 116, 0.3);
    transform: rotate(-1deg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.quote-card::before {
    content: '';
    position: absolute;
    top: -3px;
    right: clamp(1.5rem, 5vw, 2rem);
    width: 20px;
    height: 20px;
    background: var(--gradient-accent);
    border-radius: 50%;
    box-shadow: 
        0 0 0 4px rgba(212, 165, 116, 0.4),
        0 3px 8px rgba(212, 165, 116, 0.5);
}

.quote-card::after {
    content: '';
    position: absolute;
    top: 12px;
    right: clamp(1.8rem, 5.3vw, 2.3rem);
    width: 3px;
    height: 15px;
    background: linear-gradient(to bottom, #888, #ccc);
    border-radius: 2px;
    transform: rotate(12deg);
}

.quote-card:hover {
    transform: rotate(0deg) translateY(-5px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(212, 165, 116, 0.4),
        0 8px 20px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.quote-mark {
    position: absolute;
    top: clamp(0.5rem, 2.5vw, 1rem);
    left: clamp(1.2rem, 4vw, 1.8rem);
    font-size: clamp(3rem, 6vw, 4rem);
    color: rgba(212, 165, 116, 0.4);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    font-weight: 400;
}

.hero-quote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(18px, 4vw, 26px);
    color: var(--text-primary);
    font-style: italic;
    line-height: 1.5;
    margin-bottom: clamp(1.2rem, 4vw, 1.8rem);
    text-align: left;
    padding-left: clamp(1.2rem, 4vw, 2rem);
}

.hero-author {
    font-family: 'Inter', sans-serif;
    font-size: clamp(16px, 3vw, 20px);
    color: var(--accent-gold);
    text-align: right;
    font-weight: 600;
    position: relative;
}

.hero-author::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: clamp(40px, 8vw, 60px);
    height: 2px;
    background: linear-gradient(to right, transparent, var(--accent-gold));
    opacity: 0.8;
}

.hero-subtitle {
    font-size: clamp(16px, 3.5vw, 20px);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: clamp(3rem, 7vw, 4rem);
    max-width: clamp(320px, 85vw, 600px);
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: clamp(1rem, 4vw, 2rem);
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: clamp(1rem, 3.5vw, 1.4rem) clamp(2rem, 6vw, 3.5rem);
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: clamp(16px, 2.8vw, 18px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: clamp(180px, 40vw, 220px);
    justify-content: center;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-accent);
    color: white;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 80px rgba(212, 165, 116, 0.5);
    text-decoration: none;
    color: white;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-primary);
    border: 2px solid var(--accent-gold);
    backdrop-filter: blur(15px);
}

.btn-secondary:hover {
    background: var(--accent-gold);
    color: white;
    border-color: var(--accent-warm);
    transform: translateY(-4px);
    text-decoration: none;
    box-shadow: var(--shadow-glow);
}

/* Site Content - FIXED */
.site-content {
    display: block;
    padding: clamp(2rem, 6vw, 4rem) 0;
    position: relative;
    z-index: 2;
    max-width: 100% !important;
}

.main-content {
    width: 100%;
    margin-bottom: clamp(3rem, 8vw, 5rem);
    max-width: 100% !important;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: clamp(3rem, 8vw, 5rem);
}

.section-badge {
    font-family: 'Inter', sans-serif;
    font-size: clamp(12px, 2.2vw, 14px);
    font-weight: 700;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    background: rgba(212, 165, 116, 0.1);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    display: inline-block;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 6vw, 3.2rem);
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
    letter-spacing: -0.02em;
}

.section-description {
    font-size: clamp(16px, 3.2vw, 20px);
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: clamp(320px, 85vw, 600px);
    margin: 0 auto;
}

/* Posts Grid - FIXED */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(300px, 45vw, 380px), 1fr));
    gap: clamp(2rem, 6vw, 3rem);
    margin-bottom: clamp(3rem, 8vw, 5rem);
    width: 100%;
    max-width: 100%;
}

.post-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border-radius: clamp(18px, 5vw, 24px);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 165, 116, 0.2);
    position: relative;
    width: 100%;
}

.post-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212,165,116,0.1), transparent);
    transition: left 0.8s ease;
    z-index: 1;
}

.post-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-glow);
    border-color: var(--accent-gold);
}

.post-card:hover::before {
    left: 100%;
}

.post-thumbnail {
    width: 100%;
    height: clamp(200px, 35vw, 260px);
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: clamp(16px, 3vw, 20px);
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.post-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: var(--gradient-gold);
    animation: placeholderPulse 3s ease-in-out infinite;
}

@keyframes placeholderPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.post-content {
    padding: clamp(2rem, 6vw, 3rem);
    position: relative;
    z-index: 2;
}

.post-meta {
    font-family: 'Inter', sans-serif;
    font-size: clamp(13px, 2.2vw, 15px);
    color: var(--text-muted);
    margin-bottom: clamp(1rem, 3.5vw, 1.4rem);
    display: flex;
    gap: clamp(1rem, 3vw, 1.2rem);
    flex-wrap: wrap;
}

.post-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 4.5vw, 28px);
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: clamp(1rem, 3.5vw, 1.4rem);
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.post-title a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.post-title a:hover {
    color: var(--accent-gold);
    text-shadow: 0 0 10px rgba(212, 165, 116, 0.3);
}

.post-excerpt {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: clamp(15px, 2.8vw, 17px);
    margin-bottom: clamp(1.5rem, 4.5vw, 2rem);
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--accent-gold);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: clamp(14px, 2.5vw, 16px);
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.read-more:hover {
    color: var(--accent-warm);
    gap: 1rem;
    transform: translateX(3px);
}

.read-more::after {
    content: '→';
    transition: transform 0.3s ease;
    font-size: 1.2em;
}

.read-more:hover::after {
    transform: translateX(5px);
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: clamp(2.5rem, 6vw, 3.5rem);
    margin-top: clamp(2rem, 5vw, 3rem);
}

.widget {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border-radius: clamp(16px, 4vw, 20px);
    padding: clamp(2rem, 5vw, 2.5rem);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(212, 165, 116, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.widget:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-3px);
    border-color: var(--accent-gold);
}

.widget:hover::before {
    transform: scaleX(1);
}

.widget-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.3rem, 3.5vw, 1.6rem);
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: clamp(1.2rem, 4vw, 1.8rem);
    letter-spacing: -0.01em;
    position: relative;
}

.widget-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--gradient-accent);
    margin-top: 0.8rem;
    border-radius: 2px;
}

/* Search Widget */
.search-widget .search-wrapper {
    position: relative;
}

.search-input {
    width: 100%;
    padding: clamp(1rem, 3vw, 1.2rem) clamp(1rem, 3vw, 1.5rem);
    border: 2px solid rgba(212, 165, 116, 0.3);
    border-radius: 50px;
    font-family: inherit;
    font-size: clamp(15px, 2.5vw, 17px);
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    outline: none;
}

.search-input:focus {
    border-color: var(--accent-gold);
    background: white;
    box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.2);
}

.search-submit {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gradient-accent);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.search-submit:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-soft);
}

/* Daily Quote Widget */
.daily-quote {
    text-align: center;
    padding: clamp(1.5rem, 4vw, 2rem);
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(218, 165, 32, 0.05) 100%);
    border-radius: 15px;
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.quote-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(16px, 3.2vw, 19px);
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.5;
    margin-bottom: 1.2rem;
}

.quote-author {
    font-family: 'Inter', sans-serif;
    font-size: clamp(14px, 2.5vw, 16px);
    color: var(--accent-gold);
    font-weight: 600;
}

/* Site Footer */
.site-footer {
    background: var(--primary-dark);
    color: #e2e2e2;
    padding: clamp(4rem, 10vw, 6rem) 0 clamp(2rem, 5vw, 3rem);
    margin-top: clamp(4rem, 10vw, 6rem);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 165, 116, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(218, 165, 32, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(184, 134, 11, 0.05) 0%, transparent 50%);
    animation: footerParticles 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes footerParticles {
    0%, 100% { 
        transform: translateY(0px) scale(1); 
        opacity: 1; 
    }
    50% { 
        transform: translateY(-20px) scale(1.05); 
        opacity: 0.8; 
    }
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: clamp(2rem, 6vw, 4rem);
    margin-bottom: clamp(3rem, 7vw, 4rem);
    position: relative;
    z-index: 2;
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold);
    margin-bottom: 1.2rem;
    font-size: clamp(1.5rem, 4vw, 2rem);
}

.footer-brand p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.social-icons {
    display: flex;
    gap: 1.2rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(212, 165, 116, 0.2);
    color: var(--accent-gold);
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.social-icon:hover {
    background: var(--accent-gold);
    color: white;
    transform: translateY(-3px);
}

.footer-links h4 {
    font-family: 'Inter', sans-serif;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: clamp(2rem, 6vw, 3rem);
    border-top: 1px solid rgba(212, 165, 116, 0.3);
    color: #888;
    position: relative;
    z-index: 2;
}

/* Single Post Styles - FIXED */
.single-post {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border-radius: clamp(18px, 5vw, 24px);
    padding: clamp(2rem, 7vw, 4rem);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(212, 165, 116, 0.2);
    margin-bottom: clamp(3rem, 7vw, 4rem);
    width: 100%;
    max-width: 100% !important;
}

.entry-header {
    text-align: center;
    margin-bottom: clamp(3rem, 7vw, 4rem);
}

.entry-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(1rem, 4vw, 2rem);
    margin-bottom: clamp(1.5rem, 5vw, 2rem);
    font-family: 'Inter', sans-serif;
    font-size: clamp(14px, 2.5vw, 16px);
    color: var(--text-muted);
    flex-wrap: wrap;
}

.entry-title {
    font-size: clamp(2.2rem, 7vw, 3.8rem);
    line-height: 1.1;
    margin-bottom: clamp(1rem, 4vw, 1.5rem);
}

.entry-content {
    font-size: clamp(17px, 3vw, 19px);
    line-height: 1.7;
    max-width: 100% !important;
}

/* Responsive Design - FIXED */
@media (min-width: 769px) {
    .site-content {
        display: grid;
        grid-template-columns: 1fr 350px;
        gap: clamp(3rem, 7vw, 5rem);
        max-width: 100% !important;
    }
    
    .sidebar {
        margin-top: 0;
    }
    
    .posts-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

@media (min-width: 1200px) {
    .container {
        padding: 0 4rem !important;
    }
    
    .posts-grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .site-content {
        display: block;
    }
    
    .main-content {
        order: 1;
        margin-bottom: clamp(3rem, 8vw, 4rem);
    }
    
    .sidebar {
        order: 2;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .quote-card {
        transform: none;
        padding: clamp(1.5rem, 5vw, 2rem);
    }
    
    .entry-meta {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.post-card {
    animation: fadeInUp 0.6s ease-out;
}

.post-card:nth-child(2) { animation-delay: 0.1s; }
.post-card:nth-child(3) { animation-delay: 0.2s; }
.post-card:nth-child(4) { animation-delay: 0.3s; }

/* Performance Optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    transition: opacity 0.3s ease;
}

/* Comments Styles */
.comments-area {
    background: rgba(255, 255, 255, 0.98);
    padding: 3rem;
    border-radius: 16px;
    margin-top: 3rem;
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.comments-title {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-dark);
}

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

.comment {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(212, 165, 116, 0.05);
    border-radius: 12px;
    border-left: 3px solid var(--accent-gold);
}

.comment-body {
    display: flex;
    gap: 1rem;
}

.comment-avatar img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

.comment-content {
    flex: 1;
}

.comment-author {
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.comment-metadata {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* Comment Form */
.comment-form {
    background: rgba(212, 165, 116, 0.05);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.comment-form h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.comment-form p {
    margin-bottom: 1rem;
}

.comment-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(212, 165, 116, 0.3);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.2);
}

.comment-form .form-submit {
    text-align: center;
    margin-top: 1rem;
}

/* 404 Page Styles */
.error-404 {
    text-align: center;
    padding: 4rem 2rem;
}

.error-404 h1 {
    font-size: clamp(4rem, 12vw, 8rem);
    color: var(--accent-gold);
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(212, 165, 116, 0.3);
}

.error-404 .error-message {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.error-404 .btn {
    margin: 0 1rem;
}

/* Archive Styles */
.archive-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.archive-title {
    font-size: clamp(2rem, 6vw, 3rem);
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.archive-description {
    font-size: clamp(16px, 3vw, 18px);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 3rem 0;
}

.pagination .page-numbers {
    padding: 0.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(212, 165, 116, 0.3);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.3s ease;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: var(--accent-gold);
    color: white;
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

/* Navigation */
.post-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
}

.nav-previous,
.nav-next {
    flex: 1;
    text-align: center;
}

.nav-previous {
    text-align: left;
}

.nav-next {
    text-align: right;
}

.nav-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

/* Author Bio */
.author-bio {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: rgba(212, 165, 116, 0.05);
    padding: 2rem;
    border-radius: 12px;
    margin: 3rem 0;
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.author-avatar img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
}

.author-info h4 {
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.author-info p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Related Posts */
.related-posts {
    margin: 4rem 0;
}

.related-posts h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-dark);
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.related-post-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(212, 165, 116, 0.2);
    transition: all 0.3s ease;
}

.related-post-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

.related-post-thumb {
    width: 100%;
    height: 150px;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.related-post-content {
    padding: 1.5rem;
}

.related-post-content h4 {
    margin-bottom: 0.8rem;
}

.related-post-content h4 a {
    color: var(--text-primary);
    text-decoration: none;
}

.related-post-content h4 a:hover {
    color: var(--accent-gold);
}

/* Page Styles */
.single-page {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border-radius: clamp(18px, 5vw, 24px);
    padding: clamp(2rem, 7vw, 4rem);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(212, 165, 116, 0.2);
    margin-bottom: clamp(3rem, 7vw, 4rem);
    width: 100%;
    max-width: 100% !important;
}

.page-header {
    text-align: center;
    margin-bottom: clamp(3rem, 7vw, 4rem);
}

.page-title {
    font-size: clamp(2.2rem, 7vw, 3.8rem);
    line-height: 1.1;
    margin-bottom: clamp(1rem, 4vw, 1.5rem);
}

.page-content {
    font-size: clamp(17px, 3vw, 19px);
    line-height: 1.7;
    max-width: 100% !important;
}

/* No Posts Message */
.no-posts {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(212, 165, 116, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.no-posts h2,
.no-posts h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.no-posts p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}
/* Complete Full Screen - No Margins */
body.single {
    margin: 0 !important;
    padding: 0 !important;
}

.single * {
    box-sizing: border-box !important;
}

.single .container,
.single .site-content,
.single .main-content {
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
}

.single .single-post {
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 15px !important;
    border-radius: 0 !important;
    background: white !important;
}

.single .sidebar {
    display: none !important;
}

.single .site-header {
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
}
/* Enhanced Professional Header Navigation */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(1rem, 3vw, 2rem);
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-description {
    font-family: 'Inter', sans-serif;
    font-size: clamp(14px, 2.2vw, 16px);
    color: var(--text-muted);
    margin: 0;
    font-style: italic;
}

/* Main Navigation */
.main-navigation {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: clamp(1.5rem, 4vw, 2.5rem);
    flex-wrap: wrap;
}

.nav-link {
    font-family: 'Inter', sans-serif;
    font-size: clamp(15px, 2.5vw, 17px);
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    padding: clamp(0.8rem, 2vw, 1rem) clamp(1.2rem, 3vw, 1.5rem);
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.nav-link:hover {
    color: white;
    background: var(--gradient-accent);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
    text-decoration: none;
}

.nav-link.contact-link {
    background: var(--gradient-accent);
    color: white;
    border-color: var(--accent-gold);
    font-weight: 600;
}

.nav-link.contact-link:hover {
    background: var(--accent-warm);
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-glow);
}

/* Mobile Navigation Toggle */
.mobile-menu-toggle {
    display: none;
    background: var(--gradient-accent);
    border: none;
    border-radius: 8px;
    padding: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-soft);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .header-container {
        justify-content: space-between;
    }
    
    .main-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(254, 252, 248, 0.98);
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(212, 165, 116, 0.2);
        box-shadow: var(--shadow-soft);
        max-height: 0;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }
    
    .main-navigation.active {
        max-height: 400px;
        padding: 1.5rem 0;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
        padding: 0 clamp(1rem, 4vw, 2rem);
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.9);
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .site-branding {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .site-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
}

/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-link {
        padding: 0.8rem 1.2rem;
        font-size: 15px;
    }
}

/* Header Search (Optional) */
.header-search {
    position: relative;
    margin-left: 1rem;
}

.header-search-input {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 25px;
    padding: 0.6rem 1.2rem;
    font-size: 14px;
    transition: all 0.3s ease;
    width: 200px;
}

.header-search-input:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: white;
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.2);
}

/* Header Animation on Scroll */
.site-header.scrolled .site-title {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
}

.site-header.scrolled .nav-link {
    padding: clamp(0.6rem, 1.8vw, 0.8rem) clamp(1rem, 2.5vw, 1.2rem);
    font-size: clamp(14px, 2.2vw, 16px);
}

/* Active Page Indicator */
.nav-link.current-menu-item,
.nav-link.current_page_item {
    background: rgba(212, 165, 116, 0.2);
    color: var(--accent-gold);
    font-weight: 600;
}
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Hayder Voice - Clean Header Demo</title>
    <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap" rel="stylesheet">
    <style>
        /* Reset & Base */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { 
            font-family: 'Inter', sans-serif; 
            background: #f8f9fa;
            padding-top: 90px;
        }

        /* === CLEAN HEADER WITH DROPDOWN === */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            width: 100%;
            z-index: 999999;
            background: linear-gradient(180deg, 
                rgba(255, 255, 255, 0.98) 0%, 
                rgba(255, 255, 255, 0.92) 100%);
            backdrop-filter: blur(40px) saturate(180%);
            padding: 12px 0;
            box-shadow: 0 8px 32px rgba(212, 165, 116, 0.12);
            border-bottom: 0.5px solid rgba(212, 165, 116, 0.2);
        }

        .site-header .container {
            padding: 0 16px;
            max-width: 100%;
        }

        .header-container {
            display: flex;
            flex-direction: column;
            gap: 12px;
            text-align: center;
            align-items: center;
        }

        /* === BRANDING === */
        .site-branding {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
        }

        .site-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(18px, 4.5vw, 22px);
            font-weight: 700;
            line-height: 1.1;
            margin: 0;
            background: linear-gradient(135deg, #D4A574 0%, #DAA520 50%, #B8860B 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
        }

        .site-description {
            font-size: 10px;
            color: #8e8e93;
            margin: 0;
            opacity: 0.8;
            font-style: italic;
        }

        /* === MAIN NAVIGATION === */
        .main-navigation {
            display: block;
            width: 100%;
            position: relative;
        }

        .nav-menu {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 1fr;
            gap: 8px;
            padding: 0;
            margin: 0;
            list-style: none;
        }

        /* === MAIN NAV LINKS === */
        .nav-menu > li > a,
        .nav-menu > a {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px 8px;
            min-height: 38px;
            
            font-size: 11px;
            font-weight: 600;
            line-height: 1.2;
            
            background: rgba(255, 255, 255, 0.9);
            color: #2d3748;
            text-decoration: none;
            border: 1px solid rgba(212, 165, 116, 0.25);
            border-radius: 16px;
            
            white-space: normal;
            text-align: center;
            word-break: break-word;
            
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            transform: translateZ(0);
        }

        .nav-menu > li > a:hover,
        .nav-menu > a:hover {
            background: rgba(212, 165, 116, 0.1);
            border-color: #D4A574;
            transform: translateY(-1px) translateZ(0);
            box-shadow: 0 6px 20px rgba(212, 165, 116, 0.15);
        }

        /* === MISCELLANEOUS DROPDOWN === */
        .misc-dropdown {
            position: relative;
            display: inline-block;
        }

        .misc-dropdown > a::after {
            content: '▼';
            font-size: 8px;
            margin-left: 4px;
            opacity: 0.7;
            transition: transform 0.3s ease;
        }

        .misc-dropdown:hover > a::after {
            transform: rotate(180deg);
        }

        /* === DROPDOWN MENU === */
        .dropdown-menu {
            position: absolute;
            top: calc(100% + 8px);
            left: 50%;
            transform: translateX(-50%);
            min-width: 160px;
            
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px) saturate(160%);
            border: 1px solid rgba(212, 165, 116, 0.2);
            border-radius: 18px;
            padding: 8px;
            
            box-shadow: 
                0 1px 0 rgba(255, 255, 255, 0.8) inset,
                0 20px 60px rgba(212, 165, 116, 0.15),
                0 8px 30px rgba(0, 0, 0, 0.08);
            
            opacity: 0;
            visibility: hidden;
            transform: translateX(-50%) translateY(-10px);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            
            z-index: 1000;
            list-style: none;
        }

        .misc-dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .dropdown-menu a {
            display: block;
            padding: 8px 12px;
            font-size: 11px;
            font-weight: 500;
            color: #2d3748;
            text-decoration: none;
            border-radius: 12px;
            transition: all 0.2s ease;
            margin: 2px 0;
        }

        .dropdown-menu a:hover {
            background: rgba(212, 165, 116, 0.15);
            color: #1a1a1a;
            transform: translateX(4px);
        }

        /* === CONTACT BUTTON === */
        .contact-link {
            grid-column: 1 / -1 !important;
            margin-top: 6px !important;
            padding: 12px 20px !important;
            min-height: 44px !important;
            
            background: linear-gradient(135deg, #D4A574 0%, #DAA520 100%) !important;
            color: white !important;
            font-weight: 700 !important;
            font-size: 12px !important;
            border: 1px solid rgba(255, 255, 255, 0.2) !important;
            
            box-shadow: 0 8px 32px rgba(212, 165, 116, 0.25) !important;
            animation: subtle-pulse 3s ease-in-out infinite !important;
        }

        .contact-link:hover {
            background: linear-gradient(135deg, #DAA520 0%, #B8860B 100%) !important;
            transform: translateY(-2px) translateZ(0) !important;
            box-shadow: 0 12px 48px rgba(212, 165, 116, 0.35) !important;
        }

        /* === ANIMATIONS === */
        @keyframes subtle-pulse {
            0%, 100% { 
                box-shadow: 0 8px 32px rgba(212, 165, 116, 0.25);
            }
            50% { 
                box-shadow: 0 12px 48px rgba(212, 165, 116, 0.35);
            }
        }

        /* === DEMO CONTENT === */
        .demo-content {
            max-width: 800px;
            margin: 2rem auto;
            padding: 2rem;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
        }

        .demo-content h1 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: #2d3748;
            margin-bottom: 1rem;
            text-align: center;
        }

        .demo-content p {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #4a5568;
            margin-bottom: 1rem;
        }

        /* === MOBILE RESPONSIVE === */
        @media screen and (max-width: 480px) {
            .nav-menu > li > a,
            .nav-menu > a {
                font-size: 10px;
                padding: 8px 6px;
                min-height: 34px;
            }
            
            .site-title {
                font-size: 16px;
            }
            
            body {
                padding-top: 85px;
            }
        }

        @media screen and (max-width: 360px) {
            .nav-menu {
                grid-template-columns: 1fr 1fr;
                gap: 6px;
            }
            
            .nav-menu > li > a,
            .nav-menu > a {
                font-size: 9px;
                padding: 6px 4px;
                min-height: 30px;
            }
            
            body {
                padding-top: 80px;
            }
        }
    </style>
</head>
<body>

<header class="site-header">
    <div class="container">
        <div class="header-container">
            <!-- Site Branding -->
            <div class="site-branding">
                <a href="#" class="site-title">Hayder Voice</a>
                <p class="site-description">Where silence speaks loudest</p>
            </div>

            <!-- Main Navigation -->
            <nav class="main-navigation">
                <div class="nav-menu">
                    <!-- Main Categories -->
                    <a href="#" class="nav-link">Life</a>
                    <a href="#" class="nav-link">Moment</a>
                    <a href="#" class="nav-link">Question</a>
                    
                    <!-- Miscellaneous Dropdown -->
                    <div class="misc-dropdown">
                        <a href="#" class="nav-link">Miscellaneous</a>
                        <ul class="dropdown-menu">
                            <li><a href="#">Psychology</a></li>
                            <li><a href="#">Science</a></li>
                            <li><a href="#">Self-Discovery</a></li>
                            <li><a href="#">Philosophy</a></li>
                            <li><a href="#">Personal Growth</a></li>
                            <li><a href="#">Blog</a></li>
                        </ul>
                    </div>

                    <!-- Contact Button -->
                    <a href="#" class="nav-link contact-link">Contact</a>
                </div>
            </nav>
        </div>
    </div>
</header>

<!-- Demo Content -->
<div class="demo-content">
    <h1>Clean Header Demo</h1>
    <p>This demonstrates the new clean header design with organized navigation. The main categories (Life, Moment, Question) are directly accessible, while other categories are grouped under "Miscellaneous" with a smooth hover dropdown.</p>
    <p>The header features:</p>
    <ul style="margin: 1rem 0; padding-left: 2rem;">
        <li>4-column grid layout for main navigation</li>
        <li>Smooth hover effects with glassmorphism</li>
        <li>Organized dropdown for secondary categories</li>
        <li>Full-width contact button</li>
        <li>Mobile responsive design</li>
    </ul>
    <p>Hover over "Miscellaneous" to see the dropdown effect in action!</p>
</div>

</body>
</html>