.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100vw;
    min-height: 100vh;
    background-image: url("../../images/umkm_hero.png");
    background-size: contain;
    background-position-x: 115%;
    background-repeat: no-repeat;
    padding: 5rem;
}

.hero .green {
    color: #005236;
}

.hero h1 {
    font-size: 2.5rem;
    padding: 0;
    margin: 0;
    color: #b9b9b9;
}

.hero h1 b {
    font-family: "Inknut Antiqua", serif;
    line-height: 2.5rem;
    margin: 0;
    padding: 0;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .hero {
        padding: 3rem;
        background-size: cover;
        background-position: center;
        align-items: center;
    }
    .hero h1 {
        font-size: 2rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 2rem;
        background-size: cover;
        background-position: center;
        align-items: center;
    }
    .hero h1 {
        font-size: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 1rem;
        min-height: 60vh;
        background-size: cover;
        background-position: center;
        align-items: center;
    }
    .hero h1 {
        font-size: 1.1rem;
        text-align: center;
    }
}

.transition {
    width: 100vw;
    height: fit-content;
    display: flex;
    justify-content: center;
    padding-top: 7rem;
    padding-bottom: 1.2rem;
}

.transition h3 {
    text-align: center;
    width: 40vw;
    font-size: 1.2rem;
    color: #222;
}

/* Responsive styles for .transition */
@media (max-width: 1024px) {
    .transition {
        padding-top: 4rem;
        padding-bottom: 1rem;
    }
    .transition h3 {
        width: 60vw;
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .transition {
        padding-top: 2.5rem;
        padding-bottom: 0.8rem;
    }
    .transition h3 {
        width: 80vw;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .transition {
        padding-top: 1.5rem;
        padding-bottom: 0.5rem;
    }
    .transition h3 {
        width: 95vw;
        font-size: 0.95rem;
    }
}

.umkm {
    display: flex;
    flex-direction: column;
    align-items: center;

    .container {
        width: 100vw;
        height: fit-content;
        padding: 2rem 5rem;
        background: linear-gradient(
            180deg,
            rgba(254, 152, 42, 1) 0%,
            rgba(188, 79, 7, 1) 100%
        );
        display: flex;
        flex-direction: column;
        gap: 1rem;

        .product-card {
            background-color: white;
            overflow: hidden;
            display: flex;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
            width: 100%;
            border-radius: 5px;
        }

        .product-image {
            height: auto;
            height: clamp(120px, 30vh, 200px);
            aspect-ratio: 1 / 1;
            object-fit: cover;
            flex-shrink: 0;
            background-color: #b9b9b9;
        }

        .product-content {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 1rem;
            height: clamp(120px, 30vh, 200px);
        }

        .product-title {
            font-size: 1.2rem;
            font-weight: bold;
            color: #bc4f07;
            padding: 0;
            margin: 0;
        }

        .product-owner {
            font-size: 0.9rem;
            color: #b9b9b9;
            line-height: 1.4;
            font-weight: 600;
            padding: 0;
            margin: 0;
        }

        .product-description {
            font-size: 0.9rem;
            color: #222;
            line-height: 1.4;
            margin-bottom: 15px;
            padding: 0;
            margin: 0;
        }

        .btn-more {
            background-color: #005236;
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 5px;
            font-size: 0.9rem;
            cursor: pointer;
            align-self: flex-start;
            transition: background-color 0.3s;
            margin: 0;
        }

        .btn-more:hover {
            background-color: #6bc4a6;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            padding: 2rem 3rem;

            .product-card {
                flex-direction: column;
            }

            .product-image {
                width: 100%;
                height: 200px;
            }
        }

        @media (max-width: 480px) {
            .product-content {
                padding: 15px;
            }

            .product-title {
                font-size: 1.1rem;
            }

            .product-description {
                font-size: 0.85rem;
            }

            padding: 2rem 1.5rem;
        }
    }
}

.blank {
    width: 100vw;
    height: 40vh;
    background-color: #fff;
}
