/* =============================================
   Kitchen Section CSS
   ============================================= */

.kitchen-section {
    position: relative;
    width: 100%;
    margin-top: -2.5rem;
    height: 11.25rem;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: transparent;
}

/* Straight Black Background */
.kitchen-black-bg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
    height: 6.25rem;
    background-color: #1A1A1A;
    z-index: 0;
}

/* Rotated Green Bar */
.kitchen-green-bar {
    position: absolute;
    top: 50%;
    left: -5%;
    width: 110%;
    height: 6.5rem;
    background-color: var(--color-primary);
    transform: translateY(-50%) rotate(-2.11deg);
    transform-origin: center center;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.1);
}

.kitchen-green-bar .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kitchen-list {
    list-style: none;
    display: flex;
    gap: 4.6875rem;
    align-items: center;
    padding: 0 1.25rem;
    margin: 0;
}

.kitchen-item {
    font-family: var(--font-family);
    font-size: 3rem;
    font-weight: var(--font-weight-bold);
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    transition: color 0.3s ease;
    text-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.05);
}

.kitchen-item:hover {
    color: #ffffff;
}

.kitchen-item.active {
    color: #ffffff;
    opacity: 1;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Underline for active item */
.kitchen-item.active::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 0;
    width: 68%;
    height: 0.1875rem;
    background-color: #ffffff;
    border-radius: 0.125rem;
}

.kitchen-active-arrow {
    width: 5rem;
    height: 5rem;
}

/* =============================================
   Mobile Responsive
   ============================================= */
@media (max-width: 900px) {
    .kitchen-section {
        height: 6.25rem;
        margin-top: -1.25rem;
        margin-bottom: 5rem;
    }
    
    .kitchen-green-bar {
        height: 5rem;
        width: 110%;
        left: -5%;
    }

    .kitchen-black-bg {
        height: 5rem;
    }

    .kitchen-list {
        gap: 1.25rem;
        flex-wrap: nowrap;
        justify-content: center;
        width: 100%;
        padding-left: 0;
        margin-left: 15rem;
        overflow-x: hidden;
    }
    
    .kitchen-item {
        font-size: 1.436rem;
    }

    .kitchen-active-arrow {
        width: 3rem;
        height: 3rem;
    }
}
