/*
Theme Name: Deep Sky Diaries
Theme URI: https://deepskydiaries.com
Author: Sage Cynefin
Author URI: https://deepskydiaries.com
Description: A modern, cosmic-themed WordPress theme for astronomy blogging
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: deep-sky-diaries
*/

/* CSS Variables - Cosmic Color System */
:root {
    --space-black: #0a0e27;
    --deep-space: #0a0a0f;
    --nebula-purple: #8b5cf6;
    --nebula-purple-light: #a78bfa;
    --constellation-blue: #60a5fa;
    --constellation-blue-light: #93c5fd;
    --star-white: #e8eef7;
    --star-dim: #c7d2fe;
    --cosmic-cyan: #22d3ee;
    --galaxy-indigo: #4f46e5;
    --text-primary: #e8eef7;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --border-color: rgba(139, 92, 246, 0.3);
    --card-bg: rgba(139, 92, 246, 0.05);
    --card-border: rgba(139, 92, 246, 0.2);
    --overlay-bg: rgba(10, 14, 39, 0.95);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--space-black);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Layout Utilities */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.content-wrapper {
    background: rgba(10, 14, 39, 0.9);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.full-width {
    width: 100%;
}

/* Typography System */
.page-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--star-white);
    background: linear-gradient(135deg, #fff 0%, var(--nebula-purple-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #fff 0%, var(--nebula-purple-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.body-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Astronomy-Specific Components */
.observation-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    background: rgba(139, 92, 246, 0.1);
    padding: 20px;
    border-left: 4px solid var(--nebula-purple);
    border-radius: 10px;
    margin: 2rem 0;
}

.observation-meta-item {
    display: flex;
    flex-direction: column;
}

.observation-meta-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.observation-meta-value {
    font-size: 1.1rem;
    color: var(--star-white);
    font-weight: 600;
}

/* Image Comparison (Before/After) */
.image-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 2rem 0;
}

.image-compare-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--card-border);
}

.image-compare-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--overlay-bg);
    color: var(--star-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 1;
}

.image-compare img {
    width: 100%;
    height: auto;
    display: block;
}

/* Learning Timeline for 6-Year Journey */
.learning-timeline {
    position: relative;
    padding-left: 60px;
    margin: 3rem 0;
}

.learning-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--constellation-blue), var(--nebula-purple));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 15px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -47px;
    top: 20px;
    width: 15px;
    height: 15px;
    background: var(--constellation-blue);
    border: 3px solid var(--space-black);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--constellation-blue);
}

.timeline-date {
    font-size: 0.9rem;
    color: var(--constellation-blue);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 1.3rem;
    color: var(--star-white);
    margin-bottom: 0.75rem;
}

.timeline-content {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Astronomy Cards (Reusable) */
.astronomy-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2rem;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.astronomy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
    border-color: rgba(139, 92, 246, 0.5);
}

.astronomy-card-title {
    color: var(--nebula-purple-light);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.astronomy-card-content {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Equipment Grid */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.equipment-item {
    background: rgba(10, 14, 39, 0.3);
    border: 1px solid var(--card-border);
    border-radius: 15px;
    padding: 1.5rem;
    transition: transform 0.3s, border-color 0.3s;
}

.equipment-item:hover {
    transform: translateY(-3px);
    border-color: rgba(139, 92, 246, 0.5);
}

.equipment-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.equipment-name {
    color: var(--star-dim);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.equipment-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.equipment-spec {
    background: rgba(139, 92, 246, 0.2);
    color: var(--star-dim);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

/* Breadcrumb Navigation */
.breadcrumbs {
    padding: 1rem 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.breadcrumbs a {
    color: var(--constellation-blue);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumbs a:hover {
    color: var(--constellation-blue-light);
}

.breadcrumb-separator {
    margin: 0 0.5rem;
    color: var(--text-muted);
}

/* Animated starfield background */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: twinkle 3s infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Navigation */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 5%;
    z-index: 1000;
    border-bottom: 1px solid rgba(139, 92, 246, 0.3);
}

.site-header .container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #a78bfa 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.main-navigation a {
    color: #e8eef7;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.main-navigation a:hover {
    color: #a78bfa;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 5% 4rem;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #a78bfa 50%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.hero .tagline {
    font-size: 1.5rem;
    color: #c7d2fe;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero .description {
    font-size: 1.1rem;
    color: #94a3b8;
    margin-bottom: 2rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
    color: white !important;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.5);
}

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

/* Content sections */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

section {
    position: relative;
    padding: 6rem 0;
    z-index: 1;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #fff 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* About section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    color: #a78bfa;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.about-text p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.journey-card {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.journey-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #a78bfa;
}

.stat-label {
    color: #94a3b8;
    font-size: 0.9rem;
}

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

.post-card {
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
    border-color: rgba(139, 92, 246, 0.5);
}

.post-card a {
    text-decoration: none;
    color: inherit;
}

.post-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
}

.post-content {
    padding: 1.5rem;
}

.post-date {
    color: #8b5cf6;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.post-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #e8eef7;
}

.post-excerpt {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Single post styles */
.post-header {
    text-align: center;
    padding: 8rem 5% 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.post-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.post-meta {
    color: #8b5cf6;
    font-size: 1rem;
    font-weight: 600;
}

.post-body {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 5%;
    position: relative;
    z-index: 1;
}

.post-body p {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.post-body h2, .post-body h3 {
    color: #a78bfa;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.post-body img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin: 2rem 0;
}

.post-body a {
    color: #60a5fa;
    text-decoration: none;
    border-bottom: 1px solid rgba(96, 165, 250, 0.3);
    transition: border-color 0.3s;
}

.post-body a:hover {
    border-bottom-color: #60a5fa;
}

/* Newsletter */
.newsletter {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.newsletter h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.newsletter p {
    color: #cbd5e1;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    background: rgba(10, 14, 39, 0.5);
    color: white;
    font-size: 1rem;
}

.newsletter-form input::placeholder {
    color: #64748b;
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
}

/* Contact Form 7 Styling */
.newsletter-cf7 {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-cf7 input[type="email"] {
    flex: 1;
    padding: 1rem;
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    background: rgba(10, 14, 39, 0.5);
    color: white;
    font-size: 1rem;
}

.newsletter-cf7 input[type="email"]::placeholder {
    color: #64748b;
}

.newsletter-cf7 input[type="submit"] {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
}

.newsletter-cf7 input[type="submit"]:hover {
    transform: translateY(-2px);
}

.wpcf7-response-output {
    border: none !important;
    color: #a78bfa !important;
    margin: 1rem 0 0 0 !important;
    padding: 1rem !important;
    background: rgba(139, 92, 246, 0.1) !important;
    border-radius: 10px !important;
}

.wpcf7-not-valid-tip {
    color: #f87171 !important;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
    border-color: #f87171 !important;
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: #a78bfa !important;
}

@media (max-width: 768px) {
    .newsletter-cf7 {
        flex-direction: column;
    }
}

/* Footer */
.site-footer {
    position: relative;
    text-align: center;
    padding: 3rem 5%;
    border-top: 1px solid rgba(139, 92, 246, 0.3);
    color: #94a3b8;
    z-index: 1;
}

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

    .hero .tagline {
        font-size: 1.2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .main-navigation ul {
        gap: 1rem;
    }

    .posts-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .post-header h1 {
        font-size: 2rem;
    }
}

/* Gallery Page Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
    border-color: rgba(139, 92, 246, 0.5);
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* Square aspect ratio */
    overflow: hidden;
}

.gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 14, 39, 0.95) 0%, rgba(10, 14, 39, 0) 50%);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info h3 {
    color: #a78bfa;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.gallery-info p {
    color: #cbd5e1;
    font-size: 0.9rem;
    margin: 0;
}

/* Gear Page Styles */
.gear-categories {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.gear-category {
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.gear-category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(139, 92, 246, 0.3);
}

.gear-icon {
    font-size: 2.5rem;
}

.gear-category-header h2 {
    color: #a78bfa;
    margin: 0;
    font-size: 1.8rem;
}

.gear-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gear-item {
    background: rgba(10, 14, 39, 0.3);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    transition: transform 0.3s, border-color 0.3s;
}

.gear-item:hover {
    transform: translateY(-3px);
    border-color: rgba(139, 92, 246, 0.5);
}

.gear-item h3 {
    color: #c7d2fe;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.gear-detail {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.gear-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.gear-spec {
    background: rgba(139, 92, 246, 0.2);
    color: #c7d2fe;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.gear-wishlist {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.wishlist-item {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 10px;
    padding: 1rem;
    color: #cbd5e1;
    text-align: center;
    font-size: 0.95rem;
}

/* Resources Page Styles */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.resource-category {
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.resource-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #a78bfa;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(139, 92, 246, 0.3);
}

.resource-icon {
    font-size: 1.8rem;
}

.resource-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.resource-item h3 {
    color: #c7d2fe;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.resource-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.resource-links li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
}

.resource-links li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #8b5cf6;
}

.resource-links a {
    color: #60a5fa;
    text-decoration: none;
    border-bottom: 1px solid rgba(96, 165, 250, 0.3);
    transition: border-color 0.3s, color 0.3s;
}

.resource-links a:hover {
    color: #93c5fd;
    border-bottom-color: #60a5fa;
}

.resource-description {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
}

/* Responsive adjustments for new templates */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .gear-items {
        grid-template-columns: 1fr;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .gear-wishlist {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   MOBILE HAMBURGER MENU
   =================================== */

/* Hamburger Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #e8eef7;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger animation when active */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Mobile Styles - HAMBURGER APPEARS HERE */
@media (max-width: 768px) {
    /* SHOW hamburger on mobile */
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    /* HIDE regular menu by default */
    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(20px);
        padding: 80px 2rem 2rem;
        transition: right 0.3s ease;
        overflow-y: auto;
        border-left: 1px solid rgba(139, 92, 246, 0.3);
        z-index: 1000;
    }
    
    /* SHOW menu when active */
    .main-navigation.active {
        right: 0;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    }
    
    /* Stack menu items vertically */
    .main-navigation ul {
        flex-direction: column !important;
        gap: 0 !important;
        align-items: flex-start !important;
    }
    
    .main-navigation li {
        width: 100%;
        border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    }
    
    .main-navigation a {
        display: block;
        padding: 1rem 0 !important;
        font-size: 1.1rem;
    }
    
    .main-navigation a:hover {
        color: #a78bfa;
        padding-left: 0.5rem !important;
    }
}

/* Quick fix: Hide hero section on all pages except homepage */

/* Hide hero on single pages and regular pages */
body.page .hero,
body.single .hero {
    display: none;
}

/* Keep hero visible on homepage only */
body.home .hero {
    display: flex;
}

/* Adjust spacing for pages without hero */
body.page .site-header + *,
body.single .site-header + * {
    padding-top: 120px; /* Account for fixed header */
}



