/* Product Showcase CSS */
body {
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
}

.showcase-container {
    position: relative;
    height: 500vh;
    width: 100%;
}

.sticky-container {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    
    overflow: hidden;    
}

.product-image {
    background-size: cover;
    position: absolute;
    width: 100%;    
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 1s ease;
}

.product-image.active {
    opacity: 1;
    transform: translateY(0);
}

.text-content {
    position: absolute;
    width: 100%;    
    text-align: center;
    padding: 0 15px;
    bottom: 20%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 1s ease;    
}

.text-content.active {
    opacity: 1;
    transform: translateY(0);
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #3b82f6, #10b981);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: 5px;
}

h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-indicator {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: white;
    transform: scale(1.3);
}

/* Smartphones til landscape */
@media (max-width: 768px) {
.product-image {
    background-size: cover;       
    height: auto;    
    position: absolute;
    width: 100vh;    
    opacity: 0;
}

.sticky-container {
    position: sticky;
    bottom: 0;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}


}