/*
 * Style Sheet for Nitesh Narrates (niteshtiwari.com)
 * Premium Dark Theme, Glassmorphism, Cinematic Spacings, Apple Style Typography
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --bg-color: #030303;
    --bg-darker: #000000;
    --bg-card: rgba(15, 15, 15, 0.65);
    --border-color: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.15);
    
    --text-primary: #ffffff;
    --text-secondary: #8e8e93;
    --text-muted: #636366;
    
    --accent-blue: #0071e3;
    --accent-purple: #8b5cf6;
    --accent-gold: #f59e0b;
    
    --gradient-primary: linear-gradient(135deg, #0071e3 0%, #8b5cf6 50%, #f59e0b 100%);
    --gradient-glow: radial-gradient(circle, rgba(0, 113, 227, 0.15) 0%, rgba(139, 92, 246, 0.08) 50%, transparent 100%);
    
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-darker);
    color: var(--text-primary);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-color);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 113, 227, 0.05) 0%, transparent 40%);
    background-attachment: fixed;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    font-weight: 300;
}

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

/* Glassmorphism Class */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
}

.glass-panel:hover {
    border-color: var(--border-hover);
    box-shadow: 0 12px 40px 0 rgba(0, 113, 227, 0.15);
}

/* Loading Overlay */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-darker);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}
.loader-content {
    text-align: center;
}
.loader-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}
.loader-line {
    width: 150px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}
.loader-progress {
    position: absolute;
    height: 100%;
    width: 40%;
    background: var(--gradient-primary);
    animation: loader-anim 1.5s infinite ease-in-out;
}
@keyframes loader-anim {
    0% { left: -40%; }
    100% { left: 100%; }
}

/* Layout Elements */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
}
.btn-primary {
    background: var(--text-primary);
    color: var(--bg-color);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}
.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}
.btn-outline:hover {
    background: var(--text-primary);
    color: var(--bg-color);
    transform: translateY(-2px);
}

/* Navigation */
header.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    background: rgba(3, 3, 3, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition-smooth);
}
header.main-header.scrolled {
    background: rgba(0, 0, 0, 0.9);
    border-bottom-color: var(--border-color);
}
header.main-header .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}
.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    letter-spacing: -0.03em;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 32px;
}
.nav-item a {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-secondary);
    position: relative;
    padding: 8px 0;
}
.nav-item a:hover, .nav-item.active a {
    color: var(--text-primary);
}
.nav-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gradient-primary);
    transition: var(--transition-smooth);
}
.nav-item a:hover::after, .nav-item.active a::after {
    width: 100%;
}
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-smooth);
}

/* Fullscreen Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.2) contrast(1.1);
    z-index: 1;
}
.hero-spotlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(0, 113, 227, 0.15) 0%, transparent 50%);
    z-index: 2;
    pointer-events: none;
}
.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 3;
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 4;
    max-width: 800px;
    padding: 0 24px;
}
.hero-tag {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--accent-blue);
    font-weight: 600;
    margin-bottom: 16px;
    display: inline-block;
}
.hero-title {
    font-size: 5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 24px;
    background: linear-gradient(180deg, #FFFFFF 0%, #A2A2A2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-sub {
    font-size: 1.35rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px auto;
}
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.scroll-icon {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}
.scroll-icon::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--text-primary);
    border-radius: 2px;
    animation: scroll-dot 1.5s infinite;
}
@keyframes scroll-dot {
    0% { top: 8px; opacity: 1; }
    50% { top: 20px; opacity: 0; }
    100% { top: 8px; opacity: 1; }
}

/* CSS Keyframes for bulletproof Hero entrance animations */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-tag, .hero-title, .hero-sub, .hero-actions, .hero-scroll-indicator {
    animation: fadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-tag { animation-delay: 0.1s; opacity: 0; }
.hero-title { animation-delay: 0.25s; opacity: 0; }
.hero-sub { animation-delay: 0.4s; opacity: 0; }
.hero-actions { animation-delay: 0.55s; opacity: 0; }
.hero-scroll-indicator { animation-delay: 0.7s; opacity: 0; }


/* Social Grid Section */
.social-grid {
    padding: 80px 0;
    position: relative;
}
.social-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
}
.social-card {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-secondary);
}
.social-card:hover {
    color: var(--text-primary);
    transform: translateY(-5px);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-tag {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-purple);
    font-weight: 600;
    margin-bottom: 12px;
    display: inline-block;
}
.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 16px;
}
.section-desc {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Recent Podcasts Grid */
.podcasts-section {
    padding: 100px 0;
}
.podcasts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}
@media (max-width: 480px) {
    .podcasts-grid {
        grid-template-columns: 1fr;
    }
}
.podcast-card {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.podcast-embed-container {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.podcast-embed-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
.podcast-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}
.podcast-episode-tag {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.podcast-card-title {
    font-size: 1.35rem;
    font-weight: 600;
}
.podcast-card-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}
.podcast-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}
.podcast-actions .btn {
    padding: 8px 16px;
    font-size: 0.85rem;
}

/* Testimonial / Community Love Marquee */
.community-marquee-section {
    padding: 100px 0;
    overflow: hidden;
    position: relative;
    background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.02) 50%, transparent);
}
.marquee-wrapper {
    display: flex;
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}
.marquee-content {
    display: flex;
    gap: 24px;
    animation: marquee 25s linear infinite;
}
.marquee-wrapper:hover .marquee-content {
    animation-play-state: paused;
}
.marquee-card {
    flex-shrink: 0;
    width: 320px;
    padding: 24px;
}
.marquee-text {
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 16px;
}
.marquee-author {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}
.marquee-source {
    font-size: 0.75rem;
    color: var(--text-muted);
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Journey Timeline Summary */
.timeline-section {
    padding: 100px 0;
}
.journey-horizontal {
    display: flex;
    flex-direction: row;
    gap: 40px;
    overflow-x: auto;
    padding: 40px 0;
    scroll-snap-type: x mandatory;
}
.journey-horizontal::-webkit-scrollbar {
    height: 4px;
}
.timeline-node {
    flex: 0 0 350px;
    scroll-snap-align: start;
    padding: 32px;
    position: relative;
}
.timeline-year {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
}

/* Be My Next Guest Form */
.guest-section {
    padding: 100px 0;
}
.guest-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px;
}
.guest-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.form-group-full {
    grid-column: span 2;
}
@media (max-width: 768px) {
    .guest-form {
        grid-template-columns: 1fr;
    }
    .form-group-full {
        grid-column: span 1;
    }
    .guest-form-container {
        padding: 24px;
    }
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.form-control {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 14px 20px;
    border-radius: 12px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
    outline: none;
}
.form-control:focus {
    border-color: var(--accent-blue);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 15px rgba(0, 113, 227, 0.25);
}
textarea.form-control {
    resize: vertical;
    min-height: 120px;
}
.form-btn-container {
    display: flex;
    justify-content: flex-end;
    margin-top: 16px;
}

/* Journey Page */
.journey-page-section {
    padding: 160px 0 100px 0;
}
.vertical-timeline {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}
.vertical-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    width: 2px;
    height: 100%;
    background: var(--border-color);
}
.vertical-timeline-node {
    position: relative;
    padding-left: 60px;
    margin-bottom: 60px;
}
.vertical-timeline-node::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 11px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--bg-color);
    border: 4px solid var(--accent-purple);
    box-shadow: 0 0 15px var(--accent-purple);
    z-index: 2;
}
.vertical-timeline-year {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-primary);
}
.vertical-timeline-content {
    padding: 24px;
}

/* Numbers Section Counters */
.numbers-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.01);
}
.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    text-align: center;
}
.number-item {
    padding: 20px;
}
.number-val {
    font-size: 4rem;
    font-weight: 800;
    font-family: var(--font-heading);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}
.number-lbl {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
}

/* Quote/Ending Section */
.quote-section {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.quote-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #000;
    opacity: 0.3;
}
.quote-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 24px;
}
.quote-text {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}
.quote-author {
    font-size: 1.1rem;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: rgba(139, 92, 246, 0.02);
}
.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}
.newsletter-form {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}
.newsletter-form .form-control {
    flex-grow: 1;
}
@media (max-width: 576px) {
    .newsletter-form {
        flex-direction: column;
    }
}

/* Footer styles */
footer.main-footer {
    padding: 80px 0 40px 0;
    border-top: 1px solid var(--border-color);
    background: var(--bg-darker);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
.footer-brand h4 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}
.footer-links h5 {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    margin-bottom: 20px;
}
.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links ul a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}
.footer-links ul a:hover {
    color: var(--text-primary);
    padding-left: 4px;
}
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.85rem;
}
@media (max-width: 576px) {
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Admin Dashboard CSS Styles */
.admin-login-wrapper {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-darker);
}
.admin-login-card {
    width: 100%;
    max-width: 420px;
    padding: 40px;
}
.admin-body {
    display: flex;
    min-height: 100vh;
}
.admin-sidebar {
    width: 260px;
    background: var(--bg-darker);
    border-right: 1px solid var(--border-color);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.admin-sidebar-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.admin-sidebar-item a {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    border-radius: 8px;
    color: var(--text-secondary);
    font-weight: 500;
}
.admin-sidebar-item.active a, .admin-sidebar-item a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}
.admin-main {
    flex-grow: 1;
    padding: 40px;
    background: var(--bg-color);
}
.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}
.admin-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}
.admin-stats-card {
    padding: 24px;
}
.admin-stats-num {
    font-size: 2.5rem;
    font-weight: 800;
    margin-top: 8px;
}
.admin-table-container {
    width: 100%;
    overflow-x: auto;
    margin-top: 24px;
}
.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}
.admin-table th, .admin-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
}
.admin-table th {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-transform: uppercase;
}
.admin-table tr:hover td {
    background: rgba(255, 255, 255, 0.01);
}
.badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}
.badge-pending { background: rgba(245, 158, 11, 0.1); color: var(--accent-gold); }
.badge-reviewed { background: rgba(0, 113, 227, 0.1); color: var(--accent-blue); }
.badge-accepted { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.badge-declined { background: rgba(239, 68, 68, 0.1); color: #ef4444; }

.pagination {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 24px;
}
.pagination-btn {
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-primary);
    cursor: pointer;
}
.pagination-btn.active {
    background: var(--text-primary);
    color: var(--bg-color);
}

/* Responsive Split Grid */
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    margin-top: 60px;
}
.split-grid.align-center {
    align-items: center;
}
@media (max-width: 992px) {
    .split-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Mobile Responsive Navigation Overlay Styles */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    .nav-menu {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(3, 3, 3, 0.95);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border-top: 1px solid rgba(255, 255, 255, 0.03);
        border-bottom: 1px solid var(--border-color);
        padding: 40px 24px;
        gap: 24px;
        opacity: 0;
        transform: translateY(-20px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.5);
        z-index: 999;
    }
    .nav-menu.active {
        display: flex;
    }
    .nav-item a {
        font-size: 1.25rem;
        font-weight: 500;
        display: block;
        padding: 8px 0;
        color: var(--text-primary);
    }
    
    /* Hero Responsiveness */
    .hero-title {
        font-size: 3.25rem !important;
        line-height: 1.1;
    }
    .hero-sub {
        font-size: 1.1rem !important;
        margin-bottom: 30px;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    .hero-actions .btn {
        width: 100%;
    }
    
    /* Section Headers */
    .section-title {
        font-size: 2.25rem !important;
    }
}

