.home-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

/* Navigation Updates */
.header-nav {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-family: 'Bebas Neue', cursive;
    font-size: 1rem;
    letter-spacing: 1.5px;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--accent);
}

/* Cinematic Hero */
.cinematic-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 6rem 0 4rem;
    gap: 4rem;
}

.hero-content.centered h1 {
    font-size: 6rem;
    margin-bottom: 1rem;
}

.hero-content.centered p {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto;
}

.hero-slideshow.full-width {
    width: 100%;
    height: 600px; /* Taller for cinematic feel */
    border-radius: 12px;
    position: relative;
}

.hero-overlay-actions {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
}

.large-cta {
    font-size: 1.5rem !important;
    padding: 1.2rem 4rem !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8), 0 0 15px rgba(230, 57, 70, 0.3);
    border: 1px solid rgba(255,255,255,0.3) !important;
    transition: all 0.3s ease !important;
}

.large-cta:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.9), 0 0 25px rgba(230, 57, 70, 0.5);
    background: #ff4d5a !important;
}

.slideshow-controls {
    bottom: 1.5rem;
    right: 50%;
    transform: translateX(50%);
}

.slide-container {
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.slide.active {
    opacity: 1;
    z-index: 10;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-caption {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: var(--accent);
    color: white;
    padding: 0.5rem 1.2rem;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.slideshow-controls {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    gap: 0.8rem;
    z-index: 20;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: var(--accent);
}

/* How It Works Preview */
.how-it-works-preview {
    padding: 8rem 0;
    text-align: center;
    border-top: 1px solid var(--border);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2rem 1.5rem;
    border-radius: 8px;
    transition: border-color 0.3s, transform 0.3s;
    text-align: left;
}

.step-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.step-num {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    color: rgba(230, 57, 70, 0.1);
    margin-bottom: 0.8rem;
    line-height: 1;
}

.step-card h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
}

.section-actions {
    margin-top: 4rem;
}

/* Craftsmanship Section */
.craftsmanship {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
    padding: 8rem 0;
    border-top: 1px solid var(--border);
}

.craft-content h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

.craft-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 600px;
}

.product-toggles {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-btn {
    background: transparent;
    border: 1px solid var(--border);
    padding: 1.5rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-radius: 4px;
}

.product-btn strong {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: var(--text-main);
}

.product-btn span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.product-btn:hover {
    border-color: #444;
    background: rgba(255,255,255,0.02);
}

.product-btn.active {
    border-color: var(--accent);
    background: rgba(230, 57, 70, 0.05);
}

.craft-image {
    background: #000;
    padding: 3rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.mockup-display img {
    width: 100%;
    display: block;
    transition: opacity 0.3s ease;
}

/* Recent Harvests Gallery */
.recent-harvests {
    padding: 8rem 0;
    border-top: 1px solid var(--border);
}

.harvest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.harvest-item {
    position: relative;
    background: #000;
    border: 1px solid var(--border);
    aspect-ratio: 1/1;
    overflow: hidden;
    cursor: pointer;
}

.harvest-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease, opacity 0.3s ease;
    opacity: 0.8;
}

.harvest-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.harvest-item:hover img {
    transform: scale(1.05);
    opacity: 1;
}

.harvest-item:hover .harvest-overlay {
    transform: translateY(0);
    opacity: 1;
}

.harvest-overlay .series {
    font-family: 'Bebas Neue', cursive;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--accent);
}

.harvest-overlay .species {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    letter-spacing: 1px;
    color: var(--text-main);
}

@media (max-width: 900px) {
    .harvest-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .harvest-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer Improvements */
.home-footer {
    padding: 6rem 0;
    border-top: 1px solid var(--border);
    text-align: center;
    background: #050505;
}

.footer-logo {
    height: 40px;
    margin-bottom: 2rem;
    opacity: 0.5;
}

.glitch-text {
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 2px;
}

@media (max-width: 1100px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .home-container {
        overflow-x: hidden;
    }
    
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cinematic-hero {
        padding: 3rem 0 2rem;
        gap: 2rem;
    }
    
    .hero-content.centered h1 {
        font-size: 3.5rem;
    }

    .hero-content.centered p {
        font-size: 1.1rem;
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-slideshow.full-width {
        height: 300px;
    }

    .hero-overlay-actions {
        bottom: 2rem;
    }

    .large-cta {
        font-size: 1.1rem !important;
        padding: 0.8rem 2rem !important;
        white-space: nowrap !important;
        line-height: 1.2 !important;
    }

    .slideshow-controls {
        right: auto !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        bottom: 1.5rem !important;
    }

    .hero-content p {
        margin: 0 auto 3rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }

    .craftsmanship {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 4rem 0;
    }

    .craft-content h2 {
        font-size: 2.5rem;
        text-align: center;
    }

    .craft-content p {
        text-align: center;
        margin: 0 auto 2rem;
    }

    .craft-image {
        padding: 1rem;
    }

    .header-nav {
        display: flex !important;
        justify-content: center;
        align-items: center;
        gap: 0.8rem 1.2rem;
        flex-wrap: wrap;
        width: 100%;
    }

    .nav-link {
        font-size: 0.85rem;
        padding: 0.4rem 0.2rem;
    }

    .btn-text-link {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 600px) {
    .cinematic-hero {
        padding: 2rem 0;
        gap: 1.5rem;
    }
    .hero-content.centered h1 {
        font-size: 2.2rem;
        margin-bottom: 0.5rem;
    }
    .hero-content.centered p {
        font-size: 0.95rem;
        line-height: 1.45;
    }
    .hero-slideshow.full-width {
        height: 200px;
    }
    .hero-overlay-actions {
        bottom: 1.5rem;
    }
    .large-cta {
        font-size: 0.95rem !important;
        padding: 0.6rem 1.5rem !important;
        white-space: nowrap !important;
        line-height: 1.2 !important;
    }
    .slideshow-controls {
        right: auto !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        bottom: 1rem !important;
        gap: 0.6rem;
    }
    .dot {
        width: 8px;
        height: 8px;
    }
    .harvest-grid {
        grid-template-columns: 1fr;
    }
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        margin-top: 2.5rem;
    }
    .step-card {
        padding: 1.5rem 1.2rem;
    }
    .how-it-works-preview {
        padding: 4rem 0;
    }
    .recent-harvests {
        padding: 4rem 0;
    }
}
