/* Marble Showcase Section - Below Hero Banner */

.marble-showcase-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    position: relative;
    overflow: hidden;
    margin-top: -350px;
    z-index: 1;
}

.marble-showcase-image-wrapper {
    position: relative;
    width: 100%;
    min-height: 70vh;
    overflow: hidden;
}

.marble-showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 70vh;
    display: block;
}

.marble-showcase-placeholder {
    background: linear-gradient(135deg, #00a551 0%, #8b7355 50%, #00a551 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marble-showcase-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.03) 10px,
            rgba(255, 255, 255, 0.03) 20px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.03) 10px,
            rgba(255, 255, 255, 0.03) 20px
        );
    opacity: 0.5;
}

.marble-showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 165, 81, 0.2) 0%, rgba(0, 165, 81, 0.5) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 4rem 2rem;
}

.marble-showcase-content {
    text-align: center;
    color: white;
    max-width: 800px;
    z-index: 2;
}

.marble-showcase-title {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #ffffff;
    
    background: linear-gradient(135deg, #ffffff 0%, #ffa8c5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
   
}

.marble-showcase-text {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 400;
    letter-spacing: 2px;
    color: #f0f0f0;
  
    opacity: 0.98;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 968px) {
    .marble-showcase-section {
        margin-top: -30px;
    }
    
    .marble-showcase-image-wrapper {
        min-height: 60vh;
    }
    
    .marble-showcase-image {
        min-height: 60vh;
    }
    
    .marble-showcase-overlay {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .marble-showcase-section {
        margin-top: -20px;
    }
    
    .marble-showcase-image-wrapper {
        min-height: 50vh;
    }
    
    .marble-showcase-image {
        min-height: 50vh;
    }
    
    .marble-showcase-overlay {
        padding: 2rem 1rem;
    }
    
    .marble-showcase-title {
        font-size: 1.5rem;
    }
    
    .marble-showcase-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .marble-showcase-section {
        margin-top: -15px;
    }
    
    .marble-showcase-image-wrapper {
        min-height: 40vh;
    }
    
    .marble-showcase-image {
        min-height: 40vh;
    }
    
    .marble-showcase-overlay {
        padding: 1.5rem 0.75rem;
    }
    
    .marble-showcase-title {
        font-size: clamp(1.2rem, 5vw, 1.5rem);
        letter-spacing: 2px;
    }
    
    .marble-showcase-text {
        font-size: 0.85rem;
    }
}

