/* =============================
   Hero Section
   ============================= */
.hero-section {
    width: 100%;
    height: 70vh;
    /* 60% of viewport height */
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.5s ease;
}

/* Optional hover zoom effect */
.hero-image img:hover {
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-section {
        height: 50vh;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 40vh;
    }
}


/* =============================
   Product Showcase & Development
   ============================= */
.product-showcase-alt {
    background-color: var(--color-accent);
    padding-top: 2px;
    padding-bottom: 20px;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.section-header p {
    color: var(--color-secondary);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== Showcase Items ===== */
.showcase-item {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 100px;
    flex-wrap: wrap;
}

.showcase-item.reverse {
    flex-direction: row-reverse;
}

.showcase-image {
    flex: 1;
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform var(--transition-fast);
    display: flex;
    justify-content: center;
    align-items: center;
}

.showcase-image img {
    max-width: 100%;
    max-height: 280px;
    transition: transform var(--transition-fast);
}

.showcase-item:hover .showcase-image img {
    transform: scale(1.03);
}

/* ===== Showcase Content ===== */
.showcase-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.showcase-content .category {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: var(--color-secondary);
}

.showcase-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    line-height: 1.3;
}

.showcase-content p {
    max-width: 600px;
    color: var(--color-secondary);
    line-height: 1.8;
}

/* Optional subtle underline divider between steps */
.showcase-content p+hr {
    margin: 10px 0;
    border: 0;
    border-top: 1px solid var(--color-slot-bg);
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .showcase-item {
        gap: 40px;
    }
}

@media (max-width: 992px) {

    .showcase-item,
    .showcase-item.reverse {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 70px;
    }

    .showcase-content h3 {
        font-size: 24px;
    }

    .showcase-content p {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 28px;
    }

    .showcase-content h3 {
        font-size: 20px;
    }

    .showcase-content .category {
        font-size: 12px;
    }

    .showcase-content p {
        line-height: 1.6;
    }
}


/* Animate items */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

[data-animate].in-view {
    opacity: 1;
    transform: translateY(0);
}

[data-animate="fade-left"] {
    transform: translateX(-50px);
}

[data-animate="fade-left"].in-view {
    transform: translateX(0);
}

[data-animate="fade-right"] {
    transform: translateX(50px);
}

[data-animate="fade-right"].in-view {
    transform: translateX(0);
}

[data-animate="fade-up"] {
    transform: translateY(30px);
}

[data-animate="fade-up"].in-view {
    transform: translateY(0);
}
