@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

.kitchen-3d-scroll-section {
    position: relative;
    width: 100vw;
    left: 50% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    transform: translateX(-50%) !important;
    z-index: 10;
    background-color: #0f172a;
    font-family: 'Outfit', sans-serif;
}

.kitchen-3d-scroll-section .animation-container {
    position: relative;
    width: 100%;
    height: 400vh; /* Determines scroll duration */
}

.kitchen-3d-scroll-section .sticky-wrapper {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.kitchen-3d-scroll-section canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Overlay Text Cards */
.kitchen-3d-scroll-section .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 10%;
}

.kitchen-3d-scroll-section .text-card {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(174, 141, 76, 0.2);
    padding: 2.5rem;
    border-radius: 16px;
    max-width: 450px;
    opacity: 0;
    transform: translateY(30px);
    pointer-events: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transition: border-color 0.3s;
}

.kitchen-3d-scroll-section .text-card:hover {
    border-color: #ae8d4c;
}

.kitchen-3d-scroll-section .text-card .step-num {
    font-size: 0.875rem;
    font-weight: 600;
    color: #ae8d4c;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.kitchen-3d-scroll-section .text-card h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.kitchen-3d-scroll-section .text-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #94a3b8;
}

/* Adjustments for WordPress Admin bar */
.admin-bar .kitchen-3d-scroll-section .sticky-wrapper {
    height: calc(100vh - 32px);
    top: 32px;
}
@media (max-width: 782px) {
    .admin-bar .kitchen-3d-scroll-section .sticky-wrapper {
        height: calc(100vh - 46px);
        top: 46px;
    }
}

/* Responsiveness for mobile screen */
@media (max-width: 768px) {
    .kitchen-3d-scroll-section .slide-overlay {
        padding: 5%;
        justify-content: center;
        align-items: flex-end;
        padding-bottom: 80px;
    }
    
    .kitchen-3d-scroll-section .text-card {
        padding: 1.5rem;
        max-width: 90%;
    }

    .kitchen-3d-scroll-section .text-card h2 {
        font-size: 1.5rem;
    }
}
